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
|
[
{
"id": "elbow_pads",
"copy-from": "elbow_pads",
"type": "ARMOR",
"name": { "str": "pair of elbow pads", "str_pl": "pairs of elbow pads" },
"extend": { "flags": [ "COMPACT", "ONLY_ONE" ] },
"//": "Add the ONLY_ONE flag to prevent stacking this 0 encumbrance item."
},
{
"id": "armguard_hard",
"copy-from": "armguard_hard",
"type": "ARMOR",
"name": { "str": "pair of hard arm guards", "str_pl": "pairs of hard arm guards" },
"coverage": 90,
"encumbrance": 5,
"extend": { "flags": [ "STURDY" ] }
},
{
"id": "armguard_larmor",
"copy-from": "armguard_larmor",
"type": "ARMOR",
"name": { "str": "pair of leather arm guards", "str_pl": "pairs of leather arm guards" },
"weight": "730 g",
"coverage": 95,
"encumbrance": 5,
"delete": { "flags": [ "VARSIZE" ] }
},
{
"id": "armguard_lightplate",
"copy-from": "armguard_lightplate",
"type": "ARMOR",
"name": { "str": "pair of steel arm guards", "str_pl": "pairs of steel arm guards" },
"encumbrance": 15
},
{
"id": "armguard_chitin",
"copy-from": "armguard_chitin",
"type": "ARMOR",
"name": { "str": "pair of chitin arm guards", "str_pl": "pairs of chitin arm guards" },
"coverage": 90,
"encumbrance": 4,
"material_thickness": 3
},
{
"id": "armguard_acidchitin",
"copy-from": "armguard_acidchitin",
"type": "ARMOR",
"name": { "str": "pair of biosilicified chitin arm guards", "str_pl": "pairs of biosilicified chitin arm guards" },
"material_thickness": 4,
"extend": { "flags": [ "NO_REPAIR" ] }
}
]
|