-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPrices.lua
69 lines (68 loc) · 967 Bytes
/
Prices.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
-- You can change that too... But I do not recommend
prices = {
Pistol = {
[0] = "Slow, but it's got serious stopping power.",
300,
1200,
6400,
16000,
64000
},
SMG = {
[0] = "High rate of fire, not much kick",
1200,
6400,
16000,
64000,
110000
},
Shotgun = {
[0] = "Good for close combat",
1200,
6400,
16000,
64000,
110000
},
Rifle = {
[0] = "Kicks like a mule, but hits even harder.",
6400,
16000,
64000,
110000,
400000
},
Catz = {
[0] = "This baby's got everything you need.. if you can handle it.",
16000,
64000,
110000,
400000,
1000000
},
Misc = {
100,
200,
300,
400,
500
},
Explosive = {
100,
200,
300,
400,
500
},
Towers = {
100,
200,
300,
400,
500
},
Game = {
[0] = "Here you can start the game! Make sure everyone is ready.",
0,
},
}