mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-22 12:47:43 +01:00
Many borg changes (seriously) (#69)
This commit is contained in:
@@ -1,3 +1,21 @@
|
||||
/datum/design/borg_upgrade_xwelding
|
||||
name = "Cyborg Upgrade (Experimental Welding Tool)"
|
||||
id = "borg_upgrade_xwelding"
|
||||
build_type = MECHFAB
|
||||
build_path = /obj/item/borg/upgrade/xwelding
|
||||
materials = list(/datum/material/iron = 1000, /datum/material/plasma = 1000, /datum/material/titanium = 1000)
|
||||
construction_time = 100
|
||||
category = list("Cyborg Upgrade Modules")
|
||||
/* Shit doesnt work, work on it later
|
||||
/datum/design/borg_upgrade_plasma
|
||||
name = "Cyborg Upgrade (Plasma Resource)"
|
||||
id = "borg_upgrade_plasma"
|
||||
build_type = MECHFAB
|
||||
build_path = /obj/item/borg/upgrade/plasma
|
||||
materials = list(/datum/material/plasma = 1000, /datum/material/bluespace = 1000)
|
||||
construction_time = 100
|
||||
category = list("Cyborg Upgrade Modules")
|
||||
*/
|
||||
/datum/design/borg_upgrade_bsrpd
|
||||
name = "Cyborg Upgrade (Bluespace RPD)"
|
||||
id = "borg_upgrade_bsrpd"
|
||||
@@ -7,6 +25,34 @@
|
||||
construction_time = 100
|
||||
category = list("Cyborg Upgrade Modules")
|
||||
|
||||
/datum/design/borg_upgrade_premiumka
|
||||
name = "Cyborg Upgrade (Premium Kinetic Accelerator)"
|
||||
id = "borg_upgrade_premiumka"
|
||||
build_type = MECHFAB
|
||||
build_path = /obj/item/borg/upgrade/premiumka
|
||||
materials = list(/datum/material/iron=8000, /datum/material/glass=4000, /datum/material/titanium=2000)
|
||||
construction_time = 120
|
||||
category = list("Cyborg Upgrade Modules")
|
||||
|
||||
/datum/design/borg_upgrade_expand
|
||||
name = "Cyborg Upgrade (Expand)"
|
||||
id = "borg_upgrade_expand"
|
||||
build_type = MECHFAB
|
||||
build_path = /obj/item/borg/upgrade/expand
|
||||
materials = list(/datum/material/iron=20000, /datum/material/glass=5000)
|
||||
construction_time = 120
|
||||
category = list("Cyborg Upgrade Modules")
|
||||
|
||||
/datum/design/borg_upgrade_shrink
|
||||
name = "Cyborg Upgrade (shrink)"
|
||||
id = "borg_upgrade_shrink"
|
||||
build_type = MECHFAB
|
||||
build_path = /obj/item/borg/upgrade/shrink
|
||||
materials = list(/datum/material/iron=20000, /datum/material/glass=5000)
|
||||
construction_time = 120
|
||||
category = list("Cyborg Upgrade Modules")
|
||||
|
||||
|
||||
///Power Armor
|
||||
/datum/design/powerarmor_skeleton
|
||||
name = "Power Armor Skeleton"
|
||||
|
||||
@@ -5,3 +5,13 @@
|
||||
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)
|
||||
|
||||
/datum/techweb_node/adv_robotics/New()
|
||||
design_ids += "borg_upgrade_premiumka"
|
||||
. = ..()
|
||||
|
||||
/datum/techweb_node/cyborg_upg_util/New()
|
||||
design_ids += "borg_upgrade_xwelding"
|
||||
design_ids += "borg_upgrade_shrink"
|
||||
//design_ids += "borg_upgrade_plasma"
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user