-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.lua
82 lines (70 loc) · 1 KB
/
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
Config = {}
Config.DrawDistance = 50.0
Config.ZoneSize = {x = 1.0, y = 1.0, z = 0.5}
Config.MarkerColor = {r = 236, g = 142, b = 34}
Config.MarkerType = 21
Config.Locale = 'vn'
Config.Zones = {
PetShop = {
Pos = {x = 562.28, y = 2741.9, z = 42.86 },
Sprite = 463,
Display = 4,
}
}
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
}
}