From bc5b4e072c37ffd9cb4b3b5dfe1c8e52f36c8258 Mon Sep 17 00:00:00 2001 From: Kenan Mamedov <43505148+Kenan2000@users.noreply.github.com> Date: Sun, 4 Jul 2021 06:04:05 +0400 Subject: [PATCH] Update Locked and Loaded mod --- .../Locked_and_Loaded/itemgroups/guns.json | 7 +- .../items/guns/pistols/45/grandraptor.json | 33 ++++ .../items/guns/pistols/93r.json | 36 ---- .../items/guns/pistols/bodyguard.json | 36 ---- .../items/guns/pistols/kimbercustom.json | 162 ---------------- .../items/guns/pistols/kimbermicro.json | 32 --- .../items/guns/pistols/vaquero.json | 112 ----------- .../{pistols => revolvers/357mag}/K6s.json | 16 +- .../guns/revolvers/{ => 357mag}/python.json | 16 +- .../items/guns/revolvers/357mag/vaquero.json | 32 +++ .../items/guns/revolvers/38/vaquero.json | 32 +++ .../items/guns/revolvers/44/vaquero.json | 32 +++ .../items/guns/revolvers/4440/vaquero.json | 32 +++ .../items/guns/revolvers/45/vaquero.json | 32 +++ .../items/guns/revolvers/K6s.json | 24 --- .../items/guns/revolvers/vaquero.json | 112 ----------- .../items/guns/rifles/223/7615p.json | 45 +++++ .../items/guns/rifles/3006/7600c.json | 31 +++ .../items/guns/smg/22/american180.json | 50 +++++ .../items/magazine/10/10custom.json | 37 ++++ .../items/magazine/3006/7600c.json | 19 ++ .../items/magazine/38/38custom.json | 37 ++++ .../items/magazine/380/380custom.json | 20 ++ .../items/magazine/40/custom40.json | 37 ++++ .../items/magazine/4440/4440speedloader.json | 19 ++ .../items/magazine/45/45custom.json | 37 ++++ .../items/magazine/45/45speedloader.json | 19 ++ .../items/magazine/45/raptor_mag.json | 19 ++ .../items/magazine/9mm/9custom.json | 37 ++++ .../{recipes.json => recipes/ammo.json} | 0 .../Locked_and_Loaded/recipes/mags/22.json | 62 ++++++ .../Locked_and_Loaded/recipes/mags/300.json | 32 +++ .../Locked_and_Loaded/recipes/mags/408.json | 17 ++ .../recipes/mags/45/raptor_mag.json | 17 ++ .../Locked_and_Loaded/recipes/mags/762.json | 17 ++ .../Locked_and_Loaded/recipes/mags/939.json | 32 +++ .../Locked_and_Loaded/recipes/mags/9mm.json | 182 ++++++++++++++++++ .../recipes/mags/speedloader.json | 62 ++++++ .../Locked_and_Loaded/requirment/ammo.json | 84 ++++++++ .../uncraft/ammo/145114.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/3220.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/338.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/3840.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/408.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/4440.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/44h.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/55645.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/5842.json | 4 +- .../Locked_and_Loaded/uncraft/ammo/792.json | 2 +- .../Locked_and_Loaded/uncraft/ammo/939.json | 4 +- .../Locked_and_Loaded/uncraft/ammo/950.json | 2 +- .../uncraft/ammo/shot/12_gauge.json | 2 +- 52 files changed, 1149 insertions(+), 539 deletions(-) create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/45/grandraptor.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/93r.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/bodyguard.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbercustom.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbermicro.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/vaquero.json rename Kenan-Modpack/Locked_and_Loaded/items/guns/{pistols => revolvers/357mag}/K6s.json (68%) rename Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/{ => 357mag}/python.json (63%) create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/vaquero.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/38/vaquero.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/44/vaquero.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/4440/vaquero.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/45/vaquero.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/K6s.json delete mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/vaquero.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/223/7615p.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/3006/7600c.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/guns/smg/22/american180.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/10/10custom.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/3006/7600c.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/38/38custom.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/380/380custom.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/40/custom40.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/4440/4440speedloader.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45custom.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45speedloader.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/45/raptor_mag.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/items/magazine/9mm/9custom.json rename Kenan-Modpack/Locked_and_Loaded/{recipes.json => recipes/ammo.json} (100%) create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/22.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/300.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/408.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/45/raptor_mag.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/762.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/939.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/9mm.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/recipes/mags/speedloader.json create mode 100644 Kenan-Modpack/Locked_and_Loaded/requirment/ammo.json diff --git a/Kenan-Modpack/Locked_and_Loaded/itemgroups/guns.json b/Kenan-Modpack/Locked_and_Loaded/itemgroups/guns.json index f19f90e4c..963b1b6e4 100644 --- a/Kenan-Modpack/Locked_and_Loaded/itemgroups/guns.json +++ b/Kenan-Modpack/Locked_and_Loaded/itemgroups/guns.json @@ -24,7 +24,9 @@ { "item": "win1873_4440", "prob": 80, "charges-min": 0, "charges-max": 7 }, { "item": "win1873_3840", "prob": 70, "charges-min": 0, "charges-max": 7 }, { "item": "win1873_3220", "prob": 70, "charges-min": 0, "charges-max": 7 }, - { "item": "pursuit", "prob": 20, "charges-min": 0, "charges-max": 1 } + { "item": "pursuit", "prob": 20, "charges-min": 0, "charges-max": 1 }, + { "item": "7600_3006", "prob": 30, "charges-min": 0, "charges-max": 4 }, + { "item": "7615p", "prob": 40, "charges-min": 0, "charges-max": 10 } ] }, { @@ -65,7 +67,8 @@ { "item": "vaquero44", "prob": 30, "charges-min": 0, "charges-max": 6 }, { "item": "vaquero45", "prob": 35, "charges-min": 0, "charges-max": 6 }, { "item": "grach", "prob": 35, "charges-min": 0, "charges-max": 18 }, - { "item": "python", "prob": 15, "charges-min": 0, "charges-max": 6 } + { "item": "python", "prob": 15, "charges-min": 0, "charges-max": 6 }, + { "item": "grandraptor", "prob": 30, "charges-min": 0, "charges-max": 8 } ] }, { diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/45/grandraptor.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/45/grandraptor.json new file mode 100644 index 000000000..625b154d7 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/45/grandraptor.json @@ -0,0 +1,33 @@ +[ + { + "id": "grandraptor", + "copy-from": "pistol_base", + "looks_like": "glock_17", + "type": "GUN", + "name": { "str": "Kimber Grand Raptor II" }, + "description": "The Kimber Grand Raptor II is possibly the most popular Kimber pistol. Being made in the common M1911 style, it is easy to wield, accurate, and durable! The one down side of this pistol is that it can only hold eight rounds...", + "weight": "1077 g", + "volume": "600 ml", + "price": "1400 USD", + "to_hit": -2, + "bashing": 8, + "material": [ "steel", "aluminum" ], + "symbol": "(", + "color": "dark_gray", + "ammo": [ "45" ], + "dispersion": 350, + "durability": 8, + "min_cycle_recoil": 400, + "barrel_volume": "22 ml", + "longest_side": "220 mm", + "pocket_data": [ + { + "pocket_type": "MAGAZINE_WELL", + "holster": true, + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "item_restriction": [ "raptor_mag" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/93r.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/93r.json deleted file mode 100644 index 9d31d58e8..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/93r.json +++ /dev/null @@ -1,36 +0,0 @@ -[ - { - "id": "93r", - "copy-from": "pistol_base", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Beretta 93R" }, - "description": "The Beretta 93R is takes the already famous M9 model and adds burst fire capability and a foldding vertical grip! The 'R' in the name is Italian for Raffica, which is volly, flurry, or burst. Be warned, the small size and quick firerate can make for an unruly firearm after sustained fire.", - "weight": "1170 g", - "volume": "550 ml", - "price": "650 USD", - "to_hit": -2, - "bashing": 8, - "material": [ "steel", "aluminum" ], - "symbol": "(", - "color": "dark_gray", - "ammo": [ "9mm" ], - "range": 1, - "dispersion": 600, - "durability": 8, - "min_cycle_recoil": 500, - "barrel_volume": "84 ml", - "longest_side": "240 mm", - "default_mods": [ "muzzle_brake", "grip" ], - "modes": [ [ "DEFAULT", "semi-auto", 1 ], [ "BURST", "3 rd.", 3 ] ], - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "93r_mag", "93rbig_mag" ] - } - ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/bodyguard.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/bodyguard.json deleted file mode 100644 index d088720d2..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/bodyguard.json +++ /dev/null @@ -1,36 +0,0 @@ -[ - { - "copy-from": "pistol_base", - "id": "bodyguard", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "M&P 380 Bodyguard" }, - "description": "The M&P 380 bodyguard is. very compact pistol chambered in .38 special. The small size make it perfect for concealed carry. While small, this gun packs quite the punch.", - "weight": "349 g", - "volume": "250 ml", - "price": "450 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "aluminum" ], - "symbol": ")", - "color": "dark_gray", - "ammo": [ "38" ], - "range": 1, - "dispersion": 200, - "durability": 7, - "min_cycle_recoil": 450, - "barrel_volume": "17 ml", - "longest_side": "127 mm", - "default_mods": [ "laser_sight" ], - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "magazine_well": "250 ml", - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "bodyguard_mag" ] - } - ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbercustom.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbercustom.json deleted file mode 100644 index a23972b87..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbercustom.json +++ /dev/null @@ -1,162 +0,0 @@ -[ - { - "id": "kimbercust45", - "copy-from": "pistol_base", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Kimber Custom" }, - "description": "The Kimber Custom is an m1911 style pistol, being an m1911 style it is typically it is chambered in .45 ACP but can come in many diffrent calibers. The ammo the pistol is chambered in can be seen on the top of the barrel.", - "weight": "1077 g", - "volume": "528 ml", - "price": "650 USD", - "to_hit": -2, - "bashing": 8, - "material": [ "steel", "aluminum" ], - "symbol": "(", - "color": "dark_gray", - "ammo": [ "45" ], - "range": 1, - "dispersion": 480, - "durability": 7, - "min_cycle_recoil": 450, - "barrel_volume": "22 ml", - "longest_side": "245 mm", - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "kimber45_mag", "kimber45big_mag" ] - } - ] - }, - { - "id": "kimbercust40", - "copy-from": "pistol_base", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Kimber Custom" }, - "description": "The Kimber Custom is an m1911 style pistol, being an m1911 style it is typically it is chambered in .45 ACP but can come in many diffrent calibers. The ammo the pistol is chambered in can be seen on the top of the barrel.", - "weight": "1077 g", - "volume": "528 ml", - "price": "650 USD", - "to_hit": -2, - "bashing": 8, - "material": [ "steel", "aluminum" ], - "symbol": "(", - "color": "dark_gray", - "ammo": [ "40" ], - "range": 1, - "dispersion": 480, - "durability": 7, - "min_cycle_recoil": 450, - "barrel_volume": "18 ml", - "longest_side": "245 mm", - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "kimber40_mag", "kimber40big_mag" ] - } - ] - }, - { - "id": "kimbercust38", - "copy-from": "pistol_base", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Kimber Custom" }, - "description": "The Kimber Custom is an m1911 style pistol, being an m1911 style it is typically it is chambered in .45 ACP but can come in many diffrent calibers. The ammo the pistol is chambered in can be seen on the top of the barrel.", - "weight": "1077 g", - "volume": "528 ml", - "price": "650 USD", - "to_hit": -2, - "bashing": 8, - "material": [ "steel", "aluminum" ], - "symbol": "(", - "color": "dark_gray", - "ammo": [ "38" ], - "range": 1, - "dispersion": 480, - "durability": 7, - "min_cycle_recoil": 450, - "barrel_volume": "15 ml", - "longest_side": "245 mm", - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "kimber38_mag", "kimber38big_mag" ] - } - ] - }, - { - "id": "kimbercust10", - "copy-from": "pistol_base", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Kimber Custom" }, - "description": "The Kimber Custom is an m1911 style pistol, being an m1911 style it is typically it is chambered in .45 ACP but can come in many diffrent calibers. The ammo the pistol is chambered in can be seen on the top of the barrel.", - "weight": "1077 g", - "volume": "528 ml", - "price": "650 USD", - "to_hit": -2, - "bashing": 8, - "material": [ "steel", "aluminum" ], - "symbol": "(", - "color": "dark_gray", - "ammo": [ "10mm" ], - "range": 1, - "dispersion": 480, - "durability": 7, - "min_cycle_recoil": 450, - "barrel_volume": "18 ml", - "longest_side": "245 mm", - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "kimber10_mag", "kimber10big_mag" ] - } - ] - }, - { - "id": "kimbercust9", - "copy-from": "pistol_base", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Kimber Custom" }, - "description": "The Kimber Custom is an m1911 style pistol, being an m1911 style it is typically it is chambered in .45 ACP but can come in many diffrent calibers. The ammo the pistol is chambered in can be seen on the top of the barrel.", - "weight": "1077 g", - "volume": "528 ml", - "price": "650 USD", - "to_hit": -2, - "bashing": 8, - "material": [ "steel", "aluminum" ], - "symbol": "(", - "color": "dark_gray", - "ammo": [ "9mm" ], - "range": 1, - "dispersion": 480, - "durability": 7, - "min_cycle_recoil": 450, - "barrel_volume": "15 ml", - "longest_side": "245 mm", - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "kimber9_mag", "kimber9big_mag" ] - } - ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbermicro.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbermicro.json deleted file mode 100644 index 667c9b4d7..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/kimbermicro.json +++ /dev/null @@ -1,32 +0,0 @@ -[ - { - "id": "kimbermicro", - "copy-from": "pistol_backup", - "looks_like": "glock_17", - "type": "GUN", - "name": { "str": "Kimber Micro" }, - "description": "The Kimber Micro is a lightweight, single-action pocket pistol chambered for the .380 ACP cartridge", - "weight": "13 g", - "volume": "250 ml", - "price": "750 USD", - "to_hit": -3, - "bashing": 1, - "material": [ "steel" ], - "color": "dark_gray", - "ammo": [ "380" ], - "dispersion": 480, - "durability": 7, - "barrel_volume": "6 ml", - "longest_side": "175 mm", - "min_cycle_recoil": 270, - "pocket_data": [ - { - "pocket_type": "MAGAZINE_WELL", - "holster": true, - "max_contains_volume": "20 L", - "max_contains_weight": "20 kg", - "item_restriction": [ "Kimber_Micro_mag" ] - } - ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/vaquero.json deleted file mode 100644 index c9ee194e0..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/vaquero.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "id": "vaquero357", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "357mag" ], - "dispersion": 300, - "durability": 8, - "barrel_volume": "16 ml", - "longest_side": "278 mm", - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "357mag": 6 } } ] - }, - { - "id": "vaquero38", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "38" ], - "dispersion": 300, - "barrel_volume": "16 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "38": 6 } } ] - }, - { - "id": "vaquero4440", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "4440" ], - "dispersion": 300, - "barrel_volume": "24 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "4440": 6 } } ] - }, - { - "id": "vaquero44", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for ththe sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "44" ], - "dispersion": 300, - "barrel_volume": "23 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "44": 6 } } ] - }, - { - "id": "vaquero45", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "45" ], - "dispersion": 300, - "barrel_volume": "25 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "45": 6 } } ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/K6s.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/K6s.json similarity index 68% rename from Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/K6s.json rename to Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/K6s.json index fb0fd3111..7981fe5ac 100644 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/pistols/K6s.json +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/K6s.json @@ -5,20 +5,28 @@ "looks_like": "sw_619", "type": "GUN", "name": { "str": "Kimber K6s" }, - "description": "The one and only revolver delvoped by Kimber Manufacturing. The K6s is a six-shot revolver chambered in .357. This revolver stands out for two reasons: it is extremly small and light and the hammer is inside of the gun and not sticking out of thr back.", + "description": "The one and only revolver delvoped by Kimber Manufacturing. The K6s is a six-shot revolver chambered in .357. This revolver stands out for two reasons: it is extremly small and light and the hammer is inside of the gun and not sticking out of the back.", "weight": "652 g", "volume": "1 L", - "price": "424 USD", + "price": 42400, "to_hit": -2, "bashing": 9, "material": [ "steel", "plastic" ], "color": "dark_gray", - "ammo": [ "357mag" ], + "ammo": [ "357mag", "38" ], "dispersion": 300, "barrel_volume": "20 ml", "longest_side": "278 mm", "durability": 8, "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "357mag": 6 } } ] + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "357mag": 6, "38": 6 }, + "allowed_speedloaders": [ "38_speedloader6" ] + } + ] } ] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/python.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/python.json similarity index 63% rename from Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/python.json rename to Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/python.json index f689ccce2..a011ae1f8 100644 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/python.json +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/python.json @@ -5,7 +5,7 @@ "looks_like": "sw_619", "type": "GUN", "name": { "str": "Colt Python" }, - "description": "The Colt Python was designed and manufactured by Colt and was intended for the premium revolver market. The Python is built on Colt's I frame and is renowned for its accuracy, smooth trigger pull, and its tight locking cylinder locking.", + "description": "The Colt Python was designed and manufactured by Colt and was intended for the premium revolver market. The Python is built on Colt's I frame and is renowned for its accuracy, smooth trigger pull, and its tight locking cylinder.", "weight": "1150 g", "volume": "750 ml", "price": "829 USD", @@ -13,12 +13,20 @@ "bashing": 8, "material": [ "steel", "wood" ], "color": "dark_gray", - "ammo": [ "357mag" ], + "ammo": [ "357mag", "38" ], "dispersion": 150, "durability": 8, "barrel_volume": "16 ml", - "longest_side": "100 mm", + "longest_side": "152 mm", "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "357mag": 6 } } ] + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "357mag": 6, "38": 6 }, + "allowed_speedloaders": [ "38_speedloader6" ] + } + ] } ] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/vaquero.json new file mode 100644 index 000000000..c20c0fd96 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/357mag/vaquero.json @@ -0,0 +1,32 @@ +[ + { + "id": "vaquero357", + "copy-from": "pistol_revolver", + "looks_like": "sw_619", + "type": "GUN", + "name": { "str": "Ruger Vaquero" }, + "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", + "weight": "1400 g", + "volume": "1 L", + "price": "829 USD", + "to_hit": -2, + "bashing": 6, + "material": [ "steel", "plastic" ], + "color": "dark_gray", + "ammo": [ "357mag", "38" ], + "dispersion": 300, + "durability": 8, + "barrel_volume": "16 ml", + "longest_side": "278 mm", + "clip_size": 6, + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "357mag": 6, "38": 6 }, + "allowed_speedloaders": [ "38_speedloader6" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/38/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/38/vaquero.json new file mode 100644 index 000000000..33ace436c --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/38/vaquero.json @@ -0,0 +1,32 @@ +[ + { + "id": "vaquero38", + "copy-from": "pistol_revolver", + "looks_like": "sw_619", + "type": "GUN", + "name": { "str": "Ruger Vaquero" }, + "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", + "weight": "1400 g", + "volume": "1 L", + "price": "829 USD", + "to_hit": -2, + "bashing": 6, + "material": [ "steel", "plastic" ], + "color": "dark_gray", + "ammo": [ "38" ], + "dispersion": 300, + "barrel_volume": "16 ml", + "longest_side": "278 mm", + "durability": 8, + "clip_size": 6, + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "38": 6 }, + "allowed_speedloaders": [ "38_speedloader6" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/44/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/44/vaquero.json new file mode 100644 index 000000000..5dd025c6e --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/44/vaquero.json @@ -0,0 +1,32 @@ +[ + { + "id": "vaquero44", + "copy-from": "pistol_revolver", + "looks_like": "sw_619", + "type": "GUN", + "name": { "str": "Ruger Vaquero" }, + "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for ththe sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", + "weight": "1400 g", + "volume": "1 L", + "price": "829 USD", + "to_hit": -2, + "bashing": 6, + "material": [ "steel", "plastic" ], + "color": "dark_gray", + "ammo": [ "44" ], + "dispersion": 300, + "barrel_volume": "23 ml", + "longest_side": "278 mm", + "durability": 8, + "clip_size": 6, + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "44": 6 }, + "allowed_speedloaders": [ "44_speedloader6" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/4440/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/4440/vaquero.json new file mode 100644 index 000000000..04f2c1db8 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/4440/vaquero.json @@ -0,0 +1,32 @@ +[ + { + "id": "vaquero4440", + "copy-from": "pistol_revolver", + "looks_like": "sw_619", + "type": "GUN", + "name": { "str": "Ruger Vaquero" }, + "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", + "weight": "1400 g", + "volume": "1 L", + "price": "829 USD", + "to_hit": -2, + "bashing": 6, + "material": [ "steel", "plastic" ], + "color": "dark_gray", + "ammo": [ "4440" ], + "dispersion": 300, + "barrel_volume": "24 ml", + "longest_side": "278 mm", + "durability": 8, + "clip_size": 6, + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "4440": 6 }, + "allowed_speedloaders": [ "4440_speedloader6" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/45/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/45/vaquero.json new file mode 100644 index 000000000..3219443b9 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/45/vaquero.json @@ -0,0 +1,32 @@ +[ + { + "id": "vaquero45", + "copy-from": "pistol_revolver", + "looks_like": "sw_619", + "type": "GUN", + "name": { "str": "Ruger Vaquero" }, + "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", + "weight": "1400 g", + "volume": "1 L", + "price": "829 USD", + "to_hit": -2, + "bashing": 6, + "material": [ "steel", "plastic" ], + "color": "dark_gray", + "ammo": [ "45" ], + "dispersion": 300, + "barrel_volume": "25 ml", + "longest_side": "278 mm", + "durability": 8, + "clip_size": 6, + "pocket_data": [ + { + "pocket_type": "MAGAZINE", + "holster": true, + "rigid": true, + "ammo_restriction": { "45": 6 }, + "allowed_speedloaders": [ "45_speedloader6" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/K6s.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/K6s.json deleted file mode 100644 index fb0fd3111..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/K6s.json +++ /dev/null @@ -1,24 +0,0 @@ -[ - { - "id": "K6s", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Kimber K6s" }, - "description": "The one and only revolver delvoped by Kimber Manufacturing. The K6s is a six-shot revolver chambered in .357. This revolver stands out for two reasons: it is extremly small and light and the hammer is inside of the gun and not sticking out of thr back.", - "weight": "652 g", - "volume": "1 L", - "price": "424 USD", - "to_hit": -2, - "bashing": 9, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "357mag" ], - "dispersion": 300, - "barrel_volume": "20 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "357mag": 6 } } ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/vaquero.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/vaquero.json deleted file mode 100644 index c9ee194e0..000000000 --- a/Kenan-Modpack/Locked_and_Loaded/items/guns/revolvers/vaquero.json +++ /dev/null @@ -1,112 +0,0 @@ -[ - { - "id": "vaquero357", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "357mag" ], - "dispersion": 300, - "durability": 8, - "barrel_volume": "16 ml", - "longest_side": "278 mm", - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "357mag": 6 } } ] - }, - { - "id": "vaquero38", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "38" ], - "dispersion": 300, - "barrel_volume": "16 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "38": 6 } } ] - }, - { - "id": "vaquero4440", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "4440" ], - "dispersion": 300, - "barrel_volume": "24 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "4440": 6 } } ] - }, - { - "id": "vaquero44", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for ththe sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "44" ], - "dispersion": 300, - "barrel_volume": "23 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "44": 6 } } ] - }, - { - "id": "vaquero45", - "copy-from": "pistol_revolver", - "looks_like": "sw_619", - "type": "GUN", - "name": { "str": "Ruger Vaquero" }, - "description": "The Ruger Vaquero is a six-shot single action revolver manufactured by Ruger. The revolver was made to meet the growing demand for the sport of Cowboy action shooting and can be commonly found in five diffrent calibers: 357 Magnum, .38, .44-40 Winchester, .44 and .45 S&W.", - "weight": "1400 g", - "volume": "1 L", - "price": "829 USD", - "to_hit": -2, - "bashing": 6, - "material": [ "steel", "plastic" ], - "color": "dark_gray", - "ammo": [ "45" ], - "dispersion": 300, - "barrel_volume": "25 ml", - "longest_side": "278 mm", - "durability": 8, - "clip_size": 6, - "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "45": 6 } } ] - } -] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/223/7615p.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/223/7615p.json new file mode 100644 index 000000000..870be59f6 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/223/7615p.json @@ -0,0 +1,45 @@ +[ + { + "id": "7615p", + "copy-from": "rifle_semi", + "type": "GUN", + "name": { "str": "Remington 7615 Patrol" }, + "description": "The Remington 7615 Patrol comes from the 7600 line. The 7615 accepts STANAG mags. The 7615 was made to used alongside the 870 shotgun line.", + "weight": "3400 g", + "volume": "3300 ml", + "longest_side": "947 mm", + "price": "1250 USD", + "to_hit": -1, + "bashing": 12, + "material": [ "steel", "wood" ], + "symbol": "(", + "color": "dark_gray", + "ammo": [ "223" ], + "dispersion": 150, + "durability": 7, + "min_cycle_recoil": 1350, + "pocket_data": [ + { + "pocket_type": "MAGAZINE_WELL", + "holster": true, + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "item_restriction": [ + "stanag30", + "stanag5", + "stanag10", + "stanag20", + "stanag40", + "stanag50", + "stanag60", + "stanag60drum", + "stanag90", + "stanag100", + "stanag100drum", + "stanag150", + "survivor223mag" + ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/3006/7600c.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/3006/7600c.json new file mode 100644 index 000000000..b2ed41d27 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/rifles/3006/7600c.json @@ -0,0 +1,31 @@ +[ + { + "id": "7600_3006", + "copy-from": "rifle_semi", + "type": "GUN", + "name": { "str": "Remington 7600 Carbine" }, + "description": "The Remington 7600 Crabine comes from the 7600 line. The Carbine version of the 7600 is the same to its' counterparts, save for the fact that it is chambered in .30-06 and has a 3.5 inch (9 cm) shorter barrel.", + "weight": "3400 g", + "volume": "3400 ml", + "longest_side": "1036 mm", + "price": "1250 USD", + "to_hit": -1, + "bashing": 12, + "material": [ "steel", "plastic" ], + "symbol": "(", + "color": "dark_gray", + "ammo": [ "3006" ], + "dispersion": 150, + "durability": 7, + "min_cycle_recoil": 1350, + "pocket_data": [ + { + "pocket_type": "MAGAZINE_WELL", + "holster": true, + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "item_restriction": [ "7600_3006_mag" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/guns/smg/22/american180.json b/Kenan-Modpack/Locked_and_Loaded/items/guns/smg/22/american180.json new file mode 100644 index 000000000..f3f212820 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/guns/smg/22/american180.json @@ -0,0 +1,50 @@ +[ + { + "id": "american180", + "looks_like": "hk_mp5", + "type": "GUN", + "reload_noise_volume": 10, + "name": { "str": "American 180" }, + "description": "The American 180 is a submachine gun chambered in .22LR. It gets its design from the more popular Thompson Submachine gun (Tommy gun for short). Due to the gun being chambered in .22LR there is very little recoil, as well as being able to have high capacity drum magazines.", + "weight": "2600 g", + "volume": "1230 ml", + "longest_side": "832 mm", + "price": "6000 USD", + "to_hit": -2, + "bashing": 8, + "material": [ "steel", "wood" ], + "symbol": "~", + "color": "brown", + "ammo": [ "22" ], + "skill": "smg", + "ranged_damage": { "damage_type": "bullet", "amount": 2 }, + "dispersion": 150, + "durability": 6, + "modes": [ [ "DEFAULT", "semi-auto", 1 ], [ "AUTO", "auto", 20 ] ], + "barrel_volume": "470 ml", + "valid_mod_locations": [ + [ "accessories", 3 ], + [ "barrel", 1 ], + [ "bore", 1 ], + [ "brass catcher", 1 ], + [ "grip", 1 ], + [ "mechanism", 4 ], + [ "muzzle", 1 ], + [ "rail", 1 ], + [ "sights", 1 ], + [ "sling", 1 ], + [ "stock", 1 ], + [ "underbarrel", 1 ] + ], + "pocket_data": [ + { + "magazine_well": "99 ml", + "pocket_type": "MAGAZINE_WELL", + "holster": true, + "max_contains_volume": "20 L", + "max_contains_weight": "20 kg", + "item_restriction": [ "american165", "american177", "american220", "american275" ] + } + ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/10/10custom.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/10/10custom.json new file mode 100644 index 000000000..c4e9957cf --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/10/10custom.json @@ -0,0 +1,37 @@ +[ +{ + "id": "kimber10_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom magazine" }, + "description": "A compact light-weight polymer magazine for use with a Kimber Custom, this one accpects seven rounds of 10mm.", + "weight": "105 g", + "volume": "250 ml", + "price": "29 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "10mm" ], + "capacity": 7, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "10mm": 7 } } ] + }, + { + "id": "kimber10big_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom extended magazine." }, + "description": "A 14-round extended magazine compatible with Kimber Customs, this one accepts 10mm.", + "weight": "210 g", + "volume": "500 ml", + "price": "35 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "10mm" ], + "capacity": 14, + "reload_time": 140, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "10mm": 14 } } ] + } + ] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/3006/7600c.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/3006/7600c.json new file mode 100644 index 000000000..e23f8c66a --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/3006/7600c.json @@ -0,0 +1,19 @@ +[ + { + "id": "7600_3006_mag", + "type": "MAGAZINE", + "name": { "str": "Remington 7600 Carbine magazine" }, + "description": "A magazine for a Remington 7600 Carbine, it can hold 4 rounds of .30-60.", + "weight": "140 g", + "volume": "200 ml", + "price": "80 USD", + "material": [ "steel" ], + "symbol": "#", + "color": "light_gray", + "looks_like": "8x40_50_mag", + "ammo_type": "3006", + "capacity": 4, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "3006": 4 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/38/38custom.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/38/38custom.json new file mode 100644 index 000000000..a7d14271f --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/38/38custom.json @@ -0,0 +1,37 @@ +[ + { + "id": "kimber38_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom magazine" }, + "description": "A compact light-weight polymer magazine for use with a Kimber Custom, this one accpects seven rounds of 38 Super.", + "weight": "105 g", + "volume": "250 ml", + "price": "29 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "38" ], + "capacity": 7, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "38": 7 } } ] + }, + { + "id": "kimber38big_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Cutsom extended magazine." }, + "description": "A 14-round extended magazine compatible with Kimber Customs, this one accepts 38 Super.", + "weight": "210 g", + "volume": "500 ml", + "price": "35 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "38" ], + "capacity": 14, + "reload_time": 140, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "38": 14 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/380/380custom.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/380/380custom.json new file mode 100644 index 000000000..da31ea4fb --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/380/380custom.json @@ -0,0 +1,20 @@ +[ +{ + "id": "Kimber_Micro_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Micro Magazine" }, + "description": "A seven round .380 magazine for the Kimber Micro.", + "weight": "1 g", + "volume": "100 ml", + "price": "35 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "380" ], + "capacity": 7, + "reload_time": 140, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "380": 7 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/40/custom40.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/40/custom40.json new file mode 100644 index 000000000..c2b2b4fa4 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/40/custom40.json @@ -0,0 +1,37 @@ +[ +{ + "id": "kimber40_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom magazine" }, + "description": "A compact light-weight polymer magazine for use with a Kimber Custom, this one accpects seven rounds of .40 S&W.", + "weight": "105 g", + "volume": "250 ml", + "price": "29 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "40" ], + "capacity": 7, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "40": 7 } } ] + }, + { + "id": "kimber40big_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom extended magazine." }, + "description": "A 14-round extended magazine compatible with Kimber Customs, this one accepts 40 S&W.", + "weight": "210 g", + "volume": "500 ml", + "price": "35 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "40" ], + "capacity": 14, + "reload_time": 140, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "40": 14 } } ] + } + ] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/4440/4440speedloader.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/4440/4440speedloader.json new file mode 100644 index 000000000..0f02d5de2 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/4440/4440speedloader.json @@ -0,0 +1,19 @@ +[ + { + "id": "4440_speedloader6", + "looks_like": "38_speedloader", + "type": "MAGAZINE", + "name": { "str": "44-40 Speedloader" }, + "description": "This speedloader can hold 6 rounds of 44-40 and quickly reload a compatible revolver.", + "weight": "98 g", + "volume": "250 ml", + "price": "16 USD", + "price_postapoc": "1 USD", + "material": [ "steel" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "4440" ], + "flags": [ "SPEEDLOADER" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "4440": 6 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45custom.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45custom.json new file mode 100644 index 000000000..1663d6573 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45custom.json @@ -0,0 +1,37 @@ +[ + { + "id": "kimber45_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom magazine" }, + "description": "A compact light-weight polymer magazine for use with a Kimber Custom, this one accpects seven rounds of .45 ACP.", + "weight": "105 g", + "volume": "250 ml", + "price": "29 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "45" ], + "capacity": 7, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "45": 7 } } ] + }, + { + "id": "kimber45big_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom extended magazine." }, + "description": "A 14-round extended magazine compatible with Kimber Customs, this one accepts .45 ACP.", + "weight": "210 g", + "volume": "500 ml", + "price": "35 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "45" ], + "capacity": 14, + "reload_time": 140, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "45": 14 } } ] + } + ] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45speedloader.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45speedloader.json new file mode 100644 index 000000000..d8a88376b --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/45speedloader.json @@ -0,0 +1,19 @@ +[ + { + "id": "45_speedloader6", + "looks_like": "38_speedloader", + "type": "MAGAZINE", + "name": { "str": ".45 Speedloader" }, + "description": "This speedloader can hold 6 rounds of 44-40 and quickly reload a compatible revolver.", + "weight": "98 g", + "volume": "250 ml", + "price": "16 USD", + "price_postapoc": "1 USD", + "material": [ "steel" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "45" ], + "flags": [ "SPEEDLOADER" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "45": 6 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/raptor_mag.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/raptor_mag.json new file mode 100644 index 000000000..5e4e91390 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/45/raptor_mag.json @@ -0,0 +1,19 @@ +[ + { + "id": "raptor_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Grand Raptor II Magazine" }, + "description": "A compact light-weight polymer magazine for use with a Kimber Grand Raptor II.", + "weight": "110 g", + "volume": "250 ml", + "price": "29 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "45" ], + "capacity": 8, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "45": 8 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/items/magazine/9mm/9custom.json b/Kenan-Modpack/Locked_and_Loaded/items/magazine/9mm/9custom.json new file mode 100644 index 000000000..b05fabf3a --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/items/magazine/9mm/9custom.json @@ -0,0 +1,37 @@ +[ + { + "id": "kimber9_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Custom magazine" }, + "description": "A compact light-weight polymer magazine for use with a Kimber Custom, this one accpects seven rounds of 9mm.", + "weight": "105 g", + "volume": "250 ml", + "price": "29 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "9mm" ], + "capacity": 7, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "9mm": 7 } } ] + }, + { + "id": "kimber9big_mag", + "looks_like": "glock17_17", + "type": "MAGAZINE", + "name": { "str": "Kimber Cutsom extended magazine." }, + "description": "A 14-round extended magazine compatible with Kimber Customs, this one accepts 9mm.", + "weight": "210 g", + "volume": "500 ml", + "price": "35 USD", + "material": [ "plastic" ], + "symbol": "#", + "color": "light_gray", + "ammo_type": [ "9mm" ], + "capacity": 14, + "reload_time": 140, + "flags": [ "MAG_COMPACT" ], + "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "9mm": 14 } } ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes.json b/Kenan-Modpack/Locked_and_Loaded/recipes/ammo.json similarity index 100% rename from Kenan-Modpack/Locked_and_Loaded/recipes.json rename to Kenan-Modpack/Locked_and_Loaded/recipes/ammo.json diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/22.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/22.json new file mode 100644 index 000000000..4e2b16743 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/22.json @@ -0,0 +1,62 @@ +[ + { + "result": "american165", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "22_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "american177", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 1 ], + "time": "25 m", + "autolearn": true, + "using": [ [ "22_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 2 ] ] ] + }, + { + "result": "american220", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 4, + "skills_required": [ "gun", 2 ], + "time": "29 m", + "autolearn": true, + "using": [ [ "22_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 3 ] ], [ [ "spring", 2 ] ] ] + }, + { + "result": "american275", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 4, + "skills_required": [ "gun", 2 ], + "time": "35 m", + "autolearn": true, + "using": [ [ "22_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 3 ] ], [ [ "spring", 3 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/300.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/300.json new file mode 100644 index 000000000..58280fa83 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/300.json @@ -0,0 +1,32 @@ +[ + { + "result": "AWM_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "300_casehead", 1 ], [ "welding_standard", 20 ] ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 2 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "RPR_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "300_casehead", 1 ], [ "welding_standard", 20 ] ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/408.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/408.json new file mode 100644 index 000000000..464f3cdb0 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/408.json @@ -0,0 +1,17 @@ +[ + { + "result": "CTI_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 1 ], + "time": "30 m", + "autolearn": true, + "using": [ [ "408_casehead", 1 ], [ "welding_standard", 30 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/45/raptor_mag.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/45/raptor_mag.json new file mode 100644 index 000000000..4bf261772 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/45/raptor_mag.json @@ -0,0 +1,17 @@ +[ + { + "result": "raptor_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 2 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 15 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/762.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/762.json new file mode 100644 index 000000000..168641a58 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/762.json @@ -0,0 +1,17 @@ +[ + { + "result": "SVD_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "45 m", + "autolearn": true, + "using": [ [ "762_casehead", 1 ], [ "welding_standard", 50 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/939.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/939.json new file mode 100644 index 000000000..f8c09a7d9 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/939.json @@ -0,0 +1,32 @@ +[ + { + "result": "VSS_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "939_casehead", 1 ], [ "welding_standard", 20 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "bigVSS_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 1 ], + "time": "30 m", + "autolearn": true, + "using": [ [ "939_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/9mm.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/9mm.json new file mode 100644 index 000000000..490340581 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/9mm.json @@ -0,0 +1,182 @@ +[ + { + "result": "93r_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 3 ], + "time": "25 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 20 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "93rbig_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "35 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 30 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "da10_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 2 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 20 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "da13_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 2 ], + "time": "25 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "da15_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "35 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 30 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "grach17_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 2 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 20 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "grach18_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "35 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 15 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "KP20_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "40 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 1 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "KP36_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "45 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 30 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "KP40_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 4, + "skills_required": [ "gun", 3 ], + "time": "50 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 50 ] ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "HAMMER", "level": 2 }, { "id": "SCREW_FINE", "level": 2 } ], + "components": [ [ [ "sheet_metal_small", 3 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "KP50_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 3, + "skills_required": [ "gun", 3 ], + "time": "35 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 55 ] ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "HAMMER", "level": 2 }, { "id": "SCREW_FINE", "level": 2 } ], + "components": [ [ [ "sheet_metal_small", 3 ] ], [ [ "spring", 1 ] ] ] + }, + { + "result": "KP71_mag", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 5, + "skills_required": [ "gun", 3 ], + "time": "65 m", + "autolearn": true, + "using": [ [ "9mm_casehead", 1 ], [ "welding_standard", 60 ] ], + "qualities": [ { "id": "SAW_M", "level": 2 }, { "id": "HAMMER", "level": 2 }, { "id": "SCREW_FINE", "level": 2 } ], + "components": [ [ [ "sheet_metal_small", 4 ] ], [ [ "spring", 2 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/recipes/mags/speedloader.json b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/speedloader.json new file mode 100644 index 000000000..64df3be05 --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/recipes/mags/speedloader.json @@ -0,0 +1,62 @@ +[ + { + "result": "38_speedloader6", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "38_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "wire", 2 ] ] ] + }, + { + "result": "44_speedloader6", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "44_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "wire", 2 ] ] ] + }, + { + "result": "4440_speedloader6", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "4440_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "wire", 2 ] ] ] + }, + { + "result": "45_speedloader6", + "type": "recipe", + "activity_level": "LIGHT_EXERCISE", + "category": "CC_WEAPON", + "subcategory": "CSC_WEAPON_MAGAZINES", + "skill_used": "fabrication", + "difficulty": 2, + "skills_required": [ "gun", 1 ], + "time": "20 m", + "autolearn": true, + "using": [ [ "45_casehead", 1 ], [ "welding_standard", 25 ] ], + "qualities": [ { "id": "SAW_M", "level": 1 }, { "id": "HAMMER", "level": 1 }, { "id": "SCREW_FINE", "level": 1 } ], + "components": [ [ [ "sheet_metal_small", 2 ] ], [ [ "wire", 2 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/requirment/ammo.json b/Kenan-Modpack/Locked_and_Loaded/requirment/ammo.json new file mode 100644 index 000000000..a54a284dd --- /dev/null +++ b/Kenan-Modpack/Locked_and_Loaded/requirment/ammo.json @@ -0,0 +1,84 @@ +[ + { + "id": "145114_casehead", + "type": "requirement", + "tools": [ [ [ "145114_casing", -1 ], [ "145114", -1 ], [ "reloaded_145114", -1 ] ] ] + }, + { + "id": "300_casehead", + "type": "requirement", + "tools": [ [ [ "300_casing", -1 ], [ "300_winmag", -1 ], [ "reloaded_300_winmag", -1 ] ] ] + }, + { + "id": "338_casehead", + "type": "requirement", + "tools": [ [ [ "338_casing", -1 ], [ "338", -1 ], [ "reloaded_338", -1 ] ] ] + }, + { + "id": "408_casehead", + "type": "requirement", + "tools": [ [ [ "408_casing", -1 ], [ "408", -1 ], [ "reloaded_408", -1 ] ] ] + }, + { + "id": "55645_casehead", + "type": "requirement", + "tools": [ [ [ "5842_casing", -1 ], [ "55645", -1 ], [ "reloaded_55645", -1 ] ] ] + }, + { + "id": "5842_casehead", + "type": "requirement", + "tools": [ [ [ "5842_casing", -1 ], [ "5842", -1 ], [ "5842h", -1 ], [ "reloaded_5842", -1 ], [ "reloaded_5842h", -1 ] ] ] + }, + { + "id": "792_casehead", + "type": "requirement", + "tools": [ [ [ "792_casing", -1 ], [ "792", -1 ], [ "reloaded_792", -1 ] ] ] + }, + { + "id": "939_casehead", + "type": "requirement", + "tools": [ [ [ "939_casing", -1 ], [ "939", -1 ], [ "9396", -1 ], [ "reloaded_939", -1 ], [ "reloaded_939", -1 ] ] ] + }, + { + "id": "9mm_casehead", + "type": "requirement", + "tools": [ + [ + [ "9mm_casing", -1 ], + [ "9mm", -1 ], + [ "9mmfmj", -1 ], + [ "9mmP", -1 ], + [ "9mmP2", -1 ], + [ "reloaded_9mm", -1 ], + [ "reloaded_9mmfmj", -1 ], + [ "reloaded_9mmP", -1 ], + [ "reloaded_9mmP2", -1 ] + ] + ] + }, + { + "id": "38_casehead", + "type": "requirement", + "tools": [ + [ + [ "38_casing", -1 ], + [ "38_fmj", -1 ], + [ "38_special", -1 ], + [ "38_super", -1 ], + [ "reloaded_38_fmj", -1 ], + [ "reloaded_38_special", -1 ], + [ "reloaded_38_super", -1 ] + ] + ] + }, + { + "id": "44_casehead", + "type": "requirement", + "tools": [ [ [ "44_casing", -1 ], [ "44magnum", -1 ], [ "44fmj", -1 ], [ "reloaded_44fmj", -1 ], [ "reloaded_44magnum", -1 ] ] ] + }, + { + "id": "4440_casehead", + "type": "requirement", + "tools": [ [ [ "4440_casing", -1 ], [ "4440", -1 ], [ "reloaded_4440", -1 ] ] ] + } +] diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/145114.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/145114.json index 4a5c79742..41f4d650a 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/145114.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/145114.json @@ -2,7 +2,7 @@ { "result": "145114", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "time": "5 s", "qualities": [ { "id": "PULL", "level": 1 } ], "components": [ [ [ "lead", 5 ] ], [ [ "145114_casing", 1 ] ], [ [ "lgrifle_primer", 1 ] ], [ [ "gunpowder_large_rifle", 45 ] ] ], diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3220.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3220.json index 0ee14fabb..313ca9ed3 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3220.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3220.json @@ -2,7 +2,7 @@ { "result": "3220", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "time": "5 s", "qualities": [ { "id": "PULL", "level": 1 } ], "components": [ [ [ "lead", 3 ] ], [ [ "3220_casing", 1 ] ], [ [ "smpistol_primer", 1 ] ], [ [ "gunpowder_magnum_pistol", 3 ] ] ], diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/338.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/338.json index f6c908877..5a1be2ea5 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/338.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/338.json @@ -2,7 +2,7 @@ { "result": "338", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3840.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3840.json index 771f02db2..27efebc27 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3840.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/3840.json @@ -2,7 +2,7 @@ { "result": "3840", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "time": "5 s", "qualities": [ { "id": "PULL", "level": 1 } ], "components": [ [ [ "lead", 3 ] ], [ [ "4440_casing", 1 ] ], [ [ "smpistol_primer", 1 ] ], [ [ "gunpowder_magnum_pistol", 4 ] ] ], diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/408.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/408.json index ab3b17c0a..4db61511c 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/408.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/408.json @@ -2,7 +2,7 @@ { "result": "408", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/4440.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/4440.json index d43cf6d35..526ef8610 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/4440.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/4440.json @@ -2,7 +2,7 @@ { "result": "4440", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "time": "5 s", "qualities": [ { "id": "PULL", "level": 1 } ], "components": [ [ [ "lead", 3 ] ], [ [ "4440_casing", 1 ] ], [ [ "smpistol_primer", 1 ] ], [ [ "gunpowder_magnum_pistol", 4 ] ] ], diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/44h.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/44h.json index 7c536426a..c329b600c 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/44h.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/44h.json @@ -2,7 +2,7 @@ { "result": "44h", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 3, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/55645.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/55645.json index e7a055178..b98dc9f51 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/55645.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/55645.json @@ -2,7 +2,7 @@ { "result": "55645", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/5842.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/5842.json index bf0fcf70b..1d943d8a5 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/5842.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/5842.json @@ -2,7 +2,7 @@ { "result": "5842", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", @@ -19,7 +19,7 @@ { "result": "5842h", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/792.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/792.json index 7589ebd59..052f58a90 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/792.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/792.json @@ -2,7 +2,7 @@ { "result": "792", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/939.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/939.json index 6ba091486..a8e2f760b 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/939.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/939.json @@ -2,7 +2,7 @@ { "result": "939", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", @@ -19,7 +19,7 @@ { "result": "9396", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/950.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/950.json index 369753ed9..d9e9b2fbd 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/950.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/950.json @@ -2,7 +2,7 @@ { "result": "950", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "5 s", diff --git a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/shot/12_gauge.json b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/shot/12_gauge.json index 9d2286d45..ad0d2fbd3 100644 --- a/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/shot/12_gauge.json +++ b/Kenan-Modpack/Locked_and_Loaded/uncraft/ammo/shot/12_gauge.json @@ -2,7 +2,7 @@ { "result": "shot_00", "type": "uncraft", - "activity_level": "MODERATE_EXERCISE", + "activity_level": "LIGHT_EXERCISE", "skill_used": "gun", "difficulty": 5, "time": "1 s",