-
Notifications
You must be signed in to change notification settings - Fork 0
/
armor_types.json
73 lines (66 loc) · 1.17 KB
/
armor_types.json
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
{
"no_armor":
{
"hack": 0,
"pierce": 0,
"crush": 0,
"cost": "0"
},
"leather":
{
"hack": 1,
"pierce": 1,
"crush": 2,
"cost": "unit_cost.food * .05"
},
"quilted":
{
"hack": 2,
"pierce": 2,
"crush": 4,
"cost": "unit_cost.food * .1"
},
"quilted_thick":
{
"hack": 3,
"pierce": 3,
"crush": 8,
"cost": "unit_cost.food * .15"
},
"lamilar_leather":
{
"hack": 5,
"pierce": 5,
"crush": 10,
"cost": "unit_cost.food * .2"
},
"lamilar_iron":
{
"hack": 10,
"pierce": 10,
"crush": 12,
"cost": {
"iron": "unit_cost.food * 1"
}
"speed": "-.1"
},
"chainmail":
{
"hack": 15,
"pierce": 15,
"crush": 12,
"cost": {
"iron": "unit_cost.food * .5"
}
"speed": "-.05"
},
"platemail":
{
"hack": 25,
"pierce": 25,
"crush": 14,
"cost": {
"iron": "unit_cost.food * 1"
},
"speed": "-.15"
}