aboutsummaryrefslogtreecommitdiff
path: root/nodes.lua
blob: 7bd0a73559824a0fd81e9dbf7337277718d44347 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
bb_boardlist = 
        {
--[[
    
            Description of an Entry:
   
            {
                title = Name for the Billboard, default = bb_item1_item2_item3
                
                Recipe to craft:
                item1 = First Item for the recipe, default = sign_wall_wood
                item2 = ..                                  , default = white
                item3 = ..                                  , default = white
            
                Size of the Billboard in Blocks
                scale = number                         , default = 0
            
                filename = Filename for the Image, default = bb_item1_item2_item3
            
                Typ of the taken Image (must be in textures)
                imgtyp = "Typ"                          , default = "png"
            }

--]]
            
            {  title = "Aikido Billboard", 
                item1 = "sign_wall_wood", 
                item2 = "white", 
                item3 = "white", 
                scale = 3.0, 
                filename = "aikido",
                imgtyp = "jpg" 
            },
                
            {  title = "Detergen Billboard", 
                item1 = "sign_wall_wood", 
                item2 = "yellow", 
                item3 = "yellow", 
                scale = 3.0, 
                filename = "detergen",
                imgtyp = "jpg" 
            },
                
            {  title = "Mesedrink Billboard", 
                item1 = "sign_wall_wood", 
                item2 = "black", 
                item3 = "yellow", 
                scale = 3.5, 
                filename = "mesedrink",
                imgtyp = "jpg" 
            },
                
            {  title = "Meseforte Billboard", 
                item1 = "sign_wall_wood", 
                item2 = "green", 
                item3 = "blue", 
                scale = 3.0, 
                filename = "meseforte",
                imgtyp = "png" 
            },
                
            {  title = "Mesewave Billboard", 
                item1 = "sign_wall_wood", 
                item2 = "blue", 
                item3 = "yellow", 
                scale = 2.0, 
                filename = "mesewave",
                imgtyp = "jpg" 
            },
                
            {  title = "Newspaper Billboard", 
                item1 = "paper", 
                item2 = "black", 
                item3 = "orange", 
                scale = 2.5, 
                filename = "newspaper",
                imgtyp = "jpg" 
            },
                
            {  title = "Army Billboard", 
                item1 = "paper", 
                item2 = "green", 
                item3 = "green", 
                scale = 2.0, 
                filename = "army",
                imgtyp = "png" 
            }
                
    }