mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-17 21:32:05 +00:00
Adds the Storage Concealment Implant to techweb research and protolathes. Uses the same nodes as other implants.
39 lines
857 B
Plaintext
39 lines
857 B
Plaintext
/datum/techweb_node/subdermal_implants/New()
|
|
var/list/extra_designs = list(
|
|
"implant_gfluid",
|
|
"implant_slave",
|
|
"implant_hide_backpack"
|
|
)
|
|
LAZYADD(design_ids, extra_designs)
|
|
. = ..()
|
|
|
|
/datum/techweb_node/basic_cyber_organs/New()
|
|
var/list/extra_designs = list(
|
|
"ipc_heart",
|
|
"ipc_lungs",
|
|
"ipc_liver",
|
|
"ipc_stomach",
|
|
"ipc_eyes",
|
|
"ipc_ears",
|
|
"ipc_tongue",
|
|
"ipc_brain",
|
|
"ci-power-cord"
|
|
)
|
|
LAZYADD(design_ids, extra_designs)
|
|
. = ..()
|
|
|
|
/datum/techweb_node/cyber_implants/New()
|
|
var/list/removed_designs = list(
|
|
"ci-medhud", // Removing and re-adding the HUDs to the list because
|
|
"ci-sechud", // the positioning bothers my pattern-seeking mind
|
|
"ci-power-cord"
|
|
)
|
|
var/list/added_designs = list(
|
|
"ci-medhud",
|
|
"ci-sechud",
|
|
"ci-diaghud"
|
|
)
|
|
LAZYREMOVE(design_ids, removed_designs)
|
|
LAZYADD(design_ids, added_designs)
|
|
. = ..()
|