summaryrefslogtreecommitdiff
path: root/json/itemgroups
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-01-14 17:17:52 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-01-14 17:17:52 -0800
commit5ebe4e29a5f3e11f52dad9d20953b33f94597bf8 (patch)
tree8cc5d84d45cfc9ae40d32dda4e9459e09d11d8f3 /json/itemgroups
downloadcataclysm-bn-mod_packed-at4-5ebe4e29a5f3e11f52dad9d20953b33f94597bf8.tar.xz
Initial commit
Diffstat (limited to 'json/itemgroups')
-rw-r--r--json/itemgroups/Weapons_Mods_Ammo/guns.json10
-rw-r--r--json/itemgroups/main.json10
-rw-r--r--json/itemgroups/military.json10
3 files changed, 30 insertions, 0 deletions
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 }
+ ]
+ }
+]