added some stuff

This commit is contained in:
Yaman 2015-01-10 12:53:37 -05:00
parent 818f6b302a
commit 0aa237b544

View File

@ -1,14 +1,12 @@
minetest.register_node("womd:radioactive_air", { minetest.register_node("womd:radioactive_air", {
inventory_image = "unknown_node.png", tiles = {"radioactive_air.png"},
drawtype = "airlike", drawtype = "glasslike",
paramtype = "none", paramtype = "none",
sunlight_propagates = false,
walkable = false, walkable = false,
pointable = false, pointable = false,
diggable = false, diggable = false,
air_equivalent = true, air_equivalent = true,
drop = "", drop = "",
damage_per_second = 1, damage_per_second = 1,
liquid_viscosity = 4,
groups = {not_in_creative_inventory=1}, groups = {not_in_creative_inventory=1},
}) })