-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunits_data.json
More file actions
126 lines (126 loc) · 2.32 KB
/
units_data.json
File metadata and controls
126 lines (126 loc) · 2.32 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"footman": {
"hp": 80,
"max_hp": 80,
"damage": 10,
"speed": 1,
"regen": 4,
"type": "ground",
"attack_dist": 1,
"attack_type": "ground",
"moves_start": 2,
"cost": 4,
"race": "human",
"damage_type": "normal",
"armor": "medium"
},
"rifleman": {
"hp": 60,
"max_hp": 60,
"damage": 17,
"speed": 1,
"regen": 2,
"type": "ground",
"attack_dist": 4,
"attack_type": "airground",
"moves_start": 2,
"cost": 9,
"race": "human",
"damage_type": "pierce",
"armor": "light"
},
"priest": {
"hp": 30,
"max_hp": 30,
"damage": 4,
"speed": 1,
"regen": 2,
"type": "ground",
"attack_dist": 4,
"attack_type": "airground",
"moves_start": 2,
"cost": 10,
"race": "human",
"heal": 10,
"damage_type": "magic",
"armor": "light"
},
"grunt": {
"hp": 100,
"max_hp": 100,
"damage": 12,
"speed": 1,
"regen": 6,
"type": "ground",
"attack_dist": 1,
"attack_type": "ground",
"moves_start": 2,
"cost": 8,
"race": "horde",
"damage_type": "normal",
"armor": "heavy"
},
"headhunter": {
"hp": 75,
"max_hp": 75,
"damage": 16,
"speed": 1,
"regen": 4,
"type": "ground",
"attack_dist": 3,
"attack_type": "airground",
"moves_start": 2,
"cost": 7,
"race": "horde",
"damage_type": "pierce",
"armor": "light"
},
"bomber": {
"hp": 45,
"max_hp": 45,
"damage": 3,
"speed": 1,
"regen": 2,
"type": "ground",
"attack_dist": 1,
"attack_type": "ground",
"moves_start": 2,
"cost": 10,
"bomb_damage": 40,
"bomb_radius": 1,
"bomb_damage_type": "pierce",
"race": "horde",
"damage_type": "normal",
"armor": "light"
},
"gnoll": {
"hp": 30,
"max_hp": 30,
"damage": 8,
"speed": 1,
"regen": 3,
"type": "ground",
"attack_dist": 2,
"attack_type": "ground",
"moves_start": 1,
"cost": 25,
"race": "neutral",
"damage_type": "magic",
"armor": "light"
},
"golem": {
"hp": 150,
"max_hp": 150,
"damage": 30,
"speed": 1,
"regen": 4,
"type": "ground",
"attack_dist": 1,
"moves_start": 1,
"attack_type": "ground",
"cost": 80,
"race": "neutral",
"damage_type": "normal",
"armor": "heavy"
}
}