diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 657ed64cc66..24a18170932 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -283,26 +283,16 @@ desc = "A crown worn by only the highest emperors of the land." icon_state = "fancycrown" -/obj/item/clothing/head/scarecrow_mask - name = "sack mask" - desc = "A burlap sack with eyeholes." - icon_state = "scarecrow_mask" - flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS - /obj/item/clothing/head/scarecrow_hat name = "scarecrow hat" desc = "A simple straw hat." icon_state = "scarecrow_hat" -/obj/item/clothing/head/mummy - name = "mummy mask" - desc = "Ancient bandages." - icon_state = "mummy_mask" - /obj/item/clothing/head/pharoah name = "pharoah hat" desc = "Walk like an Egyptian." icon_state = "pharoah_hat" + icon_state = "pharoah_hat" /obj/item/clothing/head/jester/alt name = "jester hat" diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index c03f8c72909..cdd73fe6964 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -200,4 +200,18 @@ /obj/item/clothing/mask/bandana/skull name = "skull bandana" desc = "A fine black bandana with nanotech lining and a skull emblem." - icon_state = "bandskull" \ No newline at end of file + icon_state = "bandskull" + +/obj/item/clothing/mask/mummy + name = "mummy mask" + desc = "Ancient bandages." + icon_state = "mummy_mask" + item_state = "mummy_mask" + flags_inv = HIDEFACE|HIDEHAIR|HIDEFACIALHAIR + +/obj/item/clothing/mask/scarecrow + name = "sack mask" + desc = "A burlap sack with eyeholes." + icon_state = "scarecrow_mask" + item_state = "scarecrow_mask" + flags_inv = HIDEFACE|HIDEHAIR|HIDEFACIALHAIR \ No newline at end of file diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 561d063f609..b9a0f4fb710 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/mask.dmi b/icons/mob/mask.dmi index 24438f397a1..70f994cdbe0 100644 Binary files a/icons/mob/mask.dmi and b/icons/mob/mask.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 63697790223..933410bbc53 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/masks.dmi b/icons/obj/clothing/masks.dmi index c0f2d46f62b..752a0a00ece 100644 Binary files a/icons/obj/clothing/masks.dmi and b/icons/obj/clothing/masks.dmi differ