Files
CHOMPStation2/code/game/gamemodes/changeling/powers/recursive_enhancement.dm
CHOMPStation2 ab154b48b2 [MIRROR] refactors most spans (#9139)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
2024-10-04 15:00:17 +02:00

25 lines
1.0 KiB
Plaintext

/datum/power/changeling/recursive_enhancement
name = "Recursive Enhancement"
desc = "We cause our abilities to have increased or additional effects."
helptext = "To check the effects for each ability, check the blue text underneath the ability in the evolution menu."
ability_icon_state = "ling_recursive_enhancement"
genomecost = 3
verbpath = /mob/proc/changeling_recursive_enhancement
//Increases macimum chemical storage
/mob/proc/changeling_recursive_enhancement()
set category = "Changeling"
set name = "Recursive Enhancement"
set desc = "Empowers our abilities."
var/datum/changeling/changeling = changeling_power(0,0,100,UNCONSCIOUS)
if(!changeling)
return 0
if(src.mind.changeling.recursive_enhancement)
to_chat(src, span_warning("We will no longer empower our abilities."))
src.mind.changeling.recursive_enhancement = 0
return 0
to_chat(src, span_notice("We empower ourselves. Our abilities will now be extra potent."))
src.mind.changeling.recursive_enhancement = 1
feedback_add_details("changeling_powers","RE")
return 1