mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
25 lines
1.0 KiB
Plaintext
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
|