-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfig.lua
83 lines (70 loc) · 980 Bytes
/
config.lua
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
Config = {}
Config.Locale = 'en'
Config.PetShop = {
{
pet = 'chien',
label = _U('dog'),
price = 50000
},
{
pet = 'chat',
label = _U('cat'),
price = 15000
},
{
pet = 'lapin',
label = _U('bunny'),
price = 25000
},
{
pet = 'husky',
label = _U('husky'),
price = 35000
},
{
pet = 'cochon',
label = _U('pig'),
price = 10000
},
{
pet = 'caniche',
label = _U('poodle'),
price = 50000
},
{
pet = 'carlin',
label = _U('pug'),
price = 6000
},
{
pet = 'retriever',
label = _U('retriever'),
price = 10000
},
{
pet = 'berger',
label = _U('asatian'),
price = 55000
},
{
pet = 'westie',
label = _U('westie'),
price = 50000
},
{
pet = 'chop',
label = _U('chop'),
price = 12000
}
}
Config.Zones = {
PetShop = {
Pos = {x = 562.19, y = 2741.30, z = 41.86 },
Sprite = 463,
Display = 4,
Scale = 1.0,
Size = {x = 1.5, y = 1.5, z = 1.0},
Color = {r = 204, g = 204, b = 0},
Type = 1
}
}