From 2f3ce15ea5cde20eff87ed176cf027606a721019 Mon Sep 17 00:00:00 2001 From: Lazy synth <116900250+Bonirus@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:27:23 -0300 Subject: [PATCH] Lazy plush update. (#4067) ## About The Pull Request Updates the lazy synth plushie with more attack verbs. Work wanted me to learn github anyway so i thought i'd do a little thing at least. ## Why It's Good For The Game He does more than just squish all over you now. Honestly i wanted to make him have a chance to pop out an egg when squeezed, but thats a bit too complex for me stilll, pretty sure i lost a few cells trying to understand the cooldown system, so its only a few more attack verbs for now. ## Proof Of Testing
Screenshots/Videos ![wgdE47r](https://github.com/user-attachments/assets/200854c1-4fc3-4bf7-978d-055887ba8400) ![7HG4QLo](https://github.com/user-attachments/assets/f48b4f24-00dc-4969-82a1-ee3a3debe7a3)
## Changelog :cl: add: More attack verbs to the lazy synth plushie /:cl: --- modular_zubbers/code/game/objects/items/plushes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_zubbers/code/game/objects/items/plushes.dm b/modular_zubbers/code/game/objects/items/plushes.dm index 57fad0cefcd..80ccb831671 100644 --- a/modular_zubbers/code/game/objects/items/plushes.dm +++ b/modular_zubbers/code/game/objects/items/plushes.dm @@ -302,8 +302,8 @@ /obj/item/toy/plush/lazy_synth name = "lazy synth plush" desc = "A soft plush of an extremely lazy synth. Might be found loafing in random places." - attack_verb_continuous = list("squishes") - attack_verb_simple = list("squish") + attack_verb_continuous = list("squishes", "loafs on", "sleeps on", "eggs") + attack_verb_simple = list("squish", "loaf on", "sleep on", "egg") icon = 'modular_zubbers/icons/obj/toys/plushes.dmi' icon_state = "lazy_synth" squeak_override = list('modular_zubbers/sound/misc/squeakle.ogg' = 1)