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
|
[
{
"id": "boots_combat",
"copy-from": "boots_combat",
"type": "ARMOR",
"name": { "str": "pair of combat boots", "str_pl": "pairs of combat boots" },
"encumbrance": 12,
"//": "Add the mising 'pair of' to the name.",
"//2": "Reduce the encumbrance."
},
{
"id": "boots_scrap",
"copy-from": "boots_scrap",
"type": "ARMOR",
"name": { "str": "pair of scrap boots", "str_pl": "pairs of scrap boots" },
"encumbrance": 6,
"//": "Reduce the encumbrance."
},
{
"id": "knee_high_boots",
"copy-from": "knee_high_boots",
"type": "ARMOR",
"name": { "str": "pair of knee-high boots", "str_pl": "pairs of knee-high boots" },
"armor_portion_data": [
{ "covers": [ "legs" ], "coverage": 50, "encumbrance": 15 },
{ "covers": [ "feet" ], "coverage": 100, "encumbrance": 20 }
],
"//": "Reduce the encumbrance."
},
{
"id": "leathersandals",
"copy-from": "leathersandals",
"type": "ARMOR",
"name": { "str": "pair of leather sandals", "str_pl": "pairs of leather sandals" },
"encumbrance": 8,
"//": "Increase the encumbrance."
},
{
"id": "thigh_high_boots",
"copy-from": "thigh_high_boots",
"type": "ARMOR",
"name": { "str": "pair of thigh-high boots", "str_pl": "pairs of thigh-high boots" },
"armor_portion_data": [
{ "covers": [ "legs" ], "coverage": 75, "encumbrance": 20 },
{ "covers": [ "feet" ], "coverage": 100, "encumbrance": 20 }
],
"//": "Reduce the encumbrance."
},
{
"id": "stockings",
"copy-from": "stockings",
"type": "ARMOR",
"name": { "str": "pair of stockings", "str_pl": "pairs of stockings" },
"armor_portion_data": [
{ "covers": [ "legs" ], "coverage": 80, "encumbrance": 4 },
{ "covers": [ "feet" ], "coverage": 100, "encumbrance": 5 }
]
},
{
"id": "sandal_armor",
"copy-from": "sandal_armor",
"type": "ARMOR",
"name": { "str": "pair of armored sandals", "str_pl": "pairs of armored sandals" },
"//": "Restore the str and str_pl names."
}
]
|