mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 06:29:23 +01:00
MODsuits (#59109)
This commit is contained in:
@@ -112,6 +112,28 @@
|
||||
"ripleyupgrade",
|
||||
)
|
||||
|
||||
/datum/techweb_node/mod_basic
|
||||
id = "mod"
|
||||
starting_node = TRUE
|
||||
display_name = "Basic Modular Suits"
|
||||
description = "Specialized back mounted power suits with various different modules."
|
||||
design_ids = list(
|
||||
"mod_armor_standard",
|
||||
"mod_boots",
|
||||
"mod_chestplate",
|
||||
"mod_gauntlets",
|
||||
"mod_helmet",
|
||||
"mod_paint_kit",
|
||||
"mod_shell",
|
||||
"mod_storage",
|
||||
"mod_welding",
|
||||
"mod_mouthhole",
|
||||
"mod_flashlight",
|
||||
"mod_longfall",
|
||||
"mod_thermal_regulator",
|
||||
"mod_plasma",
|
||||
)
|
||||
|
||||
/datum/techweb_node/mech_tools
|
||||
id = "mech_tools"
|
||||
starting_node = TRUE
|
||||
@@ -691,6 +713,7 @@
|
||||
"dispenser_shell",
|
||||
"door_shell",
|
||||
"gun_shell",
|
||||
"mod_circuit",
|
||||
"money_bot_shell",
|
||||
"scanner_gate_shell",
|
||||
"scanner_shell",
|
||||
@@ -1419,6 +1442,96 @@
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
|
||||
//MODsuit tech
|
||||
|
||||
/datum/techweb_node/mod_advanced
|
||||
id = "mod_advanced"
|
||||
display_name = "Advanced Modular Suits"
|
||||
description = "More advanced modules, to improve modular suits."
|
||||
prereq_ids = list("robotics")
|
||||
design_ids = list(
|
||||
"mod_visor_diaghud",
|
||||
"mod_stealth",
|
||||
"mod_holster",
|
||||
"mod_gps",
|
||||
"mod_reagent_scanner",
|
||||
"mod_clamp",
|
||||
"mod_drill",
|
||||
"mod_orebag",
|
||||
"mod_pathfinder",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
|
||||
/datum/techweb_node/mod_engineering
|
||||
id = "mod_engineering"
|
||||
display_name = "Engineering Modular Suits"
|
||||
description = "Engineering suits, for powered engineers."
|
||||
prereq_ids = list("mod_advanced", "engineering")
|
||||
design_ids = list(
|
||||
"mod_armor_engineering",
|
||||
"mod_visor_meson",
|
||||
"mod_t_ray",
|
||||
"mod_magboot",
|
||||
"mod_tether",
|
||||
"mod_constructor",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
|
||||
/datum/techweb_node/mod_advanced_engineering
|
||||
id = "mod_advanced_engineering"
|
||||
display_name = "Advanced Engineering Modular Suits"
|
||||
description = "Advanced Engineering suits, for advanced powered engineers."
|
||||
prereq_ids = list("mod_engineering", "adv_engi")
|
||||
design_ids = list(
|
||||
"mod_armor_atmospheric",
|
||||
"mod_jetpack",
|
||||
"mod_rad_protection",
|
||||
"mod_emp_shield",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 3500)
|
||||
|
||||
/datum/techweb_node/mod_medical
|
||||
id = "mod_medical"
|
||||
display_name = "Medical Modular Suits"
|
||||
description = "Medical suits for quick rescue purposes."
|
||||
prereq_ids = list("mod_advanced", "biotech")
|
||||
design_ids = list(
|
||||
"mod_armor_medical",
|
||||
"mod_visor_medhud",
|
||||
"mod_health_analyzer",
|
||||
"mod_quick_carry",
|
||||
"mod_injector",
|
||||
"mod_organ_thrower",
|
||||
"mod_dna_lock",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
|
||||
/datum/techweb_node/mod_security
|
||||
id = "mod_security"
|
||||
display_name = "Security Modular Suits"
|
||||
description = "Security suits for space crime handling."
|
||||
prereq_ids = list("mod_advanced", "sec_basic")
|
||||
design_ids = list(
|
||||
"mod_armor_security",
|
||||
"mod_visor_sechud",
|
||||
"mod_stealth",
|
||||
"mod_holster",
|
||||
"mod_pathfinder",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
|
||||
/datum/techweb_node/mod_entertainment
|
||||
id = "mod_entertainment"
|
||||
display_name = "Entertainment Modular Suits"
|
||||
description = "Powered suits for protection against low-humor environments."
|
||||
prereq_ids = list("mod_advanced", "clown")
|
||||
design_ids = list(
|
||||
"mod_armor_cosmohonk",
|
||||
"mod_bikehorn",
|
||||
"mod_microwave_beam",
|
||||
)
|
||||
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
||||
|
||||
////////////////////////mech technology////////////////////////
|
||||
/datum/techweb_node/adv_mecha
|
||||
id = "adv_mecha"
|
||||
|
||||
Reference in New Issue
Block a user