From a0f158e1758595748d2890c4c05b7ce3716f1cd8 Mon Sep 17 00:00:00 2001 From: acmgit Date: Sat, 30 Jul 2016 02:28:01 +0200 Subject: Billboard green_blue added. --- init.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 2fe08c7..7403b2e 100644 --- a/init.lua +++ b/init.lua @@ -88,3 +88,33 @@ minetest.register_craft({ {"group:stick", "group:stick", "group:stick"} } }) + +minetest.register_node("billboard:bb_green_blue", { + description = "Billboard green_blue", + drawtype = "signlike", + visual_scale = 3.0, + tiles = { + "bb_green_blue.png" + }, + inventory_image = "bb_green_blue.png", + wield_image = "bb_green_blue.png", + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = false, + light_source = 1, -- reflecting a bit of light might be expected + selection_box = { + type = "wallmounted", + }, + groups = {choppy=2,dig_immediate=3,attached_node=1, picture=1}, + legacy_wallmounted = true, + +}) +minetest.register_craft({ + output = "billboard:bb_green_blue", + recipe = { + {"group:stick", "group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:green", "wool:blue"}, + {"group:stick", "group:stick", "group:stick"} + } +}) -- cgit v1.2.3