From 32e023b85e75bbaf8c94dbf437516db242030859 Mon Sep 17 00:00:00 2001 From: matttheficus <57759731+matttheficus@users.noreply.github.com> Date: Sat, 12 Aug 2023 13:23:53 -0400 Subject: [PATCH] Adds Basic Observer Outfits for Admin/Testing Use (#21846) * admin outfits * swap to bag * space oopsie Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * contra + lewcc reviews * copy paste moment --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --- code/datums/outfits/outfit_admin.dm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/code/datums/outfits/outfit_admin.dm b/code/datums/outfits/outfit_admin.dm index 70c3f6a1fe8..6b7ee20b241 100644 --- a/code/datums/outfits/outfit_admin.dm +++ b/code/datums/outfits/outfit_admin.dm @@ -1354,3 +1354,30 @@ if(istype(I)) apply_to_card(I, H, list(ACCESS_CLOWN), "Emergency Response Clown") H.sec_hud_set_ID() + +/datum/outfit/admin/observer + name = "Observer" + + uniform = /obj/item/clothing/under/costume/tourist_suit + back = /obj/item/storage/backpack/satchel + shoes = /obj/item/clothing/shoes/black + box = /obj/item/storage/box/survival + backpack_contents = list( + /obj/item/implanter/dust = 1 + ) + +/datum/outfit/admin/observer/plasmaman + name = "Observer (Plasma)" + + uniform = /obj/item/clothing/under/plasmaman/assistant + head = /obj/item/clothing/head/helmet/space/plasmaman/assistant + mask = /obj/item/clothing/mask/breath + belt = /obj/item/tank/internals/plasmaman/belt/full + box = /obj/item/storage/box/survival_plasmaman + +/datum/outfit/admin/observer/vox + name = "Observer (Vox)" + + mask = /obj/item/clothing/mask/breath/vox + belt = /obj/item/tank/internals/emergency_oxygen/double/vox + box = /obj/item/storage/box/survival_vox