diff --git a/code/game/objects/items/tools/multitool.dm b/code/game/objects/items/tools/multitool.dm index 55af0d61edd..12f17936765 100644 --- a/code/game/objects/items/tools/multitool.dm +++ b/code/game/objects/items/tools/multitool.dm @@ -95,6 +95,13 @@ detect_state = PROXIMITY_NEAR break +/obj/item/multitool/red + name = "Suspicious Multitool" + desc = "A sinister-looking multitool, used for pulsing wires to test which to cut." + icon_state = "multitool_syndi" + toolspeed = 0.95 // dangerously fast... not like multitools use speed anyways + origin_tech = "magnets=1;engineering=2,syndicate=1" + /obj/item/multitool/ai_detect/admin desc = "Used for pulsing wires to test which to cut. Not recommended by doctors. Has a strange tag that says 'Grief in Safety'" //What else should I say for a meme item? track_delay = 5 diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm index f159d136a02..b30b222c6e9 100644 --- a/code/game/objects/items/weapons/storage/toolbox.dm +++ b/code/game/objects/items/weapons/storage/toolbox.dm @@ -109,7 +109,7 @@ new /obj/item/weldingtool/largetank(src) new /obj/item/crowbar/red(src) new /obj/item/wirecutters(src, "red") - new /obj/item/multitool(src) + new /obj/item/multitool/red(src) new /obj/item/clothing/gloves/combat(src) /obj/item/storage/toolbox/fakesyndi diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 0380cfd40ea..b4fdce4ce28 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ