diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-03-10 16:15:42 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-03-10 16:15:42 -0800 |
commit | dd3a03e0872ae8e84313c85126619ad3167b9c7e (patch) | |
tree | 515ce35a1cf85f151bc660b95eee4be1c5980e36 /json/itemgroups | |
download | cataclysm-bn-mod_m26-mass-dd3a03e0872ae8e84313c85126619ad3167b9c7e.tar.xz |
Initial commit
Diffstat (limited to 'json/itemgroups')
-rw-r--r-- | json/itemgroups/Weapons_Mods_Ammo/gunmod.json | 10 | ||||
-rw-r--r-- | json/itemgroups/Weapons_Mods_Ammo/magazines.json | 11 | ||||
-rw-r--r-- | json/itemgroups/military.json | 10 |
3 files changed, 31 insertions, 0 deletions
diff --git a/json/itemgroups/Weapons_Mods_Ammo/gunmod.json b/json/itemgroups/Weapons_Mods_Ammo/gunmod.json new file mode 100644 index 0000000..b6bcce8 --- /dev/null +++ b/json/itemgroups/Weapons_Mods_Ammo/gunmod.json @@ -0,0 +1,10 @@ +[ + { + "type": "item_group", + "id": "gunmod_milspec", + "//": "Military specification gunmods found only at military sites.", + "items": [ + [ "m26_mass", 10 ] + ] + } +] diff --git a/json/itemgroups/Weapons_Mods_Ammo/magazines.json b/json/itemgroups/Weapons_Mods_Ammo/magazines.json new file mode 100644 index 0000000..94959c9 --- /dev/null +++ b/json/itemgroups/Weapons_Mods_Ammo/magazines.json @@ -0,0 +1,11 @@ +[ + { + "type": "item_group", + "id": "mags_milspec", + "//": "Current military specification magazines.", + "items": [ + [ "m26_mass_mag", 10 ], + [ "m26_mass_mag_big", 5 ] + ] + } +] diff --git a/json/itemgroups/military.json b/json/itemgroups/military.json new file mode 100644 index 0000000..0abea8c --- /dev/null +++ b/json/itemgroups/military.json @@ -0,0 +1,10 @@ +[ + { + "type": "item_group", + "id": "military", + "subtype": "distribution", + "entries": [ + { "item": "m26_mass", "prob": 2 } + ] + } +] |