diff --git a/code/defines/obj/clothing/head.dm b/code/defines/obj/clothing/head.dm index aad3c11897..6466ebad73 100644 --- a/code/defines/obj/clothing/head.dm +++ b/code/defines/obj/clothing/head.dm @@ -97,6 +97,11 @@ desc = "It has WIZZARD written across it in sequins. Comes with a cool beard." icon_state = "wizard-fake" +/obj/item/clothing/head/wizard/marisa + name = "Witch Hat" + desc = "Strange-looking hat-wear that most certainly belongs to a real magic user." + icon_state = "marisa" + /obj/item/clothing/head/chefhat name = "Chef's hat" icon_state = "chef" diff --git a/code/defines/obj/clothing/shoes.dm b/code/defines/obj/clothing/shoes.dm index d49538a6f7..dcd8872a0f 100644 --- a/code/defines/obj/clothing/shoes.dm +++ b/code/defines/obj/clothing/shoes.dm @@ -42,6 +42,11 @@ name = "sandals" icon_state = "wizard" +/obj/item/clothing/shoes/sandal/marisa + desc = "A pair of magic, black shoes." + name = "Magic Shoes" + icon_state = "black" + /obj/item/clothing/shoes/galoshes desc = "Rubber boots" name = "galoshes" diff --git a/code/defines/obj/clothing/suit.dm b/code/defines/obj/clothing/suit.dm index 92fc19cd8c..d2c97acbe7 100644 --- a/code/defines/obj/clothing/suit.dm +++ b/code/defines/obj/clothing/suit.dm @@ -150,6 +150,12 @@ icon_state = "wizard-fake" item_state = "wizrobe" +/obj/item/clothing/suit/wizrobe/marisa + name = "Witch Robe" + desc = "Magic is all about the spell power, ZE!" + icon_state = "marisa" + item_state = "marisarobe" + /obj/item/clothing/suit/hazardvest name = "hazard vest" desc = "A vest designed to make one more noticable. It's not very good at it though" diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 0ba7bc1595..9ae7981675 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 807200a47d..628c2e38ed 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 3b1a82ad81..a323fb6831 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 1ba6af6bd9..582ac24914 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ