mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-30 07:27:57 +01:00
Fixed up Deeaych's round-start cyborgs, they no longer spawn on the title screen
As a side effect of fixing this, since digging into the related code to make it not the case would be a chore and a half, round-start cyborgs are capable of being traitors, receiving the same objective/law set as an AI would. Much like a traitor AI, they can use a robotics terminal to hack themselves to unlock the emag module, at the cost of RED ANTENNA ROUGE BORG. It has been suggested that they get additional perks, such as immunity to robotics terminal detonation/lockdown, but I am wary of adding such things right off the bat. We shall see. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1204 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -188,7 +188,7 @@
|
||||
// cyborgs produced by Robotize get an automatic power cell
|
||||
O.cell = new(O)
|
||||
O.cell.maxcharge = 7500
|
||||
O.cell.charge = 1500
|
||||
O.cell.charge = 7500
|
||||
|
||||
|
||||
O.gender = src.gender
|
||||
@@ -196,8 +196,17 @@
|
||||
O.name = "Cyborg"
|
||||
O.real_name = "Cyborg"
|
||||
O.lastKnownIP = src.client.address
|
||||
if (src.client)
|
||||
src.client.mob = O
|
||||
if (src.mind)
|
||||
src.mind.transfer_to(O)
|
||||
if (src.mind.assigned_role == "Cyborg")
|
||||
src.mind.original = O
|
||||
else //welp
|
||||
src.mind = new /datum/mind( )
|
||||
src.mind.key = src.key
|
||||
src.mind.current = O
|
||||
src.mind.original = O
|
||||
src.mind.transfer_to(O)
|
||||
ticker.minds += O.mind
|
||||
O.loc = src.loc
|
||||
O << "<B>You are playing a Robot. A Robot can interact with most electronic objects in its view point.</B>"
|
||||
O << "<B>You must follow the laws that the AI has. You are the AI's assistant to the station basically.</B>"
|
||||
|
||||
Reference in New Issue
Block a user