mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 01:22:13 +00:00
Remote Mech Revision (#8903)
The AI can now remotely control mechs in its network. It has one mapped in near its core.
Messages received by your old body will now reach your VR body (does not affect Skrell Srom).
Exosuit pilots can now interact with elevator panels without having to get out.
Robotics and RnD can now create remote controlled mechs. The control centre is in the protolathe, while the exosuit upgrade is in the circuit imprinter.
Mechs can no longer be dismantled if it has a pilot in it.
Dismantling a mech now takes a while.
This commit is contained in:
22
code/modules/research/designs/circuit/mecha_upgrades.dm
Normal file
22
code/modules/research/designs/circuit/mecha_upgrades.dm
Normal file
@@ -0,0 +1,22 @@
|
||||
/datum/design/circuit/exosuit_upgrade
|
||||
design_order = 2.6
|
||||
|
||||
/datum/design/circuit/exosuit_upgrade/AssembleDesignName()
|
||||
name = "Exosuit Hardware Upgrade ([name])"
|
||||
|
||||
/datum/design/circuit/exosuit/AssembleDesignDesc()
|
||||
desc = "Complex circuitry which unlock certain exosuit faculties."
|
||||
|
||||
/datum/design/circuit/exosuit_upgrade/remote
|
||||
name = "Standard Remote Control"
|
||||
req_tech = list(TECH_DATA = 4, TECH_ENGINEERING = 4, TECH_MATERIAL = 4)
|
||||
build_path = /obj/item/remote_mecha
|
||||
|
||||
/datum/design/circuit/exosuit_upgrade/remote/penal
|
||||
name = "Penal Remote Control"
|
||||
build_path = /obj/item/remote_mecha/penal
|
||||
|
||||
/datum/design/circuit/exosuit_upgrade/remote/ai
|
||||
name = "AI Remote Control"
|
||||
req_tech = list(TECH_DATA = 5, TECH_ENGINEERING = 4, TECH_MATERIAL = 4)
|
||||
build_path = /obj/item/remote_mecha/ai
|
||||
Reference in New Issue
Block a user