mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
Robotic borgs now have a circuit which can be re-installed in a new chassi after the destruction of the original.
20 lines
787 B
Plaintext
20 lines
787 B
Plaintext
/obj/item/device/mmi/digital/robot
|
|
name = "robotic intelligence circuit"
|
|
desc = "The pinnacle of artifical intelligence which can be achieved using classical computer science."
|
|
icon = 'icons/obj/module.dmi'
|
|
icon_state = "mainboard"
|
|
w_class = 3
|
|
origin_tech = "engineering=4;materials=3;programming=4"
|
|
|
|
/obj/item/device/mmi/digital/robot/New()
|
|
..()
|
|
src.brainmob.name = "[pick(list("ADA","DOS","GNU","MAC","WIN"))]-[rand(1000, 9999)]"
|
|
src.brainmob.real_name = src.brainmob.name
|
|
|
|
/obj/item/device/mmi/digital/robot/transfer_identity(var/mob/living/carbon/H)
|
|
..()
|
|
if(brainmob.mind)
|
|
brainmob.mind.assigned_role = "Robotic Intelligence"
|
|
brainmob << "<span class='notify'>You feel slightly disoriented. That's normal when you're little more than a complex circuit.</span>"
|
|
return
|