diff --git a/nodes.lua b/nodes.lua index fec94cd..cc467a7 100644 --- a/nodes.lua +++ b/nodes.lua @@ -178,3 +178,20 @@ minetest.register_node("illuna:instruction_block_4", { } } }) +minetest.register_node("illuna:lw_instructions", { + description = "Instructions for the biopodworld", + drawtype = "signlike", + tiles = {"lw_instructions.png"}, + visual_scale = 3.0, + inventory_image = "lw_instructions.png", + wield_image = "lw_instructions.png", + paramtype = "light", + paramtype2 = "wallmounted", + light_source = 12, + sunlight_propagates = true, + walkable = false, + selection_box = { + type = "wallmounted", + }, + groups = { unbreakable = 1 }, +}) diff --git a/textures/lw_instructions.png b/textures/lw_instructions.png new file mode 100644 index 0000000..46988c1 Binary files /dev/null and b/textures/lw_instructions.png differ