mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-19 18:18:41 +01:00
19 lines
892 B
Plaintext
19 lines
892 B
Plaintext
/mob/living/carbon/alien/diona/confirm_evolution()
|
|
|
|
if(!is_alien_whitelisted(src, GLOB.all_species[SPECIES_DIONA]))
|
|
alert(src, "You are currently not whitelisted to play as a full diona.")
|
|
return null
|
|
|
|
if(amount_grown < max_grown)
|
|
to_chat(src, "You are not yet ready for your growth...")
|
|
return null
|
|
|
|
src.split()
|
|
|
|
if(istype(loc,/obj/item/weapon/holder/diona))
|
|
var/obj/item/weapon/holder/diona/L = loc
|
|
src.loc = L.loc
|
|
qdel(L)
|
|
|
|
src.visible_message("<font color='red'>[src] begins to shift and quiver, and erupts in a shower of shed bark as it splits into a tangle of nearly a dozen new dionaea.</font>","<font color='red'>You begin to shift and quiver, feeling your awareness splinter. All at once, we consume our stored nutrients to surge with growth, splitting into a tangle of at least a dozen new dionaea. We have attained our gestalt form.</font>")
|
|
return SPECIES_DIONA |