From c2b22f385960655678da9194e33cd88175e98175 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Mon, 2 Oct 2023 19:20:04 -0700 Subject: Add shotpaper overrides. --- json/items/ammo/shotpaper.json | 61 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 json/items/ammo/shotpaper.json (limited to 'json/items/ammo/shotpaper.json') diff --git a/json/items/ammo/shotpaper.json b/json/items/ammo/shotpaper.json new file mode 100644 index 0000000..e11bc94 --- /dev/null +++ b/json/items/ammo/shotpaper.json @@ -0,0 +1,61 @@ +[ + { + "abstract": "shot_paper_abstract", + "type": "AMMO", + "name": { "str": "buckshot paper cartridge" }, + "description": "A paper cartridge containing a premeasured amount of black powder and an equal volume of 00 buckshot.", + "weight": "26 g", + "volume": "250 ml", + "price": 500, + "price_postapoc": 800, + "material": [ "paper", "powder", "lead" ], + "symbol": "=", + "color": "white", + "count": 20, + "stack_size": 20, + "ammo_type": "shotpaper", + "range": 20, + "damage": { "damage_type": "bullet", "amount": 64, "armor_multiplier": 2.0 }, + "recoil": 2000, + "loudness": 128, + "effects": [ "COOKOFF", "SHOT", "MUZZLE_SMOKE", "BLACKPOWDER" ] + }, + { + "id": "shot_paper_00", + "copy-from": "shot_paper_abstract", + "type": "AMMO", + "name": { "str": "20ga paper shot" }, + "description": "A paper cartridge containing a premeasured amount of black powder and an equal volume of 00 buckshot." + }, + { + "id": "shot_paper_bird", + "copy-from": "shot_paper_00", + "type": "AMMO", + "name": { "str": "20ga paper birdshot" }, + "description": "A paper cartridge containing a premeasured amount of black powder and an equal volume of birdshot. Used mostly for hunting small game or fowl.", + "damage": { "damage_type": "bullet", "amount": 40 }, + "proportional": { "recoil": 0.6, "loudness": 0.8 }, + "extend": { "effects": [ "NOGIB" ] } + }, + { + "id": "shot_paper_dragon", + "copy-from": "shot_paper_00", + "type": "AMMO", + "name": { "str": "20ga paper pyrotechnic cartridge" }, + "description": "A paper cartridge containing a premeasured amount of black powder and an equal volume of flammable metals. When fired, burning chunks of metal and sparks will shoot out of the barrel, igniting everything in their path.", + "proportional": { "damage": { "damage_type": "bullet", "amount": 0.2 }, "recoil": 0.6, "loudness": 0.8, "dispersion": 1.2 }, + "range": 0, + "shape": [ "cone", { "half_angle": 15, "length": 8 } ], + "extend": { "effects": [ "INCENDIARY", "STREAM", "NOGIB" ] } + }, + { + "id": "shot_paper_slug", + "copy-from": "shot_paper_abstract", + "type": "AMMO", + "name": { "str": "20ga paper slug" }, + "description": "A paper cartridge containing a premeasured amount of black powder and a .605 inch lead ball.", + "relative": { "range": 12, "damage": { "damage_type": "bullet", "amount": -8, "armor_penetration": 4, "armor_multiplier": -0.5 } }, + "delete": { "effects": [ "SHOT" ] }, + "dispersion": 100 + } +] -- cgit v1.2.1