mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
53 lines
2.0 KiB
Plaintext
53 lines
2.0 KiB
Plaintext
// /datum/techweb_node/cryptominer
|
|
// id = "cryptominer"
|
|
// display_name = "Cryptocurrency Mining"
|
|
// description = "Harness the power of cryptocurrency to make credits for Cargo-- slowly."
|
|
// prereq_ids = list("bluespace_mining")
|
|
// design_ids = list("cryptominer")
|
|
// research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
|
|
|
|
// /datum/techweb_node/cryptominersyndie
|
|
// id = "cryptominersyndie"
|
|
// display_name = "Illegal Cryptocurrency Mining"
|
|
// description = "Harness the power of bluespace to make credits for Cargo-- slowly."
|
|
// prereq_ids = list("cryptominer","syndicate_basic")
|
|
// design_ids = list("cryptominersyndie")
|
|
// research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
|
|
|
|
/datum/techweb_node/computermath
|
|
id = "computermath"
|
|
display_name = "Problem Computer"
|
|
description = "Solve problems for either cargo credits or research points."
|
|
prereq_ids = list("base")
|
|
design_ids = list("computermath")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
|
|
|
/datum/techweb_node/encryption
|
|
id = "encryption_key"
|
|
display_name = "Communication Encryption"
|
|
description = "Study into usage of frequencies within headsets and their repoduction."
|
|
prereq_ids = list("telecomms")
|
|
design_ids = list("eng_key", "sci_key", "med_key", "supply_key", "serv_key")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 3000)
|
|
|
|
/datum/techweb_node/bs_mining
|
|
id = "bluespace_mining"
|
|
display_name = "Bluespace Mining Technology"
|
|
description = "Harness the power of bluespace to make materials out of nothing, slowly. Requires a bluespace core to function."
|
|
prereq_ids = list("practical_bluespace", "adv_mining", "anomaly_research")
|
|
design_ids = list("bluespace_miner")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 7500)
|
|
|
|
/datum/techweb_node/shuttle_route_upgrade_hyper/New()
|
|
design_ids += "disk_shuttle_smoothsail"
|
|
. = ..()
|
|
|
|
/datum/techweb_node/bluespace_portal/New()
|
|
design_ids += "borg_upgrade_bsrpd"
|
|
design_ids += "bsrpd"
|
|
. = ..()
|
|
|
|
/datum/techweb_node/basic_shuttle_tech/New()
|
|
design_ids += "borg_upgrade_shuttlemaking"
|
|
. = ..()
|