IPC tech research.

IPC tech research.
IPC eyes protection from weld flash
This commit is contained in:
Dmitry
2025-02-20 14:24:41 +03:00
parent 8bee7f9062
commit fc0b3a2fae
3 changed files with 61 additions and 0 deletions
@@ -834,6 +834,58 @@
category = list("Misc", "Medical Designs")
departmental_flags = DEPARTMENTAL_FLAG_MEDICAL
/datum/design/ipc_heart // GS13 ADDITION
name = "I.P.C heart"
desc = "Allows for the construction of an I.P.C heart."
id = "ipc_heart"
build_type = PROTOLATHE | MECHFAB
materials = list(/datum/material/glass = 400, /datum/material/iron = 800, /datum/material/gold = 300)
build_path = /obj/item/organ/heart/ipc
category = list("Misc", "Medical Designs")
departmental_flags = DEPARTMENTAL_FLAG_MEDICAL | DEPARTMENTAL_FLAG_SCIENCE
/datum/design/ipc_liver // GS13 ADDITION
name = "I.P.C reagent processing liver"
desc = "Allows for the construction of an I.P.C reagent processing liver."
id = "ipc_liver"
build_type = PROTOLATHE | MECHFAB
materials = list(/datum/material/diamond = 400, /datum/material/iron = 800)
build_path = /obj/item/organ/liver/ipc
category = list("Misc", "Medical Designs")
departmental_flags = DEPARTMENTAL_FLAG_MEDICAL | DEPARTMENTAL_FLAG_SCIENCE
/datum/design/ipc_ears // GS13 ADDITION
name = "I.P.C auditory sensors"
desc = "Allows for the construction of an I.P.C auditory sensors."
id = "ipc_ears"
build_type = PROTOLATHE | MECHFAB
materials = list(/datum/material/gold = 400, /datum/material/iron = 800)
build_path = /obj/item/organ/ears/ipc
category = list("Misc", "Medical Designs")
departmental_flags = DEPARTMENTAL_FLAG_MEDICAL | DEPARTMENTAL_FLAG_SCIENCE
/datum/design/ipc_tongue // GS13 ADDITION
name = "I.P.C positronic voicebox"
desc = "Allows for the construction of an I.P.C positronic voicebox."
id = "ipc_tongue"
build_type = PROTOLATHE | MECHFAB
materials = list(/datum/material/gold = 400, /datum/material/iron = 800)
build_path = /obj/item/organ/tongue/robot/ipc
category = list("Misc", "Medical Designs")
departmental_flags = DEPARTMENTAL_FLAG_MEDICAL | DEPARTMENTAL_FLAG_SCIENCE
/datum/design/ipc_eyes // GS13 ADDITION
name = "I.P.C eyes"
desc = "Allows for the construction of an I.P.C eyes."
id = "ipc_eyes"
build_type = PROTOLATHE | MECHFAB
materials = list(/datum/material/glass = 500, /datum/material/iron = 800)
build_path = /obj/item/organ/eyes/ipc
category = list("Misc", "Medical Designs")
departmental_flags = DEPARTMENTAL_FLAG_MEDICAL | DEPARTMENTAL_FLAG_SCIENCE
/////////////////////
///Surgery Designs///
/////////////////////
@@ -79,3 +79,11 @@
"reset_module", "purge_module", "remove_module", "freeformcore_module", "asimov_module", "paladin_module", "tyrant_module", "corporate_module",
"default_module", "borg_ai_control", "mecha_tracking_ai_control", "aiupload", "intellicard")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
/datum/techweb_node/ipc_tech
id = "ipc_tech"
display_name = "I.P.C. parts"
description = "I.P.C. parts research."
prereq_ids = list("robotics", "posibrain")
design_ids = list("ipc_eyes", "ipc_stomach", "ipc_heart", "ipc_liver", "ipc_ears", "ipc_tongue", "ci-power-cord" )
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2000)
+1
View File
@@ -429,6 +429,7 @@
name = "ipc eyes"
icon_state = "cybernetic_eyeballs"
organ_flags = ORGAN_SYNTHETIC // GS13 = Fixes IPC organs decaying, we hope.
flash_protect = 2 // GS13 EDIT Non-organic eyes should be protected from welding flash.
/obj/item/organ/eyes/ipc/emp_act(severity)
. = ..()