mesecraft/mods/ENVIRONMENT/vacuum/vacuum.lua

18 lines
398 B
Lua
Raw Normal View History

2020-05-15 10:55:36 -07:00
minetest.register_node("vacuum:vacuum", {
description = "Vacuum",
walkable = false,
pointable = false,
diggable = false,
buildable_to = true,
drawtype = "glasslike",
drowning = 1,
tiles = {"transparent_pixel.png"},
2022-08-08 18:24:40 -07:00
use_texture_alpha = "blend",
2020-05-15 10:55:36 -07:00
groups = {not_in_creative_inventory=1, not_blocking_trains=1, cools_lava=1},
paramtype = "light",
drop = {},
sunlight_propagates = true
})