mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
30 lines
857 B
Plaintext
30 lines
857 B
Plaintext
/datum/design/component/string
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_STRING_COMPONENTS
|
|
)
|
|
|
|
/datum/design/component/string/tostring
|
|
name = "To String Component"
|
|
id = "comp_tostring"
|
|
build_path = /obj/item/circuit_component/tostring
|
|
|
|
/datum/design/component/string/tonumber
|
|
name = "To Number"
|
|
id = "comp_tonumber"
|
|
build_path = /obj/item/circuit_component/tonumber
|
|
|
|
/datum/design/component/string/concat
|
|
name = "Concatenation Component"
|
|
id = "comp_concat"
|
|
build_path = /obj/item/circuit_component/concat
|
|
|
|
/datum/design/component/string/textcase
|
|
name = "Textcase Component"
|
|
id = "comp_textcase"
|
|
build_path = /obj/item/circuit_component/textcase
|
|
|
|
/datum/design/component/string/contains
|
|
name = "String Contains Component"
|
|
id = "comp_string_contains"
|
|
build_path = /obj/item/circuit_component/compare/contains
|