From c49a4564605fb2d036852718ccfdb1b770fe9c92 Mon Sep 17 00:00:00 2001 From: acmgit Date: Thu, 28 Jul 2016 21:14:55 +0200 Subject: Billboards and Recipes added. --- init.lua | 52 ++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 46 insertions(+), 6 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 6988781..4d6ba74 100644 --- a/init.lua +++ b/init.lua @@ -1,10 +1,10 @@ -minetest.register_node("bilboard:4x6", { - description = "4x6 Bilboard", +minetest.register_node("billboard:bb_white", { + description = "Billboard white", drawtype = "signlike", - visual_scale = 5, - tiles = {"bb.png"}, - inventory_image = "bb.png", - wield_image = "bb.png", + visual_scale = 5, + tiles = {"bb_white.png"}, + inventory_image = "bb_white.png", + wield_image = "bb_white.png", wield_scale = {x=1, y=1, z=1}, paramtype = "light", paramtype2 = "wallmounted", @@ -19,3 +19,43 @@ minetest.register_node("bilboard:4x6", { legacy_wallmounted = true, }) + +minetest.register_craft({ + output = "billboard:bb_white", + recipe = { + {"group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:white"}, + {"group:stick", "group:stick"} + } +}) + +minetest.register_node("billboard:bb_yellow", { + description = "Billboard yellow", + drawtype = "signlike", + visual_scale = 5, + tiles = {"bb_yellow.png"}, + inventory_image = "bb_yellow.png", + wield_image = "bb_yellow.png", + wield_scale = {x=1, y=1, z=1}, + paramtype = "light", + paramtype2 = "wallmounted", + sunlight_propagates = true, + walkable = false, + light_source = 1, -- reflecting a bit of light might be expected + selection_box = { + type = "wallmounted", + wall_side = {-0.45, -1.5, -2.5, -.4, 1.5, 2.5}, -- NodeBox + }, + groups = {choppy=2,dig_immediate=3,attached_node=1}, + legacy_wallmounted = true, + +}) + +minetest.register_craft({ + output = "billboard:bb_yellow", + recipe = { + {"group:stick", "group:stick"}, + {"default:sign_wall_wood", "wool:yellow"}, + {"group:stick", "group:stick"} + } +}) -- cgit v1.2.3