mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-22 12:47:16 +01:00
[ready] pastelprincedan plushie fluff item
This commit is contained in:
@@ -772,6 +772,12 @@
|
||||
ckeywhitelist = list("pastelprincedan", "hatterhat")
|
||||
character_name = list("Masumi Maki", "Harold Robinson")
|
||||
|
||||
/datum/gear/fluff/slimecat_rd_plush
|
||||
path = /obj/item/toy/plushie/fluff/slimeowshi
|
||||
display_name = "slimecat RD plushie"
|
||||
ckeywhitelist = list("pastelprincedan")
|
||||
character_name = list("Kiyoshi Maki", "Masumi Maki")
|
||||
|
||||
// Q CKEYS
|
||||
|
||||
// R CKEYS
|
||||
|
||||
@@ -53,7 +53,11 @@
|
||||
/datum/gear/plushie/New()
|
||||
..()
|
||||
var/list/plushies = list()
|
||||
for(var/obj/item/toy/plushie/plushie_type as anything in subtypesof(/obj/item/toy/plushie) - /obj/item/toy/plushie/therapy)
|
||||
var/list/blacklisted_types = list()
|
||||
// look if theres a better way to do this im all ears
|
||||
blacklisted_types += subtypesof(/obj/item/toy/plushie/therapy)
|
||||
blacklisted_types += subtypesof(/obj/item/toy/plushie/fluff)
|
||||
for(var/obj/item/toy/plushie/plushie_type as anything in subtypesof(/obj/item/toy/plushie) - blacklisted_types)
|
||||
plushies[initial(plushie_type.name)] = plushie_type
|
||||
gear_tweaks += new/datum/gear_tweak/path(sortAssoc(plushies))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user