1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[
{
"id": "dress_shirt",
"copy-from": "dress_shirt",
"type": "ARMOR",
"name": { "str": "dress shirt" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 90, "encumbrance": [ 4, 5 ] },
{ "covers": [ "arms" ], "coverage": 90, "encumbrance": [ 4, 4 ] }
]
},
{
"id": "polo_shirt",
"copy-from": "polo_shirt",
"type": "ARMOR",
"name": { "str": "polo shirt" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 90, "encumbrance": 7 },
{ "covers": [ "arms" ], "coverage": 30, "encumbrance": 5 }
],
"//": "Add arms coverage."
}
]
|