diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 002b0807d3..91194dd71d 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -281,6 +281,18 @@ var/global/list/gear_datums = list() cost = 1 slot = slot_head +/datum/gear/santahatred + display_name = "santa hat, red" + path = /obj/item/clothing/head/santa + cost = 1 + slot = slot_head + +/datum/gear/santahatgreen + display_name = "santa hat, green" + path = /obj/item/clothing/head/santa/green + cost = 1 + slot = slot_head + // This was sprited and coded specifically for Zhan-Khazan characters. Before you // decide that it's 'not even Taj themed' maybe you should read the wiki, gamer. ~ Z /datum/gear/zhan_scarf diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index 42e830c4e4..a8887c17f5 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -5,7 +5,7 @@ * Ushanka * Pumpkin head * Kitty ears - * + * Holiday hats */ /* @@ -153,3 +153,15 @@ icon_state = "richard" body_parts_covered = HEAD|FACE flags_inv = BLOCKHAIR + +/obj/item/clothing/head/santa + name = "santa hat" + desc = "It's a festive christmas hat, in red!" + icon_state = "santahatnorm" + body_parts_covered = 0 + +/obj/item/clothing/head/santa/green + name = "green santa hat" + desc = "It's a festive christmas hat, in green!" + icon_state = "santahatgreen" + body_parts_covered = 0 \ No newline at end of file diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 4cc00ae37f..25d066ddd7 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 8a1659dc9d..73818507ca 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ