summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2023-10-02 19:20:25 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2023-10-02 19:20:25 -0700
commit518752e8472f8d4ac8f529b8e6a17bc30620e5da (patch)
tree3ca666a891cf891feecf10e63a6605704f697ac6
parentAdd shotpaper overrides. (diff)
downloadcataclysm-bn-mod_revert-handgun-damage-buff-518752e8472f8d4ac8f529b8e6a17bc30620e5da.tar.xz
Add flintlock overrides.
-rw-r--r--json/items/ammo/flintlock.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/json/items/ammo/flintlock.json b/json/items/ammo/flintlock.json
new file mode 100644
index 0000000..25cf0f6
--- /dev/null
+++ b/json/items/ammo/flintlock.json
@@ -0,0 +1,46 @@
+[
+ {
+ "id": "flintlock_ammo",
+ "type": "AMMO",
+ "name": { "str": "paper cartridge" },
+ "description": "A paper cartridge containing black powder and a metallic projectile. Historically used to reload muzzleloaders in a more reasonable time.",
+ "weight": "40 g",
+ "volume": "250 ml",
+ "price": 1100,
+ "price_postapoc": 1200,
+ "material": [ "lead", "powder" ],
+ "symbol": "=",
+ "color": "white",
+ "count": 30,
+ "stack_size": 10,
+ "ammo_type": "flintlock",
+ "range": 12,
+ "damage": { "damage_type": "bullet", "amount": 50 },
+ "dispersion": 90,
+ "recoil": 1500,
+ "loudness": 70,
+ "effects": [ "COOKOFF", "MUZZLE_SMOKE", "BLACKPOWDER" ]
+ },
+ {
+ "id": "flintlock_shot",
+ "type": "AMMO",
+ "name": { "str": "paper shot cartridge" },
+ "description": "A paper cartridge containing black powder and metallic shot. Historically used to reload muzzleloaders in a more reasonable time.",
+ "weight": "40 g",
+ "volume": "250 ml",
+ "price": 1100,
+ "price_postapoc": 1200,
+ "material": [ "lead", "powder" ],
+ "symbol": "=",
+ "color": "white",
+ "count": 30,
+ "stack_size": 10,
+ "ammo_type": "flintlockshot",
+ "range": 8,
+ "damage": { "damage_type": "bullet", "amount": 45 },
+ "dispersion": 20,
+ "recoil": 1500,
+ "loudness": 90,
+ "effects": [ "COOKOFF", "MUZZLE_SMOKE", "SHOT", "BLACKPOWDER" ]
+ }
+]