diff --git a/icons/mob/clothing/custom_w.dmi b/icons/mob/clothing/custom_w.dmi index 418db3f9e9..18e07f41ed 100644 Binary files a/icons/mob/clothing/custom_w.dmi and b/icons/mob/clothing/custom_w.dmi differ diff --git a/icons/obj/custom.dmi b/icons/obj/custom.dmi index f15adfa85a..50f536d1d3 100644 Binary files a/icons/obj/custom.dmi and b/icons/obj/custom.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 5add1e3f87..bb9162789e 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -511,6 +511,12 @@ path = /obj/item/bedsheet/cosmos ckeywhitelist = list("grunnyyy") +/datum/gear/donator/customskirt + name = "custom atmos skirt" + slot = SLOT_IN_BACKPACK + path = /obj/item/clothing/under/custom/customskirt + ckeywhitelist = list("thakyz") + /datum/gear/donator/hisakaki name = "halo" slot = SLOT_HEAD diff --git a/modular_citadel/code/modules/custom_loadout/custom_items.dm b/modular_citadel/code/modules/custom_loadout/custom_items.dm index 9de4cb235b..8dfb613594 100644 --- a/modular_citadel/code/modules/custom_loadout/custom_items.dm +++ b/modular_citadel/code/modules/custom_loadout/custom_items.dm @@ -551,10 +551,18 @@ icon_state = "polyce" poly_colors = list("#808080", "#8CC6FF", "#FF3535") +/obj/item/clothing/under/custom/customskirt + name = "unzipped atmos skirt" + desc = "atmos jumpsuit skirt with the top half zipped down and wrapped around the waist." + icon_state = "atmos_skirt" + item_state = "atmos_skirt" + icon = 'icons/obj/custom.dmi' + mob_overlay_icon = 'icons/mob/clothing/custom_w.dmi' + /obj/item/clothing/head/halo name = "transdimensional halo" desc = "An oddly shaped halo that magically hovers above the head." icon_state = "halo" item_state = "halo" - icon = 'icons/obj/custom.dmi' + icon = 'icons/mob/clothing/custom_w.dmi' mob_overlay_icon = 'icons/mob/clothing/custom_w.dmi' \ No newline at end of file