Skip to content

Commit

Permalink
improvised ballistic plates in the style of scrap metal armor (Clever…
Browse files Browse the repository at this point in the history
…Raven#57881)

* improvised ballistic plates in the style of scrap metal armor

* oops, didn't mean to change that line. also, linting.

* two spaces after every period

Co-authored-by: delari <[email protected]>
  • Loading branch information
delarifert and delari authored May 24, 2022
1 parent a8aebb0 commit 2bdeed8
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
62 changes: 62 additions & 0 deletions data/json/items/armor/ballistic_armor.json
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,37 @@
}
]
},
{
"id": "scrap_esapi_plate",
"type": "ARMOR",
"category": "armor",
"name": { "str": "scrap ESAPI plate" },
"//": "some crude metal chopped and bent to fit into a plate carrier. not great, but better than nothing. added the cotton component cause i'd imagine a jagged piece of metal would cut through a ballistic vest and this is based on the existing scrap armor",
"//2": "requested in https://github.com/CleverRaven/Cataclysm-DDA/issues/49477",
"description": "A flat piece of salvaged steel, crudely cut and bent into the shape of an ESAPI ballistic plate. It's wrapped in rags to cover the sharp edges. Better than nothing, but it's heavy, and not very strong. This is intended to be inserted into a ballistic vest, and can't be worn on its own.",
"weight": "900 g",
"//3": "30cm x 25cm x 1.5cm",
"volume": "188 ml",
"price": "50 USD",
"price_postapoc": "1 USD",
"material": [ "budget_steel", "cotton" ],
"symbol": ",",
"color": "dark_gray",
"material_thickness": 3,
"flags": [ "ABLATIVE_LARGE", "CANT_WEAR" ],
"armor": [
{
"material": [
{ "type": "budget_steel", "covered_by_mat": 90, "thickness": 1.5 },
{ "type": "cotton", "covered_by_mat": 100, "thickness": 1 }
],
"encumbrance": 2,
"coverage": 45,
"covers": [ "torso" ],
"specifically_covers": [ "torso_upper" ]
}
]
},
{
"id": "esbi_plate",
"type": "ARMOR",
Expand All @@ -217,6 +248,37 @@
"flags": [ "ABLATIVE_MEDIUM", "CANT_WEAR" ],
"armor": [ { "encumbrance": 1, "coverage": 35, "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ] } ]
},
{
"id": "scrap_esbi_plate",
"type": "ARMOR",
"category": "armor",
"name": { "str": "scrap ESBI plate" },
"//": "some crude metal chopped and bent to fit into a plate carrier. not great, but better than nothing. added the cotton component cause i'd imagine a jagged piece of metal would cut through a ballistic vest and this is based on the existing scrap armor",
"//2": "requested in https://github.com/CleverRaven/Cataclysm-DDA/issues/49477",
"description": "A flat piece of salvaged steel, crudely cut and bent into the shape of an ESAPI ballistic plate. It's wrapped in rags to cover the sharp edges. Better than nothing, but it's heavy, and not very strong. This is intended to be inserted into a ballistic vest, and can't be worn on its own.",
"weight": "450 g",
"//3": "18cm x 20cm x 1.5cm",
"volume": "188 ml",
"price": "30 USD",
"price_postapoc": "1 USD",
"material": [ "budget_steel", "cotton" ],
"symbol": ",",
"color": "dark_gray",
"material_thickness": 3,
"flags": [ "ABLATIVE_MEDIUM", "CANT_WEAR" ],
"armor": [
{
"material": [
{ "type": "budget_steel", "covered_by_mat": 90, "thickness": 1.5 },
{ "type": "cotton", "covered_by_mat": 100, "thickness": 1 }
],
"encumbrance": 1,
"coverage": 35,
"covers": [ "torso" ],
"specifically_covers": [ "torso_lower" ]
}
]
},
{
"id": "destroyed_large_ceramic_plate",
"type": "ARMOR",
Expand Down
30 changes: 30 additions & 0 deletions data/json/recipes/armor/torso.json
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,36 @@
"components": [ [ [ "ballistic_vest_esapi", 1 ] ], [ [ "iotv_groin_plate", 1 ] ] ],
"flags": [ "BLIND_EASY" ]
},
{
"result": "scrap_esapi_plate",
"type": "recipe",
"activity_level": "MODERATE_EXERCISE",
"category": "CC_ARMOR",
"subcategory": "CSC_ARMOR_TORSO",
"skill_used": "fabrication",
"difficulty": 2,
"time": "30 m",
"autolearn": true,
"book_learn": [ [ "recipe_melee", 2 ] ],
"using": [ [ "cordage", 1 ], [ "mixed_steel", 1 ] ],
"components": [ [ [ "rag", 3 ] ] ],
"qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "SAW_M", "level": 1 } ]
},
{
"result": "scrap_esbi_plate",
"type": "recipe",
"activity_level": "MODERATE_EXERCISE",
"category": "CC_ARMOR",
"subcategory": "CSC_ARMOR_TORSO",
"skill_used": "fabrication",
"difficulty": 2,
"time": "30 m",
"autolearn": true,
"book_learn": [ [ "recipe_melee", 2 ] ],
"using": [ [ "cordage", 1 ], [ "mixed_steel", 1 ] ],
"components": [ [ [ "rag", 2 ] ] ],
"qualities": [ { "id": "HAMMER", "level": 1 }, { "id": "SAW_M", "level": 1 } ]
},
{
"result": "peacoat",
"type": "recipe",
Expand Down

0 comments on commit 2bdeed8

Please sign in to comment.