diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-07-29 06:30:17 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-07-29 06:30:17 -0700 |
commit | f83788bd57bb5e03cbe8164e2be2519c35b35a4b (patch) | |
tree | dff932fb8291b747645399d73a9ff1a887f852eb /json/items/ammo/40.json | |
download | cataclysm-bn-mod_revert-handgun-damage-buff-f83788bd57bb5e03cbe8164e2be2519c35b35a4b.tar.xz |
Initial commit
Diffstat (limited to 'json/items/ammo/40.json')
-rw-r--r-- | json/items/ammo/40.json | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/json/items/ammo/40.json b/json/items/ammo/40.json new file mode 100644 index 0000000..cbd6019 --- /dev/null +++ b/json/items/ammo/40.json @@ -0,0 +1,79 @@ +[ + { + "id": "40sw", + "type": "AMMO", + "name": { "str_sp": ".40 S&W JHP" }, + "description": ".40 S&W ammunition with 135gr JHP bullets. The .40 S&W round is a descended from the 10mm Auto cartridge and maintains most of its predecessor's strengths while reducing recoil.", + "weight": "9 g", + "volume": "106 ml", + "price": 220, + "price_postapoc": 800, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "material": [ "brass", "powder" ], + "symbol": "=", + "color": "yellow", + "count": 40, + "stack_size": 40, + "ammo_type": "40", + "casing": "40_casing", + "range": 14, + "damage": { "damage_type": "stab", "amount": 26, "armor_penetration": 4 }, + "dispersion": 50, + "recoil": 560, + "effects": [ "COOKOFF" ] + }, + { + "id": "40fmj", + "copy-from": "40sw", + "type": "AMMO", + "name": { "str_sp": ".40 S&W FMJ" }, + "description": ".40 S&W ammunition with 180gr FMJ bullets. Designed to retain the 10mm Auto cartridge's power with lower recoil, the .40 S&W round became popular for law enforcement and personal defense.", + "relative": { "damage": { "damage_type": "stab", "amount": -3, "armor_penetration": 6 } } + }, + { + "id": "bp_40fmj", + "copy-from": "40fmj", + "type": "AMMO", + "name": { "str_sp": ".40 S&W FMJ, black powder" }, + "proportional": { + "price": 0.3, + "damage": { "damage_type": "stab", "amount": 0.76, "armor_penetration": 0.5 }, + "recoil": 0.76, + "dispersion": 1.2 + }, + "extend": { "effects": [ "RECYCLED", "BLACKPOWDER", "MUZZLE_SMOKE" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + }, + { + "id": "bp_40sw", + "copy-from": "40sw", + "type": "AMMO", + "name": { "str_sp": ".40 S&W JHP, black powder" }, + "proportional": { + "price": 0.3, + "damage": { "damage_type": "stab", "amount": 0.76, "armor_penetration": 0.5 }, + "recoil": 0.76, + "dispersion": 1.2 + }, + "extend": { "effects": [ "RECYCLED", "BLACKPOWDER", "MUZZLE_SMOKE" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + }, + { + "id": "reloaded_40fmj", + "copy-from": "40fmj", + "type": "AMMO", + "name": { "str_sp": ".40 S&W FMJ, reloaded" }, + "proportional": { "price": 0.7, "damage": { "damage_type": "stab", "amount": 0.9 }, "dispersion": 1.1 }, + "extend": { "effects": [ "RECYCLED" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + }, + { + "id": "reloaded_40sw", + "copy-from": "40sw", + "type": "AMMO", + "name": { "str_sp": ".40 S&W JHP, reloaded" }, + "proportional": { "price": 0.7, "damage": { "damage_type": "stab", "amount": 0.9 }, "dispersion": 1.1 }, + "extend": { "effects": [ "RECYCLED" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + } +] |