diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm index 1cb0e21b698..d9c5180f5ee 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems.dm @@ -1597,6 +1597,20 @@ ckeywhitelist = list("yeehawguvnah") character_name = list("Cephyra") +/datum/gear/fluff/names_hat + path = /obj/item/clothing/head/fluff/names_pizza + display_name = "pizza delivery hat" + slot = slot_head + ckeywhitelist = list("yepthatsmyname") + character_name = list("Mothza Aurella") + +/datum/gear/fluff/names_uniform + path = /obj/item/clothing/under/names_pizza + display_name = "pizza delivery uniform" + slot = slot_w_uniform + ckeywhitelist = list("yepthatsmyname") + character_name = list("Mothza Aurella") + // Z CKEYS /datum/gear/fluff/tachika_medal path = /obj/item/clothing/accessory/medal/conduct diff --git a/code/modules/clothing/head/misc_vr.dm b/code/modules/clothing/head/misc_vr.dm index d9b44f717cb..d36cd3e511f 100644 --- a/code/modules/clothing/head/misc_vr.dm +++ b/code/modules/clothing/head/misc_vr.dm @@ -86,6 +86,12 @@ icon_state = "pizzadelivery" item_state = "pizzadelivery" +/obj/item/clothing/head/fluff/names_pizza + name = "pizza delivery hat" + desc = "A hat fit for delivering pizzas! Smells of pepperoni and unpaid student debt." + icon_state = "pizzadelivery_fluff" + item_state = "pizzadelivery_fluff" + /obj/item/clothing/head/wedding name = "wedding veil" desc = "A lace veil worn over the face, typically by a bride during their wedding." diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 69b96c80ffb..beabe3ab2c6 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -287,6 +287,13 @@ item_state = "pizzadelivery" rolled_down = 0 +/obj/item/clothing/under/names_pizza + name = "pizza delivery uniform" + desc = "An outfit fit for delivering pizzas! Whoever wears it either has a vore-wish or really needs the money. Maybe both." + icon_state = "pizzadelivery_fluff" + item_state = "pizzadelivery_fluff" + body_parts_covered = CHEST + //////////////////////TALON JUMPSUITS////////////////////// /obj/item/clothing/under/rank/talon/basic diff --git a/icons/inventory/head/item.dmi b/icons/inventory/head/item.dmi index a84c7399cbf..79a6fc4ffa3 100644 Binary files a/icons/inventory/head/item.dmi and b/icons/inventory/head/item.dmi differ diff --git a/icons/inventory/head/mob.dmi b/icons/inventory/head/mob.dmi index 2f167688926..b4a25c8bfa0 100644 Binary files a/icons/inventory/head/mob.dmi and b/icons/inventory/head/mob.dmi differ diff --git a/icons/inventory/uniform/item.dmi b/icons/inventory/uniform/item.dmi index 18240130f25..bbe223e80fc 100644 Binary files a/icons/inventory/uniform/item.dmi and b/icons/inventory/uniform/item.dmi differ diff --git a/icons/inventory/uniform/mob.dmi b/icons/inventory/uniform/mob.dmi index 19db66a6a1d..f9bfa7e7832 100644 Binary files a/icons/inventory/uniform/mob.dmi and b/icons/inventory/uniform/mob.dmi differ