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
|
[
{
"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 ] }
],
"storage": "350 ml"
},
{
"id": "dress_wedding",
"copy-from": "dress_wedding",
"type": "ARMOR",
"name": { "str": "wedding dress", "str_pl": "wedding dresses" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 90, "encumbrance": 12 },
{ "covers": [ "legs" ], "coverage": 100, "encumbrance": 20 }
],
"storage": "350 ml"
},
{
"id": "hoodie",
"copy-from": "hoodie",
"type": "ARMOR",
"name": { "str": "hoodie" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 6, 12 ] },
{ "covers": [ "arms" ], "coverage": 95, "encumbrance": [ 6, 6 ] }
],
"storage": "3 L"
},
{
"id": "longshirt",
"copy-from": "longshirt",
"type": "ARMOR",
"name": { "str": "long-sleeved shirt" },
"armor_portion_data": [
{ "covers": [ "torso", "arms" ], "coverage": 90, "encumbrance": 0 }
],
"storage": "3 L"
},
{
"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": 0 }
],
"//": "Add arms coverage."
},
{
"id": "sundress",
"copy-from": "sundress",
"type": "ARMOR",
"name": { "str": "sundress", "str_pl": "sundresses" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 65, "encumbrance": 0 },
{ "covers": [ "legs" ], "coverage": 50, "encumbrance": 0 }
]
},
{
"id": "sweater",
"copy-from": "sweater",
"type": "ARMOR",
"name": { "str": "sweater" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 95, "encumbrance": 6 },
{ "covers": [ "arms" ], "coverage": 95, "encumbrance": 6 }
]
},
{
"id": "sweatshirt",
"copy-from": "sweatshirt",
"type": "ARMOR",
"name": { "str": "sweatshirt" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 95, "encumbrance": 6 },
{ "covers": [ "arms" ], "coverage": 95, "encumbrance": 6 }
]
},
{
"id": "vest_leather",
"copy-from": "vest_leather",
"type": "ARMOR",
"name": { "str": "leather vest" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 90, "encumbrance": [ 4, 8 ] }
],
"storage": "2250 ml"
},
{
"id": "wool_hoodie",
"copy-from": "wool_hoodie",
"type": "ARMOR",
"name": { "str": "wool hoodie" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 6, 12 ] },
{ "covers": [ "arms" ], "coverage": 95, "encumbrance": [ 6, 6 ] }
],
"storage": "3 L"
}
]
|