* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
/obj/effect/proc_holder/changeling/panacea
|
|
name = "Anatomic Panacea"
|
|
desc = "Expels impurifications from our form; curing diseases, removing parasites, sobering us, purging toxins and radiation, and resetting our genetic code completely."
|
|
helptext = "Can be used while unconscious."
|
|
chemical_cost = 20
|
|
dna_cost = 1
|
|
req_stat = UNCONSCIOUS
|
|
|
|
//Heals the things that the other regenerative abilities don't.
|
|
/obj/effect/proc_holder/changeling/panacea/sting_action(mob/user)
|
|
to_chat(user, "<span class='notice'>We cleanse impurities from our form.</span>")
|
|
|
|
var/mob/living/simple_animal/borer/B = user.has_brain_worms()
|
|
if(B)
|
|
if(B.controlling)
|
|
B.detatch()
|
|
B.leave_victim()
|
|
if(iscarbon(user))
|
|
var/mob/living/carbon/C = user
|
|
C.vomit(0)
|
|
to_chat(user, "<span class='notice'>A parasite exits our form.</span>")
|
|
var/list/bad_organs = list(
|
|
user.getorgan(/obj/item/organ/body_egg),
|
|
user.getorgan(/obj/item/organ/zombie_infection))
|
|
|
|
for(var/o in bad_organs)
|
|
var/obj/item/organ/O = o
|
|
if(!istype(O))
|
|
continue
|
|
|
|
O.Remove(user)
|
|
if(iscarbon(user))
|
|
var/mob/living/carbon/C = user
|
|
C.vomit(0)
|
|
O.forceMove(get_turf(user))
|
|
|
|
user.reagents.add_reagent("mutadone", 10)
|
|
user.reagents.add_reagent("pen_acid", 20)
|
|
user.reagents.add_reagent("antihol", 10)
|
|
user.reagents.add_reagent("mannitol", 25)
|
|
|
|
for(var/datum/disease/D in user.viruses)
|
|
D.cure()
|
|
return TRUE
|