Adds Nightcaps (2nd try) (#70117)

This was taken from #67742 by @soapstain22 and I really liked the idea. Not sure why the original author closed it but here it is again.

Adds red and blue nightcaps to the pajama lockers.
This commit is contained in:
Tim
2022-09-28 11:07:27 +01:00
committed by GitHub
parent e1447a60e9
commit 83e443fe41
4 changed files with 17 additions and 7 deletions
+13 -7
View File
@@ -47,8 +47,6 @@
name = "nurse's hat"
desc = "It allows quick identification of trained medical personnel."
icon_state = "nursehat"
dog_fashion = /datum/dog_fashion/head/nurse
/obj/item/clothing/head/bowler
@@ -57,7 +55,6 @@
icon_state = "bowler"
inhand_icon_state = "bowler"
/obj/item/clothing/head/bearpelt
name = "bear pelt hat"
desc = "Fuzzy."
@@ -207,15 +204,14 @@
icon_state = "ushankadown"
inhand_icon_state = "ushankadown"
flags_inv = HIDEEARS|HIDEHAIR
var/earflaps = TRUE
cold_protection = HEAD
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT
dog_fashion = /datum/dog_fashion/head/ushanka
var/earflaps = TRUE
///Sprite visible when the ushanka flaps are folded up.
var/upsprite = "ushankaup"
///Sprite visible when the ushanka flaps are folded down.
var/downsprite = "ushankadown"
min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT
dog_fashion = /datum/dog_fashion/head/ushanka
/obj/item/clothing/head/ushanka/attack_self(mob/user)
if(earflaps)
@@ -227,3 +223,13 @@
inhand_icon_state = downsprite
to_chat(user, span_notice("You lower the ear flaps on the ushanka."))
earflaps = !earflaps
/obj/item/clothing/head/nightcap/blue
name = "blue nightcap"
desc = "A blue nightcap for all the dreamers and snoozers out there."
icon_state = "sleep_blue"
/obj/item/clothing/head/nightcap/red
name = "red nightcap"
desc = "A red nightcap for all the sleepyheads and dozers out there."
icon_state = "sleep_red"