Files
IronDragoonandGitHub 4cd464f8a5 Weh Fun Stuff (#4964)
## About The Pull Request

Adds a new reagent (Juice That Makes You Weh), a premade foam grenade
with this chemical and a cargo import of various lizard related items
including the grenade (or a chance for). The grenades are also added to
maints loot with a similar consistency to the glitter grenades.
## Why It's Good For The Game

This just adds some fun items for messing about, it should not affect
balance or break the game in any way. The chemical cannot currently be
made (I may add this in future, so only exists in the grenades
currently) and does nothing except make the mob emit a sound for a
relatively short time, around a minute at full exposure. The cargo crate
is again, more just for fun and a way to at least semi-reliably get the
grenades if desired. I'd like to add more 'weh' items in future such as
bedsheets, funny outfits, etc. This is just to get my foot in the door.

## Proof Of Testing

Tested relatively expansively and works fine

<details>
<summary>Screenshots/Videos</summary>
<img width="589" height="643" alt="1"
src="https://github.com/user-attachments/assets/48d57183-bb66-41ca-a966-366b617e2678"
/>
<img width="592" height="160" alt="2"
src="https://github.com/user-attachments/assets/8c07a7f7-f0c6-453a-b7a0-923e6b23be86"
/>
<img width="331" height="371" alt="3"
src="https://github.com/user-attachments/assets/1d873de6-9b3e-457d-b4df-02a88424df83"
/>
<img width="846" height="492" alt="4"
src="https://github.com/user-attachments/assets/a7ed6485-daf9-4ec4-8813-4bb047dc529f"
/>
<img width="833" height="120" alt="5"
src="https://github.com/user-attachments/assets/2dbc5193-d129-48b3-b5d2-39b8c6199421"
/>
</details>

## Changelog
🆑
add: new reagent, 'Juice That Makes You Weh'. It makes you weh. Cannot
currently be synthesized
add: new maints item, 'Weh-nade', contains the above chem and foam mix
to spread the joy of weh with fellow crewmembers.
add: new cargo import, 'Lizard Goods Crate', contains random Lizard
items like plushes, foods and maybe a weh-nade or two. Also maybe little
tiny lizards
/🆑
2025-12-01 23:36:56 +02:00

25 lines
747 B
Plaintext

/obj/effect/spawner/random/lizard_crate
name = "lizard loot spawner"
desc = "What wondrous lizard related good could it contain?"
icon_state = "plushie"
loot = list(
//plushies
/obj/item/toy/plush/lizard_plushie/space = 20,
/obj/item/toy/plush/lizard_plushie/space/green = 20,
/obj/item/toy/plush/lizard_plushie/greyscale = 20,
/obj/item/toy/plush/lizard_plushie/green = 40,
/obj/item/toy/plush/lizard_plushie = 30,
//wehnade
/obj/item/grenade/chem_grenade/wehnade = 15,
//assorted lizard foods
/obj/item/food/tiziran_sausage = 10,
/obj/item/food/headcheese_slice = 10,
/obj/item/storage/box/spaceman_ration/meats/lizard = 5,
/obj/item/food/root_flatbread = 10,
//lil lizards
/mob/living/basic/lizard = 40,
)