/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 << "We return to normal." else user << "We distort our form to prevent AI-tracking." user.digitalcamo = !user.digitalcamo feedback_add_details("changeling_powers","CAM") return 1