mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-02 13:02:38 +00:00
[MIRROR] Integrated the component printer into the integrated circuit UI. You can now link integrated circuits to component printers [MDB IGNORE] (#9107)
* 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> * Integrated the component printer into the integrated circuit UI. You can now link integrated circuits to component printers Co-authored-by: Watermelon914 <37270891+Watermelon914@users.noreply.github.com> Co-authored-by: Watermelon914 <3052169-Watermelon914@ users.noreply.gitlab.com>
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
/obj/item/circuit_component/concat
|
||||
display_name = "Concatenate"
|
||||
desc = "A component that combines strings."
|
||||
category = "String"
|
||||
|
||||
/// The amount of input ports to have
|
||||
var/input_port_amount = 4
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
/obj/item/circuit_component/compare/contains
|
||||
display_name = "String Contains"
|
||||
desc = "Checks if a string contains a word/letter"
|
||||
category = "String"
|
||||
|
||||
input_port_amount = 0
|
||||
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
/obj/item/circuit_component/textcase
|
||||
display_name = "Text Case"
|
||||
desc = "A component that makes its input uppercase or lowercase."
|
||||
category = "String"
|
||||
|
||||
var/datum/port/input/option/textcase_options
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
/obj/item/circuit_component/tonumber
|
||||
display_name = "To Number"
|
||||
desc = "A component that converts its input (a string) to a number. If there's text in the input, it'll only consider it if it starts with a number. It will take that number and ignore the rest."
|
||||
category = "String"
|
||||
|
||||
/// The input port
|
||||
var/datum/port/input/input_port
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
/obj/item/circuit_component/tostring
|
||||
display_name = "To String"
|
||||
desc = "A component that converts its input to text."
|
||||
category = "String"
|
||||
|
||||
/// The input port
|
||||
var/datum/port/input/input_port
|
||||
|
||||
Reference in New Issue
Block a user