Merge pull request #13388 from DeltaFire15/plush-ling

Adds peculiar plushies, which are made by failing to make plushmium
This commit is contained in:
silicons
2020-09-15 17:31:18 -07:00
committed by GitHub
4 changed files with 88 additions and 5 deletions
@@ -501,7 +501,10 @@
PurityMin = 0.6
/datum/chemical_reaction/fermi/plushmium/FermiExplode(datum/reagents, var/atom/my_atom, volume, temp, pH)
new /obj/item/toy/plush/random(get_turf(my_atom))
if(volume < 20) //It creates a normal plush at low volume.. at higher amounts, things get slightly more interesting.
new /obj/item/toy/plush/random(get_turf(my_atom))
else
new /obj/item/toy/plush/plushling(get_turf(my_atom))
my_atom.visible_message("<span class='warning'>The reaction suddenly zaps, creating a plushie!</b></span>")
my_atom.reagents.clear_reagents()