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": "chestguard_hard",
"copy-from": "chestguard_hard",
"type": "ARMOR",
"name": { "str": "hard chest guard" },
"material_thickness": 4,
"encumbrance": 4,
"//": "Buff this to be as durable as the other hard plastic armor pieces."
},
{
"id": "jacket_leather_mod",
"copy-from": "jacket_leather_mod",
"type": "ARMOR",
"name": { "str": "armored leather jacket" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 20, 28 ] },
{ "covers": [ "arms" ], "coverage": 100, "encumbrance": [ 22, 22 ] }
],
"storage": "1200 ml"
},
{
"id": "football_armor",
"copy-from": "football_armor",
"type": "ARMOR",
"name": { "str": "football armor" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 45, "encumbrance": 5 },
{ "covers": [ "arms" ], "coverage": 15, "encumbrance": 4 }
]
},
{
"id": "kevlar",
"copy-from": "kevlar",
"type": "ARMOR",
"name": { "str": "Kevlar vest" },
"description": "A lightweight level II ballistic vest, suitable for wearing under a coat or other outer wear.",
"weight": "1960 g",
"volume": "4 L",
"coverage": 90,
"encumbrance": 3
},
{
"id": "motorbike_armor",
"copy-from": "motorbike_armor",
"type": "ARMOR",
"name": { "str": "motorcycle armor" },
"description": "A light jacket made of a stretch mesh covered in plastic pads meant for motorcyclists. Made to be much more comfortable to wear than leather alternatives, but the underlying lycra isn't protective at all.",
"weight": "1066 g",
"volume": "2 L",
"material": [ "plastic", "nylon" ],
"coverage": 100,
"encumbrance": 10,
"flags": [ "VARSIZE", "WATERPROOF", "OUTER" ]
},
{
"id": "vest_leather_mod",
"copy-from": "vest_leather_mod",
"type": "ARMOR",
"name": { "str": "armored leather vest" },
"armor_portion_data": [
{ "covers": [ "torso" ], "coverage": 90, "encumbrance": [ 15, 25 ] }
],
"storage": "1900 ml"
}
]
|