diff --git a/modular_zubbers/code/game/objects/items/plushes.dm b/modular_zubbers/code/game/objects/items/plushes.dm new file mode 100644 index 00000000000..4a706264c00 --- /dev/null +++ b/modular_zubbers/code/game/objects/items/plushes.dm @@ -0,0 +1,26 @@ +/obj/item/toy/plush/chaotic_toaster + name = "Chaotic toaster" + desc = "You arent sure if this plushie want a hug, or harvest your organs, or both." + icon = 'modular_zubbers/icons/obj/toys/plushes.dmi' + icon_state = "chaotic_toaster" + attack_verb_simple = list("beeped", "booped", "pinged") + squeak_override = list('sound/machines/beep.ogg' = 1) + +/obj/item/toy/plush/Synth + name = "Synth plushie" + desc = "An adorable stuffed toy that resembles a very happy synth." + icon = 'modular_zubbers/icons/obj/toys/plushes.dmi' + icon_state = "plushie_synth" + +/obj/item/toy/plush/mal0 + name = "Mal0 plushie" + desc = "An adorable stuffed toy that resembles something you download on your pda." + icon = 'modular_zubbers/icons/obj/toys/plushes.dmi' + icon_state = "plushie_mal0" + +/obj/item/toy/plush/nobl + name = "Nobl plushie" + desc = "It seems to be a small canine, not necessarily latex like you would suspect for some reason, but extremely squishy." + icon = 'modular_zubbers/icons/obj/toys/plushes.dmi' + icon_state = "nobl_plush" + squeak_override = list('modular_zubbers/sound/misc/dog_toy.ogg' = 1) diff --git a/modular_zubbers/icons/obj/toys/plushes.dmi b/modular_zubbers/icons/obj/toys/plushes.dmi index f055ac5f49c..11718bddd19 100644 Binary files a/modular_zubbers/icons/obj/toys/plushes.dmi and b/modular_zubbers/icons/obj/toys/plushes.dmi differ diff --git a/modular_zubbers/sound/misc/dog_toy.ogg b/modular_zubbers/sound/misc/dog_toy.ogg new file mode 100644 index 00000000000..de295dc148a Binary files /dev/null and b/modular_zubbers/sound/misc/dog_toy.ogg differ diff --git a/tgstation.dme b/tgstation.dme index 9acb1bb2ec6..8c6d7ea1a8d 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -6701,6 +6701,7 @@ #include "modular_zubbers\code\game\objects\effects\landmarks.dm" #include "modular_zubbers\code\game\objects\effects\items\plushes.dm" #include "modular_zubbers\code\game\objects\items\holy_weapons.dm" +#include "modular_zubbers\code\game\objects\items\plushes.dm" #include "modular_zubbers\code\game\objects\items\reshirevolver.dm" #include "modular_zubbers\code\game\objects\items\food\misc.dm" #include "modular_zubbers\code\modules\_defines.dm"