From f83788bd57bb5e03cbe8164e2be2519c35b35a4b Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Thu, 29 Jul 2021 06:30:17 -0700 Subject: Initial commit --- json/items/ammo/22.json | 106 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 json/items/ammo/22.json (limited to 'json/items/ammo/22.json') diff --git a/json/items/ammo/22.json b/json/items/ammo/22.json new file mode 100644 index 0000000..1fdd9e2 --- /dev/null +++ b/json/items/ammo/22.json @@ -0,0 +1,106 @@ +[ + { + "id": "22_lr", + "type": "AMMO", + "name": { "str_sp": ".22 LR" }, + "description": ".22 Long Rifle ammunition with 40gr unjacketed bullets. The .22LR round is extremely weak with very low stopping power, short range, and negligible recoil. It is most useful for rifle training, and hunting small animals.", + "weight": "3 g", + "volume": "65 ml", + "price": 150, + "price_postapoc": 800, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "material": [ "brass", "lead", "powder" ], + "symbol": "=", + "color": "yellow", + "count": 80, + "stack_size": 100, + "ammo_type": "22", + "casing": "22_casing", + "range": 13, + "damage": { "damage_type": "stab", "amount": 12 }, + "dispersion": 60, + "recoil": 150, + "effects": [ "COOKOFF" ] + }, + { + "id": "22_cb", + "copy-from": "22_lr", + "type": "AMMO", + "name": { "str_sp": ".22 CB" }, + "description": "The .22 Conical Ball is a variety of .22 ammunition that propels its bullet using a primer instead of gunpowder. The end result is a subsonic round that is so weak as to be nearly useless given your predicament.", + "price": 100, + "price_postapoc": 1000, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "count": 100, + "stack_size": 150, + "recoil": 39, + "proportional": { "range": 0.6, "damage": { "damage_type": "stab", "amount": 0.5 }, "dispersion": 1.2 }, + "extend": { "effects": [ "NOGIB" ] } + }, + { + "id": "22_fmj", + "copy-from": "22_lr", + "type": "AMMO", + "name": { "str_sp": ".22 FMJ" }, + "description": ".22 Long Rifle ammunition with 30gr FMJ bullets. The .22LR round is extremely weak with very low stopping power, short range, and negligible recoil. It is most useful for rifle training, and hunting small animals.", + "relative": { "damage": { "damage_type": "stab", "amount": -1, "armor_penetration": 2 } } + }, + { + "id": "22_ratshot", + "copy-from": "22_lr", + "type": "AMMO", + "name": { "str_sp": ".22 rat-shot" }, + "description": "A .22 caliber cartridge loaded with very small pieces of shot contained within a fragmenting plastic capsule. It has an extremely short range and penetration ability, but it can hit targets with greater ease.", + "count": 100, + "price_postapoc": 400, + "dispersion": 0, + "proportional": { "range": 0.6, "damage": { "damage_type": "stab", "amount": 0.5 }, "recoil": 0.5 }, + "extend": { "effects": [ "SHOT", "NOGIB" ] } + }, + { + "id": "bp_22_fmj", + "copy-from": "22_fmj", + "type": "AMMO", + "name": { "str_sp": ".22 LR FMJ, black powder" }, + "proportional": { + "price": 0.3, + "damage": { "damage_type": "stab", "amount": 0.57, "armor_penetration": 0.5 }, + "recoil": 0.57, + "dispersion": 1.2 + }, + "extend": { "effects": [ "RECYCLED", "BLACKPOWDER", "MUZZLE_SMOKE" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + }, + { + "id": "bp_22_lr", + "copy-from": "22_lr", + "type": "AMMO", + "name": { "str_sp": ".22 LR, black powder" }, + "proportional": { + "price": 0.3, + "damage": { "damage_type": "stab", "amount": 0.57, "armor_penetration": 0.5 }, + "recoil": 0.57, + "dispersion": 1.2 + }, + "extend": { "effects": [ "RECYCLED", "BLACKPOWDER", "MUZZLE_SMOKE" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + }, + { + "id": "reloaded_22_lr", + "copy-from": "22_lr", + "type": "AMMO", + "name": { "str_sp": ".22 LR, 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_22_fmj", + "copy-from": "22_fmj", + "type": "AMMO", + "name": { "str_sp": ".22 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" ] } + } +] -- cgit v1.2.1