aboutsummaryrefslogtreecommitdiff
path: root/nodes.lua
blob: 3fdd4cfc1f1dc16f365f8f88f6d94734d003d9c2 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
--[[
    
        ***********************************************
        * Description of an Entry for the Billboards:  *
        ***********************************************
   
            {
                title = Name for the Billboard, 
                If no Name is given: default = bb_item1_item2_item3
                
                Recipe to craft:
                item1 = 1. Item for the recipe
                item2 = 2. Item for the recipe
                item3 = 3. Item for the recipe
                
                If an Item missed, default for:
                item1 = sign_wall_wood
                item2 = white
                item3 = white
            
                Size of the Billboard in Blocks
                scale = number
                If no scale is given, the default number is 1
            
                filename = Filename for the Image
                If no filename is given, the filename = bb_item1_item2_item3
            
                Typ of the taken Image (must be in textures):
                imgtyp = "Typ"
                If no Typ is given, the typ is png.
            
            }

--]]

boardlist = {            
	{
		name = "swmap",
		title = "Subway Map Billboard", 
		scale = 3.0,
		norecipe = true,
		filename = "index",
		imgtyp = "png" 
	},
	{
		name = "bigswmap",
		title = "BIG Subway Map Billboard", 
		scale = 5.0,
		norecipe = true,
		filename = "index",
		imgtyp = "png" 
	},
	{
		name = "rowhouses",
		title = "Row Houses Billboard", 
		scale = 3.0,
		norecipe = true,
		filename = "rowhouses",
		imgtyp = "png" 
	},
	{
		name = "treehouse",
		title = "Treehouse Hotel Billboard", 
		scale = 3.0,
		norecipe = true,
		filename = "thotel",
		imgtyp = "png" 
	},
	{
		name="multicraft",
		title="Multicraft Banner",
		scale= 3.0,
		norecipe=true,
		filename="multicraft-texture",
		imgtyp="png",
	},
	{
		name="atl",
		title="ARSE Train lines",
		scale= 3.0,
		norecipe=true,
		filename="arsetrainlines",
		imgtyp="png",
	},
	{
		name="phm",
		title="Personhood Metrorail",
		scale= 3.0,
		norecipe=true,
		filename="phmetrorail",
		imgtyp="png",
	},
	{
		name="nwq",
		title="Northwest Quarter Railways",
		scale= 3.0,
		norecipe=true,
		filename="NWQuarter",
		imgtyp="png",
	},
	{
		name="otl",
		title="Osthoff Train Lines",
		scale= 3.0,
		norecipe=true,
		filename="OsthoffLines",
		imgtyp="png",
	},
	{
		name="sfs",
		title="South Forest Subway",
		scale= 3.0,
		norecipe=true,
		filename="SFsubway",
		imgtyp="png",
	},
	{
		name="OriginLT",
		title="Origin Local Transit",
		scale= 3.0,
		norecipe=true,
		filename="OriginLT",
		imgtyp="png",
	},
} -- bb_boardlist