Adds festive santa hats!

This commit is contained in:
Mark9013100
2015-12-14 18:32:00 -05:00
parent e9e163f5ed
commit 172ef26cc9
4 changed files with 25 additions and 1 deletions
+12
View File
@@ -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
+13 -1
View File
@@ -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