mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-12 02:43:49 +00:00
98 lines
3.9 KiB
Plaintext
98 lines
3.9 KiB
Plaintext
|
|
/////////////////////////weaponry tech/////////////////////////
|
|
/datum/techweb_node/weaponry
|
|
id = "weaponry"
|
|
display_name = "Weapon Development Technology"
|
|
description = "Our researchers have found new to weaponize just about everything now."
|
|
prereq_ids = list("engineering")
|
|
design_ids = list("pin_testing", "tele_shield", "lasercarbine")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 7500)
|
|
|
|
/datum/techweb_node/adv_weaponry
|
|
id = "adv_weaponry"
|
|
display_name = "Advanced Weapon Development Technology"
|
|
description = "Our weapons are breaking the rules of reality by now."
|
|
prereq_ids = list("adv_engi", "weaponry")
|
|
design_ids = list("pin_loyalty", "laser_shield", "bullet_shield")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 7500)
|
|
|
|
/datum/techweb_node/electric_weapons
|
|
id = "electronic_weapons"
|
|
display_name = "Electric Weapons"
|
|
description = "Weapons using electric technology"
|
|
prereq_ids = list("weaponry", "adv_power" , "emp_basic")
|
|
design_ids = list("stunrevolver", "stunshell", "ioncarbine")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 3500)
|
|
|
|
/datum/techweb_node/radioactive_weapons
|
|
id = "radioactive_weapons"
|
|
display_name = "Radioactive Weaponry"
|
|
description = "Weapons using radioactive technology."
|
|
prereq_ids = list("adv_engi", "adv_weaponry")
|
|
design_ids = list("nuclear_gun")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
|
|
|
/datum/techweb_node/magnetic_weapons
|
|
id = "magnetic_weapons"
|
|
display_name = "Magnetic Weapons"
|
|
description = "Weapons using magnetic technology"
|
|
prereq_ids = list("weaponry", "adv_weaponry", "emp_adv")
|
|
design_ids = list("magrifle", "magpistol", "mag_magrifle", "mag_magrifle_nl", "mag_magpistol", "mag_magpistol_nl")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
|
|
|
/datum/techweb_node/medical_weapons
|
|
id = "medical_weapons"
|
|
display_name = "Medical Weaponry"
|
|
description = "Weapons using medical technology."
|
|
prereq_ids = list("adv_biotech", "adv_weaponry")
|
|
design_ids = list("rapidsyringe", "shotgundartcryostatis","smartdartrepeater")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2000)
|
|
|
|
/datum/techweb_node/beam_weapons
|
|
id = "beam_weapons"
|
|
display_name = "Beam Weaponry"
|
|
description = "Various basic beam weapons"
|
|
prereq_ids = list("adv_weaponry")
|
|
design_ids = list("temp_gun", "xray_laser")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|
|
|
|
/datum/techweb_node/adv_beam_weapons
|
|
id = "adv_beam_weapons"
|
|
display_name = "Advanced Beam Weaponry"
|
|
description = "Various advanced beam weapons"
|
|
prereq_ids = list("beam_weapons")
|
|
design_ids = list("beamrifle")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 3250) // Sniper
|
|
|
|
/datum/techweb_node/explosive_weapons
|
|
id = "explosive_weapons"
|
|
display_name = "Explosive & Pyrotechnical Weaponry"
|
|
description = "If the light stuff just won't do it."
|
|
prereq_ids = list("adv_weaponry")
|
|
design_ids = list("large_Grenade", "pyro_Grenade", "adv_Grenade")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2750)
|
|
|
|
/datum/techweb_node/ballistic_weapons
|
|
id = "ballistic_weapons"
|
|
display_name = "Ballistic Weaponry"
|
|
description = "This isn't research.. This is reverse-engineering!"
|
|
prereq_ids = list("weaponry")
|
|
design_ids = list("mag_oldsmg", "mag_oldsmg_ap", "mag_oldsmg_ic", "mag_oldsmg_rubber", "mag_oldsmg_tx")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2750)
|
|
|
|
/datum/techweb_node/exotic_ammo
|
|
id = "exotic_ammo"
|
|
display_name = "Exotic Ammunition"
|
|
description = "They won't know what hit em."
|
|
prereq_ids = list("weaponry", "ballistic_weapons")
|
|
design_ids = list("techshotshell", "c38_hotshot", "c38_iceblox")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 3500)
|
|
|
|
/datum/techweb_node/gravity_gun
|
|
id = "gravity_gun"
|
|
display_name = "One-point Bluespace-gravitational Manipulator"
|
|
description = "Fancy wording for gravity gun."
|
|
prereq_ids = list("adv_weaponry", "adv_bluespace")
|
|
design_ids = list("gravitygun", "mech_gravcatapult")
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)
|