mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
24 lines
1.1 KiB
Plaintext
24 lines
1.1 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 class='warning'>We will no longer empower our abilities.</span>")
|
|
src.mind.changeling.recursive_enhancement = 0
|
|
return 0
|
|
to_chat(src, "<span class='notice'>We empower ourselves. Our abilities will now be extra potent.</span>")
|
|
src.mind.changeling.recursive_enhancement = 1
|
|
feedback_add_details("changeling_powers","RE")
|
|
return 1 |