mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
//Mining Component
|
|
/datum/design/component/mining
|
|
name = "Mining Component"
|
|
id = "comp_mine"
|
|
build_path = /obj/item/circuit_component/mining
|
|
|
|
//Item Interact Component
|
|
/datum/design/component/item_interact
|
|
name = "Item Interact Component"
|
|
id = "comp_iinteract"
|
|
build_path = /obj/item/circuit_component/item_interact
|
|
|
|
/datum/techweb_node/comp_advanced_interacts
|
|
id = TECHWEB_NODE_COMP_INTERACTION_COMPONENT
|
|
display_name = "Advanced Action Components"
|
|
description = "Grants access to more advanced action components for the drone shell."
|
|
prereq_ids = list(TECHWEB_NODE_PROGRAMMED_ROBOT)
|
|
design_ids = list(
|
|
"comp_mine",
|
|
"comp_iinteract",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
|
|
//Target Scanner Component
|
|
/datum/design/component/radar_scanner
|
|
name = "Target Scanner Component"
|
|
id = "comp_tscanner"
|
|
build_path = /obj/item/circuit_component/target_scanner
|
|
|
|
//Cell Charge Component
|
|
/datum/design/component/cell_charge
|
|
name = "Cell Charge Component"
|
|
id = "comp_ccharge"
|
|
build_path = /obj/item/circuit_component/cell_charge
|
|
|
|
//Reagent Injector Component (Bluespace)
|
|
/datum/design/component/bci/reagent_injector_bluespace
|
|
name = "Reagent Injector Component (Bluespace)"
|
|
id = "comp_reagent_injector_bluespace"
|
|
build_path = /obj/item/circuit_component/reagent_injector_bluespace
|
|
|
|
/datum/techweb_node/riot_supression/New()
|
|
. = ..()
|
|
design_ids += "comp_tscanner"
|
|
design_ids += "comp_ccharge"
|
|
|
|
/datum/techweb_node/syndicate_basic/New()
|
|
. = ..()
|
|
design_ids += "comp_reagent_injector_bluespace"
|