<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request
Adds back Ralsei plush and loadout item for it

<!-- Describe The Pull Request. Please be sure every change is
documented or this can delay review and even discourage maintainers from
merging your PR! -->

<!-- Please make sure to actually test your PRs. If you have not tested
your PR mention it. -->

## Why It's Good For The Game



https://github.com/user-attachments/assets/d2749dbf-1bf5-4ab3-a07d-b92c1611e8d6




## Proof Of Testing

<!-- Compile and run your code locally. Make sure it works. This is the
place to show off your changes! We are not responsible for testing your
features. -->
<details>
<summary>Screenshots/Videos</summary>

<img width="313" height="202" alt="image"
src="https://github.com/user-attachments/assets/8adb4c16-3a5a-44a6-8c17-d92355bffc15"
/>

Thats Ralsei

</details>

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and its effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

🆑
add: Adds back strange goat plush
/🆑

<!-- Both 🆑's are required for the changelog to work! You can put
your name to the right of the first 🆑 if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->

<!-- By opening a pull request. You have read and understood the
repository rules located on the main README.md on this project. -->
This commit is contained in:
Mothblocks
2025-07-31 22:12:39 -06:00
committed by GitHub
parent 134f79c8d2
commit 20b11027bb
5 changed files with 66 additions and 1 deletions
@@ -317,3 +317,62 @@
icon = 'modular_zubbers/icons/obj/toys/plushes.dmi'
icon_state = "tian_plush"
squeak_override = list('modular_skyrat/modules/emotes/sound/voice/baa.ogg' = 1)
/obj/item/toy/plush/goatplushie
name = "strange goat plushie"
icon = 'modular_zubbers/icons/obj/toys/plushes.dmi'
icon_state = "goat"
desc = "Despite its cuddly appearance and plush nature, it will beat you up all the same. Goats never change."
squeak_override = list('sound/items/weapons/punch1.ogg'=1)
/// Whether or not this goat is currently taking in a monsterous doink
var/going_hard = FALSE
/// Whether or not this goat has been flattened like a funny pancake
var/splat = FALSE
/obj/item/toy/plush/goatplushie/Initialize(mapload)
. = ..()
var/static/list/loc_connections = list(
COMSIG_TURF_INDUSTRIAL_LIFT_ENTER = PROC_REF(splat),
)
AddElement(/datum/element/connect_loc, loc_connections)
/obj/item/toy/plush/goatplushie/attackby(obj/item/cigarette/rollie/fat_dart, mob/user, list/modifiers, list/attack_modifiers)
if(!istype(fat_dart))
return ..()
if(splat)
to_chat(user, span_notice("[src] doesn't seem to be able to go hard right now."))
return
if(going_hard)
to_chat(user, span_notice("[src] is already going too hard!"))
return
if(!fat_dart.lit)
to_chat(user, span_notice("You'll have to light that first!"))
return
to_chat(user, span_notice("You put [fat_dart] into [src]'s mouth."))
qdel(fat_dart)
going_hard = TRUE
update_icon(UPDATE_OVERLAYS)
/obj/item/toy/plush/goatplushie/proc/splat(datum/source)
SIGNAL_HANDLER
if(splat)
return
if(going_hard)
going_hard = FALSE
update_icon(UPDATE_OVERLAYS)
icon_state = "goat_splat"
playsound(src, SFX_DESECRATION, 50, TRUE)
visible_message(span_danger("[src] gets absolutely flattened!"))
splat = TRUE
/obj/item/toy/plush/goatplushie/examine()
. = ..()
if(splat)
. += span_notice("[src] might need medical attention.")
if(going_hard)
. += span_notice("[src] is going so hard, feel free to take a picture.")
/obj/item/toy/plush/goatplushie/update_overlays()
. = ..()
if(going_hard)
. += "goat_dart"
@@ -68,5 +68,6 @@ GLOBAL_LIST_INIT(arcade_prize_pool_toy, list(
/obj/item/stamp/cat = 5,
/obj/item/storage/belt/champion = 5,
/obj/item/storage/box/party_poppers = 50,
/obj/item/surprise_egg = 100
/obj/item/surprise_egg = 100,
/obj/item/toy/plush/goatplushie = 2,
))
@@ -91,6 +91,10 @@
name = "Intern Ghoul Plushie"
item_path = /obj/item/toy/plush/ghoul
/datum/loadout_item/toys/goat
name = "Strange Goat Plushie"
item_path = /obj/item/toy/plush/goatplushie
/datum/loadout_item/toys/mold_kobold
name = "Hemophage Awareness Kobold"
item_path = /obj/item/toy/plush/mold_kobold
@@ -24,6 +24,7 @@
/obj/item/toy/plush/skyrat/plushie_elofy = 3,
/obj/item/toy/plush/skyrat/plushie_syntax1112 = 3,
/obj/item/toy/plush/moth/lovers = 3,
/obj/item/toy/plush/goatplushie = 3,
/obj/item/toy/plush/chirp_plush = 3,
/obj/item/toy/plush/bigdeer = 3,
/obj/item/toy/plush/bubbledragon = 3,
Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 53 KiB