summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2023-10-02 19:20:04 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2023-10-02 19:20:04 -0700
commitc2b22f385960655678da9194e33cd88175e98175 (patch)
tree4dcfb101fb7094e3de14d2470548a0a74da3105a
parentPort in 8x40mm overrides. (diff)
downloadcataclysm-bn-mod_revert-handgun-damage-buff-c2b22f385960655678da9194e33cd88175e98175.tar.xz
Add shotpaper overrides.
-rw-r--r--json/items/ammo/shotpaper.json61
1 files changed, 61 insertions, 0 deletions
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
+ }
+]