From efc2bc21273786f60f1d0938e7860b91236b31f4 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Wed, 8 Nov 2023 22:03:51 -0800 Subject: Add blunderbuss rounds. --- json/items/handloaded_bullets.json | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 json/items/handloaded_bullets.json diff --git a/json/items/handloaded_bullets.json b/json/items/handloaded_bullets.json new file mode 100644 index 0000000..8b7d1e2 --- /dev/null +++ b/json/items/handloaded_bullets.json @@ -0,0 +1,64 @@ +[ + { + "type": "AMMO", + "id": "blun_slug", + "price": 4500, + "price_postapoc": 50, + "name": { "str": "blunderbuss slug" }, + "symbol": "=", + "color": "red", + "description": "A prepared blunderbuss shot of a large hunk of metal. Better for distance.", + "material": [ "paper", "powder" ], + "volume": "100 ml", + "weight": "3 g", + "bashing": 1, + "ammo_type": "blunderbuss", + "//": "Half the expected armor pernetration, additionally all blinderbuss rounds have an armor multiplier.", + "damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 8, "armor_multiplier": 2.5 }, + "range": 12, + "dispersion": 60, + "recoil": 840, + "effects": [ "COOKOFF", "RECYCLED" ] + }, + { + "type": "AMMO", + "id": "blun_shot", + "price": 4500, + "price_postapoc": 50, + "name": { "str": "blunderbuss shot" }, + "symbol": "=", + "color": "red", + "description": "A prepared blunderbuss shot of marbles, pebbles, bearings, basically whatever is at hand. The homemade pellet spread and number makes up for the shoddy quality.", + "material": [ "paper", "powder" ], + "volume": "100 ml", + "weight": "2 g", + "bashing": 1, + "ammo_type": "blunderbuss", + "damage": { "damage_type": "bullet", "amount": 55, "armor_multiplier": 3.0 }, + "range": 6, + "dispersion": 1000, + "recoil": 780, + "effects": [ "COOKOFF", "SHOT", "RECYCLED" ] + }, + { + "type": "AMMO", + "id": "blun_flechette", + "price": 4500, + "price_postapoc": 50, + "name": { "str": "blunderbuss flechette" }, + "symbol": "=", + "color": "red", + "description": "A prepared blunderbuss shot of homemade flechette made out of nails. Shreds armor.", + "material": [ "plastic", "powder" ], + "volume": "100 ml", + "weight": "3 g", + "bashing": 1, + "ammo_type": "blunderbuss", + "//": "Balanced as standard FMJ to allow lower damage but more penetration over shot.", + "damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 12, "armor_multiplier": 2.0 }, + "range": 10, + "dispersion": 1000, + "recoil": 840, + "effects": [ "COOKOFF", "SHOT", "RECYCLED" ] + } +] -- cgit v1.2.1