diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 42fdd384..2dfae010 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -1062,6 +1062,12 @@ item_state = "oliver" attack_verb = list("chomped", "bit") +/obj/item/toy/plush/chloe + desc = "A plush of a chunky red-haired botanist." + icon_state = "chloe" + item_state = "chloe" + attack_verb = list("squished", "hugged", "smushed") + /obj/item/toy/plush/mammal/fox icon_state = "fox" item_state = "fox" diff --git a/icons/obj/plushes.dmi b/icons/obj/plushes.dmi index 3d78fc31..82d46c8d 100644 Binary files a/icons/obj/plushes.dmi and b/icons/obj/plushes.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 3778c172..1bd7a8fc 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -182,7 +182,7 @@ datum/gear/lyricalpawsring name = "GATO Badge - Correspondent" category = SLOT_IN_BACKPACK path = /obj/item/clothing/accessory/medal/gato_badge/middleman - ckeywhitelist = list("johnjimjim", "sonoida", "yeeny", "not number") + ckeywhitelist = list("johnjimjim", "sonoida", "yeeny", "Not Number") /datum/gear/halsey_overcoat name = "Halsey's Commander Overcoat" category = SLOT_IN_BACKPACK @@ -213,6 +213,12 @@ datum/gear/lyricalpawsring path = /obj/item/toy/plush/rose ckeywhitelist = list("eremitanovem", "sonoida") +/datum/gear/chloe_plush + name = "Chloe Plush" + category = SLOT_IN_BACKPACK + path = /obj/item/toy/plush/chloe + ckeywhitelist = list("Alphas0") + /datum/gear/grimmy_coat name = "Overcoat of the Destitute" category = SLOT_IN_BACKPACK @@ -259,16 +265,16 @@ datum/gear/lyricalpawsring name = "Weight Gain Spellbook" category = SLOT_IN_BACKPACK path = /obj/item/book/granter/spell/fattening - ckeywhitelist = list("sonoida", "themrsky", "not_number") + ckeywhitelist = list("sonoida", "themrsky", "Not Number") /datum/gear/wgspell_transfer name = "Weight Transfer Spellbook" category = SLOT_IN_BACKPACK path = /obj/item/book/granter/spell/fattening/transfer - ckeywhitelist = list("sonoida", "themrsky", "not_number") + ckeywhitelist = list("sonoida", "themrsky", "Not Number") /datum/gear/wgspell_take name = "Weight Steal Spellbook" category = SLOT_IN_BACKPACK path = /obj/item/book/granter/spell/fattening/steal - ckeywhitelist = list("sonoida", "themrsky", "not_number") + ckeywhitelist = list("sonoida", "themrsky", "Not Number")