From 5ebe4e29a5f3e11f52dad9d20953b33f94597bf8 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Fri, 14 Jan 2022 17:17:52 -0800 Subject: Initial commit --- json/itemgroups/Weapons_Mods_Ammo/guns.json | 10 ++++++++++ json/itemgroups/main.json | 10 ++++++++++ json/itemgroups/military.json | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 json/itemgroups/Weapons_Mods_Ammo/guns.json create mode 100644 json/itemgroups/main.json create mode 100644 json/itemgroups/military.json (limited to 'json/itemgroups') diff --git a/json/itemgroups/Weapons_Mods_Ammo/guns.json b/json/itemgroups/Weapons_Mods_Ammo/guns.json new file mode 100644 index 0000000..331175f --- /dev/null +++ b/json/itemgroups/Weapons_Mods_Ammo/guns.json @@ -0,0 +1,10 @@ +[ + { + "type": "item_group", + "id": "guns_launcher_rocket", + "//": "Factory manufactured rocket launchers (excludes improvised weapons)", + "items": [ + [ "AT4_Packed", 150 ] + ] + } +] diff --git a/json/itemgroups/main.json b/json/itemgroups/main.json new file mode 100644 index 0000000..ed0ea3c --- /dev/null +++ b/json/itemgroups/main.json @@ -0,0 +1,10 @@ +[ + { + "type": "item_group", + "id": "launchers", + "subtype": "distribution", + "entries": [ + { "item": "AT4_Packed", "prob": 60 } + ] + } +] diff --git a/json/itemgroups/military.json b/json/itemgroups/military.json new file mode 100644 index 0000000..82364b1 --- /dev/null +++ b/json/itemgroups/military.json @@ -0,0 +1,10 @@ +[ + { + "type": "item_group", + "id": "military", + "subtype": "distribution", + "entries": [ + { "item": "AT4_Packed", "prob": 20 } + ] + } +] -- cgit v1.2.1