diff --git a/code/game/objects/closets/wardrobe.dm b/code/game/objects/closets/wardrobe.dm index b193d0e3d8f..6611a8fc4a8 100644 --- a/code/game/objects/closets/wardrobe.dm +++ b/code/game/objects/closets/wardrobe.dm @@ -74,12 +74,15 @@ obj/structure/closet/wardrobe/hop/New() /obj/structure/closet/wardrobe/chaplain_black/New() //new /obj/item/clothing/suit/imperium_monk(src) //No. -- Urist + new /obj/item/clothing/under/rank/chaplain(src) + new /obj/item/clothing/shoes/black(src) new /obj/item/clothing/suit/nun(src) - new /obj/item/clothing/suit/storage/chaplain_hoodie(src) + new /obj/item/clothing/head/nun_hood(src) + new /obj/item/clothing/suit/chaplain_hoodie(src) new /obj/item/clothing/head/chaplain_hood(src) new /obj/item/clothing/suit/holidaypriest(src) - new /obj/item/clothing/suit/hastur (src) - new /obj/item/clothing/head/hasturhood (src) + //new /obj/item/clothing/suit/hastur (src) //No. -- Urist + //new /obj/item/clothing/head/hasturhood (src) //No. -- Urist return /obj/structure/closet/wardrobe/green/New() diff --git a/code/modules/clothing/head/hats.dm b/code/modules/clothing/head/hats.dm index 8f3e4aaafe2..c2f873564d9 100644 --- a/code/modules/clothing/head/hats.dm +++ b/code/modules/clothing/head/hats.dm @@ -89,6 +89,12 @@ icon_state = "chaplain_hood" flags = FPRINT|TABLEPASS|HEADSPACE|HEADCOVERSEYES|BLOCKHAIR +/obj/item/clothing/head/nun_hood + name = "nun hood" + desc = "Maximum piety in this star system." + icon_state = "nun_hood" + flags = FPRINT|TABLEPASS|HEADSPACE|HEADCOVERSEYES|BLOCKHAIR + /obj/item/clothing/head/hasturhood name = "hastur's hood" desc = "It's unspeakably stylish" diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi index 398b9d53f79..df619e1d67f 100644 Binary files a/icons/mob/eyes.dmi and b/icons/mob/eyes.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index ce4098bcd85..4cc7063e1ce 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 4803ba2c297..596ca37a0d8 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 91032dbec0a..2e9e5ec1dda 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ