mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
24 lines
754 B
Plaintext
24 lines
754 B
Plaintext
/datum/design/component/tempsensor
|
|
name = "Temperature Sensor Component"
|
|
id = "comp_tempsensor"
|
|
build_path = /obj/item/circuit_component/tempsensor
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_SENSOR_COMPONENTS
|
|
)
|
|
|
|
/datum/design/component/pressuresensor
|
|
name = "Pressure Sensor Component"
|
|
id = "comp_pressuresensor"
|
|
build_path = /obj/item/circuit_component/pressuresensor
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_SENSOR_COMPONENTS
|
|
)
|
|
|
|
/datum/design/component/view_sensor
|
|
name = "View Sensor Component"
|
|
id = "comp_view_sensor"
|
|
build_path = /obj/item/circuit_component/view_sensor
|
|
category = list(
|
|
RND_CATEGORY_CIRCUITRY_COMPS + RND_SUBCATEGORY_CIRCUITRY_SENSOR_COMPONENTS
|
|
)
|