-
Notifications
You must be signed in to change notification settings - Fork 18
/
tanks.js
60 lines (59 loc) · 1.31 KB
/
tanks.js
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
module.exports = Array.from({
0: "Tank",
1: "Twin",
2: "Triplet",
3: "Triple Shot",
4: "Quad Tank",
5: "Octo Tank",
6: "Sniper",
7: "Machine Gun",
8: "Flank Guard",
9: "Tri-Angle",
10: "Destroyer",
11: "Overseer",
12: "Overlord",
13: "Twin Flank",
14: "Penta Shot",
15: "Assassin",
16: "Arena Closer",
17: "Necromancer",
18: "Triple Twin",
19: "Hunter",
20: "Gunner",
21: "Stalker",
22: "Ranger",
23: "Booster",
24: "Fighter",
25: "Hybrid",
26: "Manager",
27: "Mothership",
28: "Predator",
29: "Sprayer",
30: "", // Deleted : Probably Predator X
31: "Trapper",
32: "Gunner Trapper",
33: "Overtrapper",
34: "Mega Trapper",
35: "Tri-Trapper",
36: "Smasher",
37: "", // Deleted : Probably Mega Smasher
38: "Landmine",
39: "Auto Gunner",
40: "Auto 5",
41: "Auto 3",
42: "Spread Shot",
43: "Streamliner",
44: "Auto Trapper",
45: "Dominator", // Destroyer
46: "Dominator", // Gunner
47: "Dominator", // Trapper
48: "Battleship",
49: "Annihilator",
50: "Auto Smasher",
51: "Spike",
52: "Factory",
53: "", // Nameless and the "initial tank" value. Looks like the Ball tank
54: "Skimmer",
55: "Rocketeer",
length: 56
});