Added synthetic-derived growth factor amonst some bugfixes.

This commit is contained in:
Fermi
2019-04-12 05:10:00 +01:00
parent f059a19d8b
commit 28ffc996f7
7 changed files with 153 additions and 11 deletions
@@ -1,3 +1,3 @@
/datum/mood_event/eigenstate
mood_change = -1
description = "<span class='warning'>Where the hell am I? Is this an alternative reality?</span>\n"
description = "<span class='warning'>Where the hell am I? Is this an alternative dimension ?</span>\n"
@@ -0,0 +1,25 @@
/datum/status_effect/chem/SGDF
id = "SGDF"
var/mob/living/clone
/datum/status_effect/chem/SGDF/on_apply()
var/typepath = owner.type
clone = new typepath(owner.loc)
var/mob/living/carbon/O = owner
var/mob/living/carbon/C = clone
if(istype(C) && istype(O))
C.real_name = O.real_name
O.dna.transfer_identity(C)
C.updateappearance(mutcolor_update=1)
return ..()
/datum/status_effect/chem/SGDF/tick()
if(owner.stat == DEAD)
if(clone && clone.stat != DEAD)
if(owner.mind)
owner.mind.transfer_to(clone)
owner.visible_message("<span class='warning'>Lucidity shoots to your previously blank mind as your mind suddenly finishes the cloning process. You marvel for a moment at yourself, as your mind subconciously recollects all your memories up until the point when you cloned yourself. curiously, you find that you memories are blank after you ingested the sythetic serum, leaving you to wonder where the other you is.</span>")
clone = null
if(!clone || clone.stat == DEAD)
to_chat(owner, "<span class='notice'>[linked_extract] desperately tries to move your soul to a living body, but can't find one!</span>")
..()