mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
## 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 /🆑
18 lines
778 B
Plaintext
18 lines
778 B
Plaintext
/obj/item/grenade/chem_grenade/wehnade
|
|
name = "wehnade"
|
|
desc = "A weird, old looking grenade casing. If you shake it you can hear liquid inside. It has no markings on it beside a hand written sticker that says 'Weh'!"
|
|
stage = GRENADE_READY
|
|
|
|
/obj/item/grenade/chem_grenade/wehnade/Initialize(mapload)
|
|
. = ..()
|
|
var/obj/item/reagent_containers/cup/beaker/beaker_one = new(src)
|
|
var/obj/item/reagent_containers/cup/beaker/beaker_two = new(src)
|
|
|
|
beaker_one.reagents.add_reagent(/datum/reagent/fluorosurfactant, 30)
|
|
beaker_two.reagents.add_reagent(/datum/reagent/water, 30)
|
|
beaker_one.reagents.add_reagent(/datum/reagent/juice_that_makes_you_weh, 30)
|
|
beaker_two.reagents.add_reagent(/datum/reagent/juice_that_makes_you_weh, 30)
|
|
|
|
beakers += beaker_one
|
|
beakers += beaker_two
|