mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
32 lines
1003 B
Plaintext
32 lines
1003 B
Plaintext
/datum/design/component/id_getter
|
|
name = "ID Getter Component"
|
|
id = "comp_id_getter"
|
|
build_path = /obj/item/circuit_component/id_getter
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_ID_COMPONENTS
|
|
)
|
|
|
|
/datum/design/component/id_info_reader
|
|
name = "ID Info Reader Component"
|
|
id = "comp_id_info_reader"
|
|
build_path = /obj/item/circuit_component/id_info_reader
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_ID_COMPONENTS
|
|
)
|
|
|
|
/datum/design/component/id_access_reader
|
|
name = "ID Access Reader Component"
|
|
id = "comp_id_access_reader"
|
|
build_path = /obj/item/circuit_component/id_access_reader
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_ID_COMPONENTS
|
|
)
|
|
|
|
/datum/design/component/access_checker
|
|
name = "Access Checker Component"
|
|
id = "comp_access_checker"
|
|
build_path = /obj/item/circuit_component/compare/access
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_ID_COMPONENTS
|
|
)
|