Adds temporary replacement for flightsuits (#7421)

* update equipment_designs.dm

-adds Construction Hardsuit and Hardsuit Jetpack Upgrade to designs list

* update all_nodes.dm

-adds construction hardsuit and jetpack upgrade to tech node "EVA
Construction Equipment"
-requires advanced engineering and experimental tools, and 5000 tech
points

* update all_nodes.dm again

-i fucked up somehow
-forgot the display_name
This commit is contained in:
Cw 3040
2018-08-17 23:14:18 -04:00
committed by kevinz000
parent 1824fd39ae
commit 0e1c78ca7b
2 changed files with 31 additions and 0 deletions
@@ -30,3 +30,25 @@
construction_time = 100
category = list("Misc")
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING
/datum/design/constructionhardsuit
name = "Construction Hardsuit"
desc = "A hardsuit, designed for EVA construction and hazardous material transportation"
id = "chardsuit"
build_type = PROTOLATHE
build_path = /obj/item/clothing/suit/space/hardsuit/engine
materials = list(MAT_METAL=16000, MAT_GLASS = 8000, MAT_DIAMOND = 200, MAT_GOLD = 3000, MAT_SILVER = 3000, MAT_TITANIUM = 16000)
construction_time = 100
category = list("Misc")
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING
/datum/design/integratedjpack
name = "Hardsuit Jetpack Upgrade"
desc = "A modular upgrade for any hardsuit, giving it an integrated jetpack."
id = "hardsuitjpack"
build_type = PROTOLATHE
build_path = /obj/item/tank/jetpack/suit
materials = list(MAT_METAL=16000, MAT_GLASS = 8000, MAT_DIAMOND = 2000, MAT_GOLD = 6000, MAT_SILVER = 6000, MAT_URANIUM = 10000, MAT_PLASMA = 8000, MAT_TITANIUM = 16000)
construction_time = 100
category = list("Misc")
departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING
@@ -501,6 +501,15 @@
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
export_price = 5000
/datum/techweb_node/engine_hardsuit
id = "engi_hardsuit"
display_name = "EVA Construction Equipment"
description = "Production of EVA construction equipment."
design_ids = list("chardsuit", "hardsuitjpack")
prereq_ids = list("adv_engi", "exp_tools")
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)
export_price = 5000
/////////////////////////weaponry tech/////////////////////////
/datum/techweb_node/weaponry
id = "weaponry"