diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2020-11-03 19:52:51 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2020-11-03 19:52:51 -0800 |
commit | a92fb76848754f9e732e57b7f73f22bb40d67118 (patch) | |
tree | 83e59e238b190d1867e182be653381112328e27b /json | |
parent | Add CAWS description (diff) | |
download | cataclysm-bn-mod_hk-loadout-a92fb76848754f9e732e57b7f73f22bb40d67118.tar.xz |
Add 000shot drops
Adjust drop rates for other items
Diffstat (limited to 'json')
-rw-r--r-- | json/itemgroups/Weapons_Mods_Ammo/ammo.json | 21 | ||||
-rw-r--r-- | json/itemgroups/Weapons_Mods_Ammo/guns.json | 4 | ||||
-rw-r--r-- | json/itemgroups/Weapons_Mods_Ammo/magazines.json | 5 | ||||
-rw-r--r-- | json/itemgroups/military.json | 13 |
4 files changed, 33 insertions, 10 deletions
diff --git a/json/itemgroups/Weapons_Mods_Ammo/ammo.json b/json/itemgroups/Weapons_Mods_Ammo/ammo.json index 6c311ca..6d6f8a6 100644 --- a/json/itemgroups/Weapons_Mods_Ammo/ammo.json +++ b/json/itemgroups/Weapons_Mods_Ammo/ammo.json @@ -5,7 +5,26 @@ "//": "Military specification rifle ammo found at military sites.", "subtype": "distribution", "entries": [ - { "item": "473x33mm", "prob": 30 } + { "item": "473x33mm", "prob": 35 } + ] + }, + { + "type": "item_group", + "id": "ammo_shotgun_rare", + "//": "Less common shotgun ammo including that only used by police/paramilitary forces.", + "subtype": "distribution", + "entries": [ + { "item": "shot_000", "prob": 40 }, + { "item": "shot_000_slug", "prob": 20 } + ] + }, + { + "type": "item_group", + "id": "ammo_shotgun_milspec", + "//": "Military specification shotgun ammo found at military sites.", + "subtype": "distribution", + "entries": [ + { "item": "shot_000_flechette", "prob": 100 }, ] } ] diff --git a/json/itemgroups/Weapons_Mods_Ammo/guns.json b/json/itemgroups/Weapons_Mods_Ammo/guns.json index abf179e..9b8d511 100644 --- a/json/itemgroups/Weapons_Mods_Ammo/guns.json +++ b/json/itemgroups/Weapons_Mods_Ammo/guns.json @@ -20,7 +20,7 @@ "id": "guns_pistol_milspec", "//": "Military specification pistols only ever found at military sites.", "items": [ - { "item": "hk_ucp", "prob": 5, "charges-min": 0, "charges-max": 20 } + { "item": "hk_ucp", "prob": 35, "charges-min": 0, "charges-max": 20 } ] }, { @@ -45,7 +45,7 @@ "//": "Military specification rifles only ever found at military sites.", "items": [ { "item": "hk_msg90a2", "prob": 15, "charges-min": 0, "charges-max": 20 }, - { "item": "hk_g11", "prob": 10, "charges-min": 0, "charges-max": 50 } + { "item": "hk_g11", "prob": 30, "charges-min": 0, "charges-max": 50 } ] }, { diff --git a/json/itemgroups/Weapons_Mods_Ammo/magazines.json b/json/itemgroups/Weapons_Mods_Ammo/magazines.json index ff7eb00..430c4f7 100644 --- a/json/itemgroups/Weapons_Mods_Ammo/magazines.json +++ b/json/itemgroups/Weapons_Mods_Ammo/magazines.json @@ -4,8 +4,9 @@ "id": "mags_milspec", "//": "Current military specification magazines.", "items": [ - [ "hk_g11_mag", 10 ], - [ "hk_caws_mag", 10 ] + [ "hk_g11_mag", 20 ], + [ "hk_caws_mag", 15 ], + [ "hk_caws_belt", 10 ] ] }, { diff --git a/json/itemgroups/military.json b/json/itemgroups/military.json index 48791c1..a492048 100644 --- a/json/itemgroups/military.json +++ b/json/itemgroups/military.json @@ -4,13 +4,16 @@ "id": "military", "subtype": "distribution", "entries": [ - { "item": "hk_ucp", "prob": 2 }, - { "item": "hk_mp7", "prob": 5 }, + { "item": "hk_ucp", "prob": 7 }, + { "item": "hk_mp7", "prob": 7 }, { "item": "46mm", "prob": 7 }, - { "item": "hk_g11", "prob": 5 }, - { "item": "hk_caws", "prob": 2 }, + { "item": "hk_g11", "prob": 7 }, + { "item": "hk_caws", "prob": 5 }, + { "item": "shot_000", "prob": 5 }, + { "item": "shot_000_flechette", "prob": 5 }, + { "item": "shot_000_slug", "prob": 5 }, { "item": "473x33mm", "prob": 7 }, - { "item": "hk_msg90a2", "prob": 7 } + { "item": "hk_msg90a2", "prob": 5 } ] } ] |