From 3844c8de0c7ee46517fce0bf56f7f71f821db5b3 Mon Sep 17 00:00:00 2001 From: Theos Date: Tue, 3 Dec 2024 08:14:48 -0500 Subject: [PATCH] Adds the assault belt to cargo (#3861) ## About The Pull Request Returns the assault belt to cargo for 500 credits which is a number I pulled out of my assault belt The assault belt holds 6 small or tiny items with no themed restrictions ## Why It's Good For The Game Reduces storage reliance on backpacks very slightly & makes storing guns on the back slot a little more viable ## Changelog :cl: add: The assault belt has been freed from its SWAT suit prison and is now purchasable in cargo /:cl: Signed-off-by: Theos --- code/modules/cargo/packs/tools.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/cargo/packs/tools.dm b/code/modules/cargo/packs/tools.dm index 830746d96fa4..e4996761976a 100644 --- a/code/modules/cargo/packs/tools.dm +++ b/code/modules/cargo/packs/tools.dm @@ -39,6 +39,13 @@ /obj/item/clothing/glasses/meson/engine) crate_name = "engineering gear crate" +/datum/supply_pack/tools/assbelt + name = "Assault Belt" + desc = "Contains an assault belt, with not one, not two, but six pockets." + cost = 500 + contains = list(/obj/item/storage/belt/military/assault) + crate_name = "assault belt crate" + /datum/supply_pack/tools/cellcharger name = "Cell Charger Crate" desc = "Contains a cell charger, able to charge all sorts of power cells."