aboutsummaryrefslogtreecommitdiff
path: root/init.lua
blob: 4d6ba7403955a48441060ef105b43eb16cc95763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
minetest.register_node("billboard:bb_white", {
		description = "Billboard white",
		drawtype = "signlike",
                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",
		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_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"}
                                }
})