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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
[
{
"id": "helmet_army",
"copy-from": "helmet_army",
"type": "ARMOR",
"category": "armor",
"name": { "str": "army helmet" },
"material": [ "kevlar_rigid", "plastic" ],
"//": "Fix the material from kevlar to rigid kevlar."
},
{
"id": "tac_fullhelmet",
"copy-from": "tac_fullhelmet",
"type": "ARMOR",
"category": "armor",
"name": { "str": "tactical full helmet" },
"material": [ "kevlar_rigid", "plastic" ],
"material_thickness": 8,
"armor_portion_data": [
{ "covers": [ "head" ], "coverage": 100, "encumbrance": 20 },
{ "covers": [ "eyes" ], "coverage": 100, "encumbrance": 20 },
{ "covers": [ "mouth" ], "coverage": 100, "encumbrance": 15 }
],
"extend": { "flags": [ "WATERPROOF" ] },
"//": "Fix the material from kevlar to rigid kevlar.",
"//2": "Also buff the thickness to make it a viable option compared to the army helmet.",
"//3": "Also add WATERPROOF"
},
{
"id": "tac_helmet",
"copy-from": "tac_helmet",
"type": "ARMOR",
"category": "armor",
"name": { "str": "tactical helmet" },
"material": [ "kevlar_rigid", "plastic" ],
"material_thickness": 8,
"//": "Fix the material from kevlar to rigid kevlar.",
"//2": "Also buff the thickness to make it a viable option compared to the army helmet."
},
{
"id": "helmet_ball",
"copy-from": "helmet_ball",
"type": "ARMOR",
"category": "armor",
"name": { "str": "baseball helmet" },
"weight": "615 g"
},
{
"id": "helmet_bike",
"copy-from": "helmet_bike",
"type": "ARMOR",
"category": "armor",
"name": { "str": "bike helmet" },
"weight": "400 g"
},
{
"id": "helmet_football",
"copy-from": "helmet_football",
"type": "ARMOR",
"category": "armor",
"name": { "str": "football helmet" },
"armor_portion_data": [
{ "covers": [ "head" ], "coverage": 95, "encumbrance": 50 },
{ "covers": [ "eyes" ], "coverage": 70, "encumbrance": 5 },
{ "covers": [ "mouth" ], "coverage": 85, "encumbrance": 0 }
]
},
{
"id": "helmet_larmor",
"copy-from": "helmet_larmor",
"type": "ARMOR",
"category": "armor",
"name": { "str": "leather armor helmet" },
"weight": "658 g"
},
{
"id": "helmet_motor",
"copy-from": "helmet_motor",
"type": "ARMOR",
"category": "armor",
"name": { "str": "motorcycle helmet" },
"armor_portion_data": [
{ "covers": [ "head" ], "coverage": 100, "encumbrance": 25 },
{ "covers": [ "eyes" ], "coverage": 100, "encumbrance": 5 },
{ "covers": [ "mouth" ], "coverage": 100, "encumbrance": 15 }
]
},
{
"id": "helmet_survivor",
"type": "ARMOR",
"name": { "str": "survivor helmet" },
"description": "A customized, heavily armored Kevlar helmet, modified with leather reinforcements to provide maximum comfort and protection from harm.",
"weight": "1420 g",
"volume": "2000 ml",
"price": "0 cent",
"price_postapoc": "40 USD",
"to_hit": -1,
"bashing": 10,
"material": [ "kevlar_rigid", "leather" ],
"symbol": "[",
"looks_like": "helmet_army",
"color": "dark_gray",
"covers": [ "head" ],
"coverage": 100,
"encumbrance": 30,
"warmth": 15,
"material_thickness": 9,
"environmental_protection": 3,
"techniques": [ "WBLOCK_1" ],
"flags": [ "VARSIZE", "WATERPROOF", "STURDY" ],
"//": "Roughly an improved army helmet.",
"//2": "Overwrite because I disagree with BN's balancing."
},
{
"id": "helmet_hsurvivor",
"type": "ARMOR",
"name": { "str": "heavy survivor helmet" },
"description": "A customized, heavily armored steel and Kevlar helmet, modified to provide maximum comfort and protection from harm. All the added material has made it rather heavy.",
"weight": "3312 g",
"volume": "2500 ml",
"price": "0 cent",
"price_postapoc": "60 USD",
"to_hit": -1,
"bashing": 10,
"material": [ "kevlar_rigid", "steel" ],
"symbol": "[",
"looks_like": "helmet_survivor",
"color": "dark_gray",
"covers": [ "head" ],
"coverage": 100,
"encumbrance": 40,
"warmth": 15,
"material_thickness": 8,
"environmental_protection": 5,
"techniques": [ "WBLOCK_1" ],
"flags": [ "VARSIZE", "WATERPROOF", "STURDY" ],
"//": "A furthur improved army helmet. But still greatly inferior to a light power armor helmet.",
"//2": "Overwrite because I disagree with BN's balancing."
},
{
"id": "helmet_sasurvivor",
"copy-from": "helmet_hsurvivor",
"type": "ARMOR",
"name": { "str": "superalloy survivor helmet" },
"description": "A customized, heavily armored superalloy and Kevlar helmet, modified to provide maximum comfort and protection from harm. All the added material has made it rather heavy.",
"material": [ "kevlar_rigid", "superalloy" ],
"color": "light_cyan",
"encumbrance": 35,
"proportional": { "weight": 0.6, "price_postapoc": 2 },
"//": "Fix the material from kevlar to rigid kevlar."
}
]
|