diff --git a/nodes.lua b/nodes.lua index afcc66853973f6850b746d99460807dc267c353c..fe2f1a46ae4f6ced96ac60caa76da73379181b37 100644 --- a/nodes.lua +++ b/nodes.lua @@ -282,6 +282,32 @@ minetest.register_node("illuna:lw_instructions", { groups = { unbreakable = 1 }, }) +minetest.register_node("illuna:techeth_logo", { + description = "Blabla Rabarber", + drawtype = "signlike", + tiles = { + { + name = "techeth_alpha.png", + animation = { + type = "vertical_frames", + aspect_w = 1000, + aspect_h = 1000, + length = 1 + }, + }, + }, + visual_scale = 3.0, + inventory_image = "techeth_alpha.png", + wield_image = "techeth_alpha.png", + paramtype2 = "wallmounted", + light_source = 12, + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "wallmounted", + }, + groups = { unbreakable = 1 }, +}) if minetest.get_modpath("ethereal") then -- disallow placing of lava below -2 except player has the trusted_player priv minetest.override_item("default:lava_source", { diff --git a/textures/techeth_alpha.png b/textures/techeth_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..087465250b0b9498dc8ad638e69489e5ecfa7c52 Binary files /dev/null and b/textures/techeth_alpha.png differ