diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index e8ba85117427..559b46ab65a7 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -367,3 +367,8 @@ icon_state = "flowerwizhat" item_state = "flowerwizhat" +/obj/item/clothing/head/fedora/gtrim_fedora + name = "Gold trimmed Fedora" + desc = "A Unique variation of the classic fedora. Now with 'Waterproofing' for when buisness gets messy." + icon_state = "gtrim_fedora" + item_state = "gtrim_fedora" diff --git a/code/modules/clothing/neck/_neck.dm b/code/modules/clothing/neck/_neck.dm index d5d06008f42f..33479445f347 100644 --- a/code/modules/clothing/neck/_neck.dm +++ b/code/modules/clothing/neck/_neck.dm @@ -331,3 +331,16 @@ name = "ornate mantle" desc = "An ornate mantle commonly worn by a shaman or chieftain." icon_state = "tribal-mantle" + + +/////////// +// OTHER // +/////////// + +/obj/item/clothing/neck/falcon + name = "Faclonry pauldron" + desc = "A thick leather pad for a falcon to rest one. This one comes with a fake bird, free of charge." + icon = 'icons/obj/clothing/neck.dmi' + w_class = WEIGHT_CLASS_SMALL + icon_state = "falcon" + item_state = "falcon" \ No newline at end of file diff --git a/icons/mob/clothing/head/head.dmi b/icons/mob/clothing/head/head.dmi index 962da5e285b0..d214dc716d17 100644 Binary files a/icons/mob/clothing/head/head.dmi and b/icons/mob/clothing/head/head.dmi differ diff --git a/icons/mob/clothing/neck/neck.dmi b/icons/mob/clothing/neck/neck.dmi index 817d108ea8ad..03cf02ce00b5 100644 Binary files a/icons/mob/clothing/neck/neck.dmi and b/icons/mob/clothing/neck/neck.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 31db921fe607..f6c1826bd049 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/neck.dmi b/icons/obj/clothing/neck.dmi index 52746568a090..1f926e46b79a 100644 Binary files a/icons/obj/clothing/neck.dmi and b/icons/obj/clothing/neck.dmi differ diff --git a/yogstation/code/modules/clothing/donator.dm b/yogstation/code/modules/clothing/donator.dm index f45dd8ccee76..985a07e087f5 100644 --- a/yogstation/code/modules/clothing/donator.dm +++ b/yogstation/code/modules/clothing/donator.dm @@ -185,6 +185,15 @@ attack_verb = list("nibbles", "splats") squeak_override = list('sound/effects/axolotl.ogg' = 1) +/obj/item/storage/box/boxta + name = "Inmate belongings box" + desc = "A criminals' belongings, returned upon their release. Just stop killing people." + +/obj/item/storage/box/boxta/PopulateContents() + . = ..() + new /obj/item/clothing/neck/falcon(src) + new /obj/item/clothing/head/fedora/gtrim_fedora(src) + /obj/item/bedsheets/pridebedsheet/cark name = "Pride Bedsheet" desc = "A very prideful queen size bedsheet. How you are carrying all that weight is beyond me though." diff --git a/yogstation/code/modules/donor/unique_donator_items.dm b/yogstation/code/modules/donor/unique_donator_items.dm index 32cfd4380f9f..7c8b7cb8fe95 100644 --- a/yogstation/code/modules/donor/unique_donator_items.dm +++ b/yogstation/code/modules/donor/unique_donator_items.dm @@ -144,6 +144,13 @@ Uncomment this and use atomproccall as necessary, then copypaste the output into ckey = "dukeofsoleil" unlock_path = /obj/item/clothing/head/Floralwizhat + +/datum/donator_gear/boxta + name = "Gold Trimmed Fedora & Falcon" + ckey = "boxta" + unlock_path = /obj/item/storage/box/boxta + +///Generic donator hats, ckey agnostic. /datum/donator_gear/beanie name = "Beanie" unlock_path = /obj/item/clothing/head/yogs/beanie