-
Notifications
You must be signed in to change notification settings - Fork 0
/
armor.json
62 lines (62 loc) · 946 Bytes
/
armor.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
[
{
"id": "leather",
"name": "leather armor",
"symbol": "l",
"protection": 1
},
{
"id": "hide",
"name": "hide armor",
"symbol": "h",
"protection": 2,
"encumbrance": 1
},
{
"id": "chain_shirt",
"name": "chain shirt",
"symbol": "c",
"protection": 3,
"encumbrance": 2
},
{
"id": "scale_mail",
"name": "scale mail",
"symbol": "M",
"protection": 4,
"encumbrance": 7,
"stealth_pen": 3
},
{
"id": "half_plate",
"name": "half-plate armor",
"symbol": "H",
"protection": 5,
"encumbrance": 6,
"stealth_pen": 3
},
{
"id": "ring_mail",
"name": "ring mail",
"symbol": "R",
"protection": 6,
"encumbrance": 6,
"stealth_pen": 5
},
{
"id": "chain_mail",
"name": "chain mail",
"symbol": "C",
"protection": 9,
"encumbrance": 10,
"stealth_pen": 7
},
{
"id": "plate",
"name": "plate armor",
"symbol": "A",
"protection": 12,
"encumbrance": 11,
"stealth_pen": 10
}
]