Impliments the core camera cutting upgrade, which prevents camera consoles from seeing out of the AI core once installed

This commit is contained in:
Qwertytoforty
2020-08-27 18:44:42 -04:00
parent ebba3a322b
commit c4ee8ac339
@@ -781,3 +781,17 @@
if(AI.eyeobj)
AI.eyeobj.relay_speech = TRUE
/datum/AI_Module/large/cameracrack
module_name = "Core Camera Cracker"
mod_pick_name = "cameracrack"
description = "By shortcirucuting a network chip, it overheats, along with the camera in your AI core, preventing camera consoles from using your core camera, or you."
cost = 10
one_purchase = TRUE
upgrade = TRUE
unlock_text = "<span class='notice'>Network chip short circuited. Core camera fried. Minimal damage to other internal components.</span>"
unlock_sound = 'sound/items/wirecutter.ogg'
/datum/AI_Module/large/cameracrack/upgrade(mob/living/silicon/ai/AI)
if(AI.builtInCamera)
QDEL_NULL(AI.builtInCamera)