mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-22 04:38:21 +01:00
Ports a lot of stuff from all around (#23)
* shhh * checks the thing * please don't hurt me, it is my first time * there, much better * this is huge Co-authored-by: crazyraio2 <44246096+crazyraio2@users.noreply.github.com>
This commit is contained in:
co-authored by
crazyraio2
parent
66dc5b5a7e
commit
b5f77eeb66
@@ -46,3 +46,11 @@
|
||||
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"
|
||||
. = ..()
|
||||
|
||||
@@ -2,3 +2,43 @@
|
||||
design_ids += "borg_upgrade_bsrpd"
|
||||
design_ids += "bsrpd"
|
||||
. = ..()
|
||||
|
||||
/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)
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
/datum/techweb_node/telecomms/New()
|
||||
. = ..()
|
||||
design_ids += "message-server"
|
||||
@@ -0,0 +1,7 @@
|
||||
/datum/techweb_node/powerarmor
|
||||
id = "powerarmor"
|
||||
display_name = "Full Body Exoskeleton"
|
||||
description = "Utilizing fluctuations in bluespace crystals, we can draw small amounts of energy to create self-powered body enhancing suits."
|
||||
prereq_ids = list("adv_biotech", "adv_bluespace", "adv_robotics")
|
||||
design_ids = list("powerarmor_skeleton","powerarmor_torso","powerarmor_helmet","powerarmor_armR","powerarmor_armL","powerarmor_legR","powerarmor_legL")
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 7500)
|
||||
Reference in New Issue
Block a user