Integrated the component printer into the integrated circuit UI. You can now link integrated circuits to component printers (#62287)

Co-authored-by: Watermelon914 <3052169-Watermelon914@users.noreply.gitlab.com>
This commit is contained in:
Watermelon914
2021-10-28 11:42:57 -07:00
committed by GitHub
co-authored by Watermelon914
parent bfe0fcc601
commit 44a2af780d
86 changed files with 571 additions and 34 deletions
@@ -6,6 +6,7 @@
/obj/item/circuit_component/direction
display_name = "Get Direction"
desc = "A component that returns the direction of itself and an entity."
category = "Entity"
/// The input port
var/datum/port/input/input_port
@@ -6,6 +6,7 @@
/obj/item/circuit_component/gps
display_name = "Internal GPS"
desc = "A component that returns the xyz co-ordinates of itself."
category = "Entity"
/// The result from the output
var/datum/port/output/x_pos
@@ -6,6 +6,7 @@
/obj/item/circuit_component/health
display_name = "Get Health"
desc = "A component that returns the health of an organism."
category = "Entity"
/// The input port
var/datum/port/input/input_port
@@ -6,6 +6,7 @@
/obj/item/circuit_component/hear
display_name = "Voice Activator"
desc = "A component that listens for messages. Requires a shell."
category = "Entity"
/// The message heard
var/datum/port/output/message_port
@@ -6,6 +6,7 @@
/obj/item/circuit_component/pinpointer
display_name = "Proximity Pinpointer"
desc = "A component that returns the xyz co-ordinates of its entity input, as long as its in view."
category = "Entity"
var/datum/port/input/target
@@ -6,6 +6,7 @@
/obj/item/circuit_component/self
display_name = "Self"
desc = "A component that returns the current shell."
category = "Entity"
/// The shell this component is attached to.
var/datum/port/output/output
@@ -6,6 +6,7 @@
/obj/item/circuit_component/species
display_name = "Get Species"
desc = "A component that returns the species of its input."
category = "Entity"
/// The input port
var/datum/port/input/input_port