-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add items, update military pilot drops (#36558)
- Loading branch information
1 parent
0918b4e
commit 3399e37
Showing
5 changed files
with
66 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[ | ||
{ | ||
"id": "ballistic_vest", | ||
"type": "ARMOR", | ||
"category": "armor", | ||
"//": "Based on US Army SPCS", | ||
"name": { "str": "ballistic vest" }, | ||
"description": "Ballistic armor with ESAPI ceramic armor plates.", | ||
"weight": "9911 g", | ||
"volume": "6 L", | ||
"price": 280000, | ||
"material": [ "nylon", "ceramic" ], | ||
"symbol": "[", | ||
"color": "light_gray", | ||
"covers": [ "TORSO" ], | ||
"coverage": 85, | ||
"encumbrance": 10, | ||
"warmth": 15, | ||
"material_thickness": 20, | ||
"flags": [ "STURDY", "OUTER", "WATER_FRIENDLY" ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[ | ||
{ | ||
"id": "webbing_belt", | ||
"type": "ARMOR", | ||
"name": "webbing belt", | ||
"description": "A 2-inch nylon webbing belt commonly used by military forces.", | ||
"weight": "210 g", | ||
"volume": "500 ml", | ||
"price": 1000, | ||
"material": [ "nylon", "steel" ], | ||
"symbol": "[", | ||
"color": "yellow", | ||
"covers": [ "TORSO" ], | ||
"flags": [ "WAIST", "WATER_FRIENDLY" ] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters