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
|
--[[
***********************************************
* 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 =
{
{
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"
}
} -- bb_boardlist
|