From d8e64a780ae6d3ac843b69eeb38d53d04ee83f78 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Thu, 9 Nov 2023 09:39:51 -0800 Subject: Flag c4 and handflares as grenade so they can be carried in a grenade pouch. Lower the volume of a glowstick. --- json/items/tool/explosive.json | 3 ++- json/items/tool/lighting.json | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 json/items/tool/lighting.json diff --git a/json/items/tool/explosive.json b/json/items/tool/explosive.json index 0c8033c..138da95 100644 --- a/json/items/tool/explosive.json +++ b/json/items/tool/explosive.json @@ -20,7 +20,8 @@ "material": [ "plastic" ], "symbol": ";", "color": "light_gray", - "use_action": "C4" + "use_action": "C4", + "flags": [ "GRENADE" ] }, { "id": "c4armed", diff --git a/json/items/tool/lighting.json b/json/items/tool/lighting.json new file mode 100644 index 0000000..c076b27 --- /dev/null +++ b/json/items/tool/lighting.json @@ -0,0 +1,18 @@ +[ + { + "id": "handflare", + "copy-from": "handflare", + "type": "TOOL", + "category": "tools", + "name": { "str": "flare" }, + "flags": [ "GRENADE" ] + }, + { + "id": "glowstick", + "copy-from": "glowstick", + "type": "TOOL", + "category": "tools", + "name": { "str": "glowstick" }, + "volume": "70 ml" + } +] -- cgit v1.2.1