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
|
[
{
"id": "armor_larmor",
"copy-from": "armor_larmor",
"type": "ARMOR",
"name": { "str": "leather body armor" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 16, 16 ] },
{ "covers": [ "arms" ], "coverage": 90, "encumbrance": [ 14, 14 ] },
{ "covers": [ "legs" ], "coverage": 85, "encumbrance": [ 14, 14 ] }
]
},
{
"id": "armor_riot",
"copy-from": "armor_riot",
"type": "ARMOR",
"name": { "str": "riot armor" },
"description": "A full suit of black plastic body armor plates used by riot police. Cleverly placed velcro straps secure each piece, resulting in slightly less encumbrance then its constituent parts. The word POLICE is emblazoned across the front.",
"weight": "3000 g",
"volume": "12500 ml",
"material": [ "plastic" ],
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 85, "encumbrance": 6 },
{ "covers": [ "legs", "arms" ], "coverage": 75, "encumbrance": 4 },
{ "covers": [ "feet" ], "coverage": 75, "encumbrance": 2 }
],
"flags": [ "STURDY", "BELTED", "WATER_FRIENDLY" ],
"//": "Rebalance this based on dda's concept of it being a strapped on set of armor pads. Essentially a step up in quality from the individual hard plastic armor pieces."
},
{
"id": "hsurvivor_suit",
"copy-from": "hsurvivor_suit",
"type": "ARMOR",
"name": { "str": "heavy survivor suit" },
"material": [ "kevlar", "steel", "leather" ],
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 17, 31 ] },
{ "covers": [ "legs" ], "coverage": 100, "encumbrance": [ 17, 21 ] },
{ "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 17, 17 ] }
]
},
{
"id": "sasurvivor_suit",
"copy-from": "sasurvivor_suit",
"type": "ARMOR",
"name": { "str": "superalloy survivor suit" },
"material": [ "kevlar", "superalloy", "leather" ],
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 15, 25 ] },
{ "covers": [ "legs" ], "coverage": 100, "encumbrance": [ 15, 20 ] },
{ "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 15, 15 ] }
]
},
{
"id": "lsurvivor_suit",
"copy-from": "lsurvivor_suit",
"type": "ARMOR",
"name": { "str": "light survivor suit" },
"material": [ "kevlar", "cotton" ],
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 7, 15 ] },
{ "covers": [ "legs" ], "coverage": 100, "encumbrance": [ 7, 10 ] },
{ "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 7, 7 ] }
],
"storage": "7 L",
"//": "Reduced the carrying volume from 7.5 to 7 litres."
},
{
"id": "survivor_suit",
"copy-from": "survivor_suit",
"type": "ARMOR",
"name": { "str": "survivor suit" },
"material": [ "kevlar", "leather" ],
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 12, 20 ] },
{ "covers": [ "legs" ], "coverage": 100, "encumbrance": [ 12, 17 ] },
{ "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 12, 12 ] }
]
},
{
"id": "wsurvivor_suit",
"copy-from": "wsurvivor_suit",
"type": "ARMOR",
"name": { "str": "winter survivor suit" },
"material": [ "kevlar", "fur" ],
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 17, 31 ] },
{ "covers": [ "legs" ], "coverage": 100, "encumbrance": [ 17, 21 ] },
{ "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 17, 17 ] }
]
}
]
|