diff --git a/nodes.lua b/nodes.lua index 0e6d4e5..8332bae 100644 --- a/nodes.lua +++ b/nodes.lua @@ -6,6 +6,31 @@ minetest.register_node("europa_moon:red_rocks", { sounds = default.node_sound_gravel_defaults() }) +minetest.register_node("europa_moon:ocean_lava", { + description = "Ocean Lava", + tiles = { + { + name = "default_lava_source_animated.png", + animation = { + type = "vertical_frames", + aspect_w = 16, + aspect_h = 16, + length = 3.0, + }, + }, + }, + --paramtype = "light", + light_source = default.LIGHT_MAX - 1, + walkable = false, + --pointable = true, + --diggable = true, + --buildable_to = true, + --is_ground_content = false, + --drop = "", + groups = {cracky=3}, + damage_per_second = 4 * 2, +}) + --[[ minetest.register_node("default:gravel", { description = "Gravel",