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/45.json | |
download | cataclysm-bn-mod_revert-handgun-damage-buff-f83788bd57bb5e03cbe8164e2be2519c35b35a4b.tar.xz |
Initial commit
Diffstat (limited to 'json/items/ammo/45.json')
-rw-r--r-- | json/items/ammo/45.json | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/json/items/ammo/45.json b/json/items/ammo/45.json new file mode 100644 index 0000000..f2f3df3 --- /dev/null +++ b/json/items/ammo/45.json @@ -0,0 +1,100 @@ +[ + { + "id": "45_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP JHP" }, + "description": ".45 ACP ammunition with 185gr JHP bullets. The .45 ACP round was developed to replace the .38 Long Colt cartridge in the early 20th century. It has good stopping power but above average recoil.", + "weight": "10 g", + "volume": "112 ml", + "price": 180, + "price_postapoc": 600, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "material": [ "brass", "powder" ], + "symbol": "=", + "color": "yellow", + "count": 30, + "stack_size": 30, + "ammo_type": "45", + "casing": "45_casing", + "range": 16, + "damage": { "damage_type": "stab", "amount": 30, "armor_penetration": 2 }, + "dispersion": 50, + "recoil": 600, + "effects": [ "COOKOFF" ] + }, + { + "id": "45_acp", + "copy-from": "45_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP FMJ" }, + "description": ".45 ACP ammunition with 230gr FMJ bullets. Noted for its stopping power, the .45 ACP round has been common for over a century.", + "relative": { "damage": { "damage_type": "stab", "amount": -3, "armor_penetration": 6 } } + }, + { + "id": "45_super", + "copy-from": "45_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP +P" }, + "description": "Overpressure .45 ACP ammunition with 185gr JHP bullets. This +P ammunition has higher muzzle energy than typical loads leading to greater damage, accuracy and recoil.", + "price": 210, + "price_postapoc": 600, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "count": 10, + "relative": { "damage": { "damage_type": "stab", "amount": 4, "armor_penetration": 4 }, "dispersion": -10, "recoil": 60 } + }, + { + "id": "bp_45_acp", + "copy-from": "45_acp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP 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_45_jhp", + "copy-from": "45_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP 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_45_acp", + "copy-from": "45_acp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP 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_45_jhp", + "copy-from": "45_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 ACP 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" ] } + }, + { + "id": "reloaded_45_super", + "copy-from": "45_super", + "type": "AMMO", + "name": { "str_sp": ".45 ACP +P, 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" ] } + } +] |