diff options
author | acmgit <undertakers_help@yahoo.com> | 2016-07-30 02:28:01 +0200 |
---|---|---|
committer | acmgit <undertakers_help@yahoo.com> | 2016-07-30 02:28:01 +0200 |
commit | a0f158e1758595748d2890c4c05b7ce3716f1cd8 (patch) | |
tree | a48ca9f216da43cfc8c76f9c521d61b211bd4436 | |
parent | 2f238e2387fa300badbefc39d07453f7ec3d2bf2 (diff) |
Billboard green_blue added.
-rw-r--r-- | init.lua | 30 | ||||
-rw-r--r-- | textures/bb_green_blue.png | bin | 0 -> 136297 bytes |
2 files changed, 30 insertions, 0 deletions
@@ -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"} + } +}) diff --git a/textures/bb_green_blue.png b/textures/bb_green_blue.png Binary files differnew file mode 100644 index 0000000..54cb915 --- /dev/null +++ b/textures/bb_green_blue.png |