Adds an upgrade to engineering borgs (RSD) (#179)

This commit is contained in:
SandPoot
2021-09-05 20:14:09 -03:00
committed by GitHub
parent ed83bb4b24
commit cdbc992e14
5 changed files with 59 additions and 15 deletions
@@ -52,6 +52,14 @@
construction_time = 120
category = list("Cyborg Upgrade Modules")
/datum/design/borg_upgrade_shuttlemaking
name = "Cyborg Upgrade (Rapid Shuttle Designator)"
id = "borg_upgrade_shuttlemaking"
build_type = MECHFAB
build_path = /obj/item/borg/upgrade/shuttlemaking
materials = list(/datum/material/iron=6000, /datum/material/titanium=3750, /datum/material/bluespace=3750) //75% cost of the non-borg counterpart, balanced? i don't know
construction_time = 120 //Try to make it take longer just in case
category = list("Cyborg Upgrade Modules")
///Power Armor
/datum/design/powerarmor_skeleton
@@ -1,8 +1,3 @@
/datum/techweb_node/bluespace_portal/New()
design_ids += "borg_upgrade_bsrpd"
design_ids += "bsrpd"
. = ..()
/datum/techweb_node/cryptominer
id = "cryptominer"
display_name = "Cryptocurrency Mining"
@@ -46,3 +41,12 @@
/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"
. = ..()