From ad9e23e51e25847192867bdd991265822b978b07 Mon Sep 17 00:00:00 2001 From: AbsFree Date: Tue, 17 Dec 2024 13:28:25 +0100 Subject: [PATCH] upgraded belts --- code/game/objects/items/storage/belt.dm | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 9c62143fe9..7db2d75ada 100755 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -49,6 +49,9 @@ /obj/item/storage/belt/utility/ComponentInitialize() . = ..() var/datum/component/storage/STR = GetComponent(/datum/component/storage) + STR.max_items = 11 + STR.max_w_class = WEIGHT_CLASS_NORMAL + STR.max_combined_w_class = 24 var/static/list/can_hold = typecacheof(list( /obj/item/crowbar, /obj/item/screwdriver, @@ -148,6 +151,9 @@ . = ..() var/datum/component/storage/STR = GetComponent(/datum/component/storage) STR.max_w_class = WEIGHT_CLASS_BULKY + STR.max_items = 11 + STR.max_w_class = WEIGHT_CLASS_NORMAL + STR.max_combined_w_class = 24 STR.can_hold = typecacheof(list( /obj/item/healthanalyzer, /obj/item/dnainjector, @@ -470,8 +476,8 @@ /obj/item/storage/belt/durathread/ComponentInitialize() . = ..() var/datum/component/storage/STR = GetComponent(/datum/component/storage) - STR.max_items = 14 - STR.max_combined_w_class = 32 + STR.max_items = 20 + STR.max_combined_w_class = 36 STR.max_w_class = WEIGHT_CLASS_NORMAL STR.can_hold = typecacheof(list( /obj/item/crowbar, @@ -492,13 +498,19 @@ /obj/item/forcefield_projector, /obj/item/assembly/signaler, /obj/item/lightreplacer, + /obj/item/pipe_dispenser, + /obj/item/inducer, + /obj/item/grenade/chem_grenade/smart_metal_foam, + /obj/item/grenade/chem_grenade/metalfoam, + /obj/item/carpentry/handsaw, + /obj/item/carpentry/hammer, + /obj/item/carpentry/glue, + /obj/item/carpentry/borer, + /obj/item/carpentry/sandpaper /obj/item/rcd_ammo, /obj/item/construction, - /obj/item/pipe_dispenser, /obj/item/stack/rods, /obj/item/stack/tile/plasteel, - /obj/item/grenade/chem_grenade/metalfoam, - /obj/item/grenade/chem_grenade/smart_metal_foam )) /obj/item/storage/belt/grenade