From 9784d04d99bf0b24f9f53e3add1981d55ce1fb98 Mon Sep 17 00:00:00 2001 From: Ebb-Real <95765134+Ebb-Real@users.noreply.github.com> Date: Mon, 14 Mar 2022 12:03:08 +0100 Subject: [PATCH] Belt sprites for the syndie screwdriver and alien tools (#65400) * update * makes the alien toolbelt use the sprites * Revert "makes the alien toolbelt use the sprites" This reverts commit caea9f52741e4f1553f3b3812336b3a4a235b6aa. * Revert "Revert "makes the alien toolbelt use the sprites"" This reverts commit c60276e7aac93169a036bfe0bc42fb9c736d1d99. * please check gods * check pass? * forgot that * tabs --- code/game/objects/items/devices/multitool.dm | 1 + code/game/objects/items/storage/belt.dm | 1 + code/game/objects/items/theft_tools.dm | 3 +++ code/game/objects/items/tools/crowbar.dm | 1 + code/game/objects/items/tools/screwdriver.dm | 2 +- code/game/objects/items/tools/wrench.dm | 1 + icons/obj/clothing/belt_overlays.dmi | Bin 3622 -> 4025 bytes 7 files changed, 8 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 7aa675e3cde..e91811ac91d 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -167,6 +167,7 @@ desc = "An omni-technological interface." icon = 'icons/obj/abductor.dmi' icon_state = "multitool" + belt_icon_state = "multitool_alien" custom_materials = list(/datum/material/iron = 5000, /datum/material/silver = 2500, /datum/material/plasma = 5000, /datum/material/titanium = 2000, /datum/material/diamond = 2000) toolspeed = 0.1 diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index e29889fe601..51ee5d39375 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -530,6 +530,7 @@ icon_state = "belt" inhand_icon_state = "security" worn_icon_state = "security" + content_overlays = TRUE /obj/item/storage/belt/military/abductor/full/PopulateContents() new /obj/item/screwdriver/abductor(src) diff --git a/code/game/objects/items/theft_tools.dm b/code/game/objects/items/theft_tools.dm index 7e5c31d1bdc..90a30db3176 100644 --- a/code/game/objects/items/theft_tools.dm +++ b/code/game/objects/items/theft_tools.dm @@ -94,6 +94,9 @@ greyscale_config_inhand_left = null greyscale_config_inhand_right = null +/obj/item/screwdriver/nuke/get_belt_overlay() + return mutable_appearance('icons/obj/clothing/belt_overlays.dmi', "screwdriver_nuke") + /obj/item/paper/guides/antag/nuke_instructions info = "How to break into a Nanotrasen self-destruct terminal and remove its plutonium core:
\