mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-28 11:11:52 +00:00
This would've been multiple commits, but I kept forgetting to ACTUALLY commit things. Changes logged in the PR.
18 lines
776 B
Plaintext
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
|