mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-25 14:17:32 +01:00
Adds an upgrade to engineering borgs (RSD) (#179)
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
/datum/techweb_node/janitor/bspspray
|
||||
id = "bspspray"
|
||||
display_name = "Advanced Janitoring"
|
||||
description = "A better sprayer for your job!"
|
||||
prereq_ids = list("janitor")
|
||||
design_ids = list("bluespacespray")
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 750)
|
||||
|
||||
/datum/techweb_node/syndicate_basic/cool
|
||||
id = "syndicate_cool"
|
||||
display_name = "A Single Illegal Weapon"
|
||||
description = "Shoot with style! Cannot be supressed!"
|
||||
prereq_ids = list("syndicate_basic")
|
||||
design_ids = list("luger")
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
hidden = FALSE
|
||||
|
||||
/datum/techweb_node/adv_bluetravel
|
||||
id = "advanced_bluetravel"
|
||||
display_name = "Advanced Bluespace Travel"
|
||||
description = "Using superior knowledge of bluespace, you can develop more finely-controlled teleportation equipment."
|
||||
prereq_ids = list("adv_bluespace", "bluespace_warping")
|
||||
design_ids = list("telepad", "telesci_console")
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
|
||||
|
||||
/datum/techweb_node/adv_toolset_implant
|
||||
id = "adv_toolset_implant"
|
||||
display_name = "Advanced Toolset Implant"
|
||||
description = "Allows the creation of alien powerful implants for your arms."
|
||||
prereq_ids = list("alien_bio")
|
||||
design_ids = list("ci-toolset-adv","ci-surgery-adv")
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
|
||||
|
||||
/datum/techweb_node/adv_surgery/New()
|
||||
design_ids += "autodoc"
|
||||
. = ..()
|
||||
|
||||
/datum/techweb_node/computer_board_gaming/New()
|
||||
design_ids += "tetris"
|
||||
. = ..()
|
||||
|
||||
/datum/techweb_node/nanite_smart/New()
|
||||
design_ids += "signaler_nanites"
|
||||
. = ..()
|
||||
|
||||
/datum/techweb_node/engineering/New()
|
||||
design_ids += "upgraded_welder"
|
||||
. = ..()
|
||||
|
||||
/datum/techweb_node/base/New()
|
||||
design_ids += "dropper"
|
||||
. = ..()
|
||||
@@ -0,0 +1,52 @@
|
||||
/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."
|
||||
prereq_ids = list("practical_bluespace", "adv_mining")
|
||||
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"
|
||||
. = ..()
|
||||
Reference in New Issue
Block a user