diff --git a/modular_nova/master_files/code/modules/clothing/under/costume.dm b/modular_nova/master_files/code/modules/clothing/under/costume.dm index 62b30a875b9..92da664d9e4 100644 --- a/modular_nova/master_files/code/modules/clothing/under/costume.dm +++ b/modular_nova/master_files/code/modules/clothing/under/costume.dm @@ -112,6 +112,12 @@ body_parts_covered = CHEST|GROIN|ARMS female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY +/obj/item/clothing/under/costume/nova/shihakusho + name = "shihakusho" + desc = "A traditional ancient Earth Japanese Shihakusho." + icon_state = "shihakusho" + body_parts_covered = CHEST|GROIN|ARMS + /* * CHRISTMAS CLOTHES */ diff --git a/modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi b/modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi index 00521501d08..9822a03b0cc 100644 Binary files a/modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi and b/modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi differ diff --git a/modular_nova/master_files/icons/mob/clothing/under/costume.dmi b/modular_nova/master_files/icons/mob/clothing/under/costume.dmi index 317b614a496..ab3493c74ad 100644 Binary files a/modular_nova/master_files/icons/mob/clothing/under/costume.dmi and b/modular_nova/master_files/icons/mob/clothing/under/costume.dmi differ diff --git a/modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi b/modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi index ace9238ecd2..7f0b03bf61d 100644 Binary files a/modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi and b/modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi differ diff --git a/modular_nova/master_files/icons/obj/clothing/under/costume.dmi b/modular_nova/master_files/icons/obj/clothing/under/costume.dmi index c71466eda7b..2230af91d38 100644 Binary files a/modular_nova/master_files/icons/obj/clothing/under/costume.dmi and b/modular_nova/master_files/icons/obj/clothing/under/costume.dmi differ diff --git a/modular_nova/modules/customization/modules/clothing/suits/coats.dm b/modular_nova/modules/customization/modules/clothing/suits/coats.dm index ac2dc321d88..c678b74bbe7 100644 --- a/modular_nova/modules/customization/modules/clothing/suits/coats.dm +++ b/modular_nova/modules/customization/modules/clothing/suits/coats.dm @@ -173,6 +173,15 @@ flags_1 = IS_PLAYER_COLORABLE_1 supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON +/obj/item/clothing/suit/jacket/white_robe + name = "white robe" + desc = "A white long robe." + icon_state = "white_robe" + icon = 'modular_nova/master_files/icons/obj/clothing/suits/jacket.dmi' + worn_icon = 'modular_nova/master_files/icons/mob/clothing/suits/jacket.dmi' + body_parts_covered = CHEST|ARMS + cold_protection = CHEST|ARMS + /obj/item/clothing/suit/varsity name = "varsity jacket" desc = "A simple varsity jacket with no obvious sources." diff --git a/modular_nova/modules/loadouts/loadout_items/loadout_datum_suit.dm b/modular_nova/modules/loadouts/loadout_items/loadout_datum_suit.dm index 2a1b016d457..5e77fbcb36c 100644 --- a/modular_nova/modules/loadouts/loadout_items/loadout_datum_suit.dm +++ b/modular_nova/modules/loadouts/loadout_items/loadout_datum_suit.dm @@ -372,6 +372,10 @@ GLOBAL_LIST_INIT(loadout_exosuits, generate_loadout_items(/datum/loadout_item/su name = "Crop Top Turtleneck" item_path = /obj/item/clothing/suit/jacket/croptop +/datum/loadout_item/suit/white_robe + name = "White Robe" + item_path = /obj/item/clothing/suit/jacket/white_robe + /* * FLANNELS */ diff --git a/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm b/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm index ec169f912c5..4a0b5cba275 100644 --- a/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm +++ b/modular_nova/modules/loadouts/loadout_items/under/loadout_datum_under.dm @@ -580,6 +580,10 @@ GLOBAL_LIST_INIT(loadout_miscunders, generate_loadout_items(/datum/loadout_item/ name = "Fancy Kimono" item_path = /obj/item/clothing/under/costume/nova/kimono +/datum/loadout_item/under/miscellaneous/shihakusho + name = "Shihakusho" + item_path = /obj/item/clothing/under/costume/nova/shihakusho + /datum/loadout_item/under/miscellaneous/chaps name = "Black Chaps" item_path = /obj/item/clothing/under/pants/nova/chaps diff --git a/modular_nova/modules/modular_vending/code/autodrobe.dm b/modular_nova/modules/modular_vending/code/autodrobe.dm index ccddd260664..89bf6197d1f 100644 --- a/modular_nova/modules/modular_vending/code/autodrobe.dm +++ b/modular_nova/modules/modular_vending/code/autodrobe.dm @@ -30,6 +30,7 @@ /obj/item/clothing/under/costume/nova/kamishimo = 5, /obj/item/clothing/under/costume/nova/yukata = 5, /obj/item/clothing/under/costume/nova/kimono = 5, + /obj/item/clothing/under/costume/nova/shihakusho = 5, /obj/item/clothing/head/beret/badge = 5, /obj/item/clothing/mask/masquerade = 25, /obj/item/clothing/mask/masquerade/two_colors = 25, diff --git a/modular_nova/modules/modular_vending/code/clothesmate.dm b/modular_nova/modules/modular_vending/code/clothesmate.dm index eb7730e5e73..8619fede64a 100644 --- a/modular_nova/modules/modular_vending/code/clothesmate.dm +++ b/modular_nova/modules/modular_vending/code/clothesmate.dm @@ -125,6 +125,7 @@ /obj/item/clothing/suit/duster = 5, /obj/item/clothing/suit/fallsparka = 5, /obj/item/clothing/suit/jacket/croptop = 5, + /obj/item/clothing/suit/jacket/white_robe = 5, /obj/item/clothing/suit/modernwintercoatthing = 5, /obj/item/clothing/suit/hooded/wintercoat/colourable = 5, /obj/item/clothing/suit/apron/chef/colorable_apron = 5,