Files
Paradise/code/game/gamemodes/changeling/powers/digitalcamo.dm
DZD de9accc64d TG Changeling Port
This would've been multiple commits, but I kept forgetting to ACTUALLY
commit things. Changes logged in the PR.
2015-02-08 19:42:01 -05:00

18 lines
776 B
Plaintext

/obj/effect/proc_holder/changeling/digitalcamo
name = "Digital Camouflage"
desc = "By evolving the ability to distort our form and proprotions, we defeat common altgorithms used to detect lifeforms on cameras."
helptext = "We cannot be tracked by camera while using this skill. However, humans looking at us will find us... uncanny."
dna_cost = 1
//Prevents AIs tracking you but makes you easily detectable to the human-eye.
/obj/effect/proc_holder/changeling/digitalcamo/sting_action(var/mob/user)
if(user.digitalcamo)
user << "<span class='notice'>We return to normal.</span>"
else
user << "<span class='notice'>We distort our form to prevent AI-tracking.</span>"
user.digitalcamo = !user.digitalcamo
feedback_add_details("changeling_powers","CAM")
return 1