Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plush update #2470

Merged
merged 1 commit into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions code/game/objects/items/plushes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,15 @@
attack_verb_simple = list("impale", "joust")
gender = FEMALE

/obj/item/toy/plush/don/attack_self(mob/user)
..()
icon_state = "don_yahoo"
addtimer(CALLBACK(src, PROC_REF(sprite_return)), 3 SECONDS)

//So you can make her yahoo again
/obj/item/toy/plush/don/proc/sprite_return(mob/user)
icon_state = "don"

/obj/item/toy/plush/ryoshu
name = "ryoshu plushie"
desc = "A plushie depicting a artistic sinner."
Expand Down Expand Up @@ -559,6 +568,12 @@
icon_state = "samjo"
gender = MALE

/obj/item/toy/plush/zena
name = "zena plushie"
desc = "A plushie depicting an aloof arbiter."
icon_state = "zena"
gender = FEMALE

/obj/item/toy/plush/blank
name = "plushie blank"
desc = "A humanoid plush that had been freshly made or stripped down to its cloth. Despite its lack of identity, the mere aknowelegement of this plushie makes it unique."
Expand Down
Binary file modified icons/obj/plushes.dmi
Binary file not shown.
Loading