diff --git a/code/game/objects/structures/machinery/suit_cycler_units.dm b/code/game/objects/structures/machinery/suit_cycler_units.dm index f4572c7423e..f7aa37a40ba 100644 --- a/code/game/objects/structures/machinery/suit_cycler_units.dm +++ b/code/game/objects/structures/machinery/suit_cycler_units.dm @@ -395,3 +395,10 @@ species = list(BODYTYPE_HUMAN, BODYTYPE_TAJARA) suit = /obj/item/clothing/suit/space/void/engineering/himeo helmet = /obj/item/clothing/head/helmet/space/void/engineering/himeo + +/obj/structure/machinery/suit_cycler/offship/outereyes + model_text = "Outer Eyes" + departments = list("Outer Eyes") + suit = /obj/item/clothing/suit/space/void/outereyes + helmet = /obj/item/clothing/head/helmet/space/void/outereyes + species = list(BODYTYPE_HUMAN, BODYTYPE_TAJARA, BODYTYPE_UNATHI, BODYTYPE_SKRELL) diff --git a/code/modules/clothing/spacesuits/void/misc.dm b/code/modules/clothing/spacesuits/void/misc.dm index c6770588f62..59782ecbd9b 100644 --- a/code/modules/clothing/spacesuits/void/misc.dm +++ b/code/modules/clothing/spacesuits/void/misc.dm @@ -1144,6 +1144,8 @@ RAD = ARMOR_RAD_SMALL ) species_restricted = list(BODYTYPE_HUMAN) + icon_supported_species_tags = list("taj", "una", "skr") + refittable_species = list(BODYTYPE_HUMAN, BODYTYPE_TAJARA, BODYTYPE_UNATHI, BODYTYPE_SKRELL) slowdown = 0.5 allowed = list(/obj/item/flashlight,/obj/item/tank,/obj/item/suit_cooling_unit,/obj/item/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/melee/baton,/obj/item/melee/energy/sword,/obj/item/handcuffs) siemens_coefficient = 0.35 @@ -1166,6 +1168,8 @@ RAD = ARMOR_RAD_SMALL ) species_restricted = list(BODYTYPE_HUMAN) + icon_supported_species_tags = list("taj", "una", "skr") + refittable_species = list(BODYTYPE_HUMAN, BODYTYPE_TAJARA, BODYTYPE_UNATHI, BODYTYPE_SKRELL) contained_sprite = TRUE light_overlay = "helmet_light_outer_eyes" light_range = 6 diff --git a/html/changelogs/ElorgRHG-outer-eyes-diversity-hires.yml b/html/changelogs/ElorgRHG-outer-eyes-diversity-hires.yml new file mode 100644 index 00000000000..c288daa8def --- /dev/null +++ b/html/changelogs/ElorgRHG-outer-eyes-diversity-hires.yml @@ -0,0 +1,15 @@ +# Your name. +author: ElorgRHG + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added species variants to the Outer Eyes voidsuit." + - rscadd: "Added an Outer Eyes suit cycler." + - imageadd: "Added a proper object sprite to the Outer Eyes voidsuit helmet." diff --git a/icons/obj/clothing/voidsuit/outereyes.dmi b/icons/obj/clothing/voidsuit/outereyes.dmi index e2b5d7a3f31..bad7c242c2c 100644 Binary files a/icons/obj/clothing/voidsuit/outereyes.dmi and b/icons/obj/clothing/voidsuit/outereyes.dmi differ