From 1f2b29bd80e54c7548a6bc08c6c3c66b3301fea7 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Wed, 7 Sep 2022 08:39:23 -0400 Subject: [PATCH] style changes (#18964) --- code/game/objects/items/weapons/storage/belt.dm | 15 +++++++++++++++ code/modules/ruins/syndicate_space_base.dm | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index a060f397eda..f4dc545880d 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -108,6 +108,21 @@ update_icon() //much roomier now that we've managed to remove two tools +/obj/item/storage/belt/utility/syndi_researcher // A cool looking belt thats essentially a syndicate toolbox + desc = "A belt for holding tools, but with style." + icon_state = "assaultbelt" + item_state = "assault" + +/obj/item/storage/belt/utility/syndi_researcher/populate_contents() + new /obj/item/screwdriver(src, "red") + new /obj/item/wrench(src) + new /obj/item/weldingtool/largetank(src) + new /obj/item/crowbar/red(src) + new /obj/item/wirecutters(src, "red") + new /obj/item/multitool/red(src) + new /obj/item/stack/cable_coil(src, 30, COLOR_RED) + update_icon() + /obj/item/storage/belt/medical name = "medical belt" desc = "Can hold various medical equipment." diff --git a/code/modules/ruins/syndicate_space_base.dm b/code/modules/ruins/syndicate_space_base.dm index 3e91e294b70..25a04586296 100644 --- a/code/modules/ruins/syndicate_space_base.dm +++ b/code/modules/ruins/syndicate_space_base.dm @@ -49,12 +49,12 @@ gloves = /obj/item/clothing/gloves/combat r_ear = /obj/item/radio/headset/syndicate/alt/nocommon // See del_types above back = /obj/item/storage/backpack - belt = /obj/item/storage/belt/utility/full/multitool + belt = /obj/item/storage/belt/utility/syndi_researcher r_pocket = /obj/item/gun/projectile/automatic/pistol id = /obj/item/card/id/syndicate/researcher backpack_contents = list( /obj/item/ammo_box/magazine/m10mm = 1, - /obj/item/flashlight = 1, + /obj/item/flashlight/seclite = 1, /obj/item/clothing/mask/gas/syndicate = 1, /obj/item/tank/internals/emergency_oxygen/engi/syndi = 1 )