[MIRROR] Circuit component descriptions and module names are now visible to the naked eye. (#7290)

* Circuit component descriptions and module names are now visible to the naked eye. (#60545)

* Circuit component descriptions and module names are now visible to the naked eye.

Co-authored-by: Gurkenglas <gurkenglas@hotmail.de>
This commit is contained in:
SkyratBot
2021-08-01 12:42:08 +02:00
committed by GitHub
parent 842f59fed5
commit 170863cfd7
54 changed files with 61 additions and 62 deletions
@@ -5,7 +5,7 @@
*/
/obj/item/circuit_component/concat
display_name = "Concatenate"
display_desc = "A component that combines strings."
desc = "A component that combines strings."
/// The amount of input ports to have
var/input_port_amount = 4
@@ -5,7 +5,7 @@
*/
/obj/item/circuit_component/compare/contains
display_name = "String Contains"
display_desc = "Checks if a string contains a word/letter"
desc = "Checks if a string contains a word/letter"
input_port_amount = 0
@@ -5,7 +5,7 @@
*/
/obj/item/circuit_component/textcase
display_name = "Text Case"
display_desc = "A component that makes its input uppercase or lowercase."
desc = "A component that makes its input uppercase or lowercase."
/// The input port
var/datum/port/input/input_port
@@ -5,7 +5,7 @@
*/
/obj/item/circuit_component/tonumber
display_name = "To Number"
display_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."
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."
/// The input port
var/datum/port/input/input_port
@@ -5,7 +5,7 @@
*/
/obj/item/circuit_component/tostring
display_name = "To String"
display_desc = "A component that converts its input to text."
desc = "A component that converts its input to text."
/// The input port
var/datum/port/input/input_port