From d6963fb1ee29de809f5b6281bf2d2506a5fb8ca4 Mon Sep 17 00:00:00 2001 From: crazyginger72 Date: Tue, 24 Jun 2014 20:31:12 -0400 Subject: first commit --- init.lua | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 init.lua (limited to 'init.lua') diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..6988781 --- /dev/null +++ b/init.lua @@ -0,0 +1,21 @@ +minetest.register_node("bilboard:4x6", { + description = "4x6 Bilboard", + drawtype = "signlike", + visual_scale = 5, + tiles = {"bb.png"}, + inventory_image = "bb.png", + wield_image = "bb.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, + +}) -- cgit v1.2.3