mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 18:11:16 +00:00
* New Tech Tree * ew * wew * e * Modular Fix all * Bluespace bag fix * fixes broke * Remove drill bit * more fixes * Update scipaper_partner.dm * Update powerator.dm --------- Co-authored-by: Andrew <mt.forspam@gmail.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com> Co-authored-by: SpaceLoveSs13 <68121607+SpaceLoveSs13@users.noreply.github.com>
108 lines
2.9 KiB
Plaintext
108 lines
2.9 KiB
Plaintext
/datum/techweb_node/basic_arms
|
|
id = "basic_arms"
|
|
starting_node = TRUE
|
|
display_name = "Basic Arms"
|
|
description = "Ballistics can be unpredictable in space."
|
|
design_ids = list(
|
|
"toygun",
|
|
"c38_rubber",
|
|
"sec_38",
|
|
"capbox",
|
|
"foam_dart",
|
|
"sec_beanbag_slug",
|
|
"sec_dart",
|
|
"sec_Islug",
|
|
"sec_rshot",
|
|
)
|
|
|
|
/datum/techweb_node/sec_equip
|
|
id = "sec_equip"
|
|
display_name = "Security Equipment"
|
|
description = "All the essentials to subdue a mime."
|
|
prereq_ids = list("basic_arms")
|
|
design_ids = list(
|
|
"camera_assembly",
|
|
"secdata",
|
|
"mining",
|
|
"prisonmanage",
|
|
"rdcamera",
|
|
"seccamera",
|
|
"security_photobooth",
|
|
"photobooth",
|
|
"scanner_gate",
|
|
"turret_control",
|
|
"pepperspray",
|
|
"inspector",
|
|
"evidencebag",
|
|
"handcuffs_s",
|
|
"zipties",
|
|
"seclite",
|
|
"electropack",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
|
|
/datum/techweb_node/riot_supression
|
|
id = "riot_supression"
|
|
display_name = "Riot Supression"
|
|
description = "When you are on the opposing side of a revolutionary movement."
|
|
prereq_ids = list("sec_equip")
|
|
design_ids = list(
|
|
"pin_testing",
|
|
"pin_loyalty",
|
|
"tele_shield",
|
|
"ballistic_shield",
|
|
"bola_energy",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_2_POINTS)
|
|
|
|
/datum/techweb_node/explosives
|
|
id = "explosives"
|
|
display_name = "Explosives"
|
|
description = "For once, intentional explosions."
|
|
prereq_ids = list("riot_supression")
|
|
design_ids = list(
|
|
"large_grenade",
|
|
"adv_grenade",
|
|
"pyro_grenade",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_3_POINTS)
|
|
required_experiments = list(/datum/experiment/ordnance/explosive/lowyieldbomb)
|
|
discount_experiments = list(/datum/experiment/ordnance/explosive/highyieldbomb = TECHWEB_TIER_3_POINTS)
|
|
|
|
/datum/techweb_node/exotic_ammo
|
|
id = "exotic_ammo"
|
|
display_name = "Exotic Ammunition"
|
|
description = "Specialized bullets designed to ignite, freeze, and inflict various other effects on targets, expanding combat capabilities."
|
|
prereq_ids = list("explosives")
|
|
design_ids = list(
|
|
"c38_hotshot",
|
|
"c38_iceblox",
|
|
"techshotshell",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_4_POINTS)
|
|
|
|
/datum/techweb_node/electric_weapons
|
|
id = "electric_weapons"
|
|
display_name = "Electric Weaponry"
|
|
description = "Energy-based weaponry designed for both lethal and non-lethal applications."
|
|
prereq_ids = list("riot_supression")
|
|
design_ids = list(
|
|
"stunrevolver",
|
|
"ioncarbine",
|
|
"temp_gun",
|
|
"lasershell",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_3_POINTS)
|
|
|
|
/datum/techweb_node/beam_weapons
|
|
id = "beam_weapons"
|
|
display_name = "Advanced Beam Weaponry"
|
|
description = "So advanced, even engineers are baffled by its operational principles."
|
|
prereq_ids = list("electric_weapons")
|
|
design_ids = list(
|
|
"beamrifle",
|
|
"xray_laser",
|
|
"nuclear_gun",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_4_POINTS)
|