diff --git a/code/modules/clothing/under/jobs/civilian.dm b/code/modules/clothing/under/jobs/civilian.dm index 3efcf42c..9efab49c 100644 --- a/code/modules/clothing/under/jobs/civilian.dm +++ b/code/modules/clothing/under/jobs/civilian.dm @@ -357,14 +357,6 @@ alt_covers_chest = TRUE fitted = FEMALE_UNIFORM_TOP -/obj/item/clothing/under/rank/curator - name = "sensible suit" - desc = "It's very... sensible." - icon_state = "red_suit" - item_state = "red_suit" - item_color = "red_suit" - can_adjust = FALSE - /obj/item/clothing/under/lawyer/really_black name = "executive suit" desc = "A formal black suit and red tie, intended for the station's finest." @@ -382,6 +374,30 @@ can_adjust = FALSE fitted = FEMALE_UNIFORM_TOP +/obj/item/clothing/under/lawyer/galaxy_blue + name = "\improper De Void of Soul" + desc = "A suit of stars and high-V gas. One that screams the cosmos and unfathomnable vastness. Earned by only the best of the best." + icon_state = "galaxy_blue" + item_state = "b_suit" + item_color = "galaxy_blue" + can_adjust = FALSE + +/obj/item/clothing/under/lawyer/galaxy_red + name = "\improper Pulsar Gonne" + desc = "A suit of stars and high-V gas. One that screams stellar fusion and re-entry burn. Earned by only the best of the best." + icon_state = "galaxy_red" + item_state = "r_suit" + item_color = "galaxy_red" + can_adjust = FALSE + +/obj/item/clothing/under/rank/curator + name = "sensible suit" + desc = "It's very... sensible." + icon_state = "red_suit" + item_state = "red_suit" + item_color = "red_suit" + can_adjust = FALSE + /obj/item/clothing/under/rank/curator/skirt name = "sensible suitskirt" desc = "It's very... sensible." diff --git a/code/modules/vending/clothesmate.dm b/code/modules/vending/clothesmate.dm index 4c77e09f..3b303409 100644 --- a/code/modules/vending/clothesmate.dm +++ b/code/modules/vending/clothesmate.dm @@ -122,7 +122,8 @@ /obj/item/clothing/suit/jacket/letterman_syndie = 5, /obj/item/clothing/under/jabroni = 2, /obj/item/clothing/suit/vapeshirt = 2, - /obj/item/clothing/under/geisha = 4) + /obj/item/clothing/under/geisha = 4, + /obj/item/clothing/under/lawyer/galaxy_red = 3) premium = list(/obj/item/clothing/under/suit_jacket/checkered = 4, /obj/item/clothing/head/mailman = 2, /obj/item/clothing/under/rank/mailman = 2, @@ -131,9 +132,10 @@ /obj/item/clothing/under/pants/mustangjeans = 3, /obj/item/clothing/neck/necklace/dope = 5, /obj/item/clothing/suit/jacket/letterman_nanotrasen = 5, - /obj/item/bluespace_thread = 3) + /obj/item/bluespace_thread = 3, + /obj/item/clothing/under/lawyer/galaxy_blue = 3) refill_canister = /obj/item/vending_refill/clothing /obj/item/vending_refill/clothing machine_name = "ClothesMate" - icon_state = "refill_clothes" + icon_state = "refill_clothes" \ No newline at end of file diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index bdfed344..07ae9e36 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index b2a18fb0..6e957f1f 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index 8749c256..836eee46 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -38,6 +38,18 @@ category = SLOT_W_UNIFORM path = /obj/item/clothing/under/suit_jacket/white +/datum/gear/galaxy_b + name = "De Void of Soul" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/lawyer/galaxy_blue + cost = 3 + +/datum/gear/galaxy_r + name = "Pulsar Gonne" + category = SLOT_W_UNIFORM + path = /obj/item/clothing/under/lawyer/galaxy_red + cost = 3 + /datum/gear/assistantformal name = "Assistant's formal uniform" category = SLOT_W_UNIFORM @@ -437,4 +449,4 @@ name = "Corset" category = SLOT_W_UNIFORM path = /obj/item/clothing/under/corset - cost = 1 + cost = 1 \ No newline at end of file