Files
Bubberstation/code/modules/research/techweb/nodes/mining_nodes.dm
SkyratBot 065fc837a6 [MIRROR] New Tech Tree (#28226)
* 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>
2024-06-21 09:55:26 +05:30

105 lines
3.1 KiB
Plaintext

/datum/techweb_node/material_processing
id = "material_proc"
starting_node = TRUE
display_name = "Material Processing"
description = "Refinement and processing of alloys and ores to enhance their utility and value."
design_ids = list(
"pickaxe",
"shovel",
"conveyor_switch",
"conveyor_belt",
"mass_driver",
"recycler",
"stack_machine",
"stack_console",
"autolathe",
"rglass",
"plasmaglass",
"plasmareinforcedglass",
"plasteel",
"titaniumglass",
"plastitanium",
"plastitaniumglass",
)
/datum/techweb_node/mining
id = "mining"
display_name = "Mining Technology"
description = "Development of tools meant to optimize mining operations and resource extraction."
prereq_ids = list("material_proc")
design_ids = list(
"cargoexpress",
"brm",
"b_smelter",
"b_refinery",
"ore_redemption",
"mining_equipment_vendor",
"mining_scanner",
"mech_mscanner",
"superresonator",
"mech_drill",
"mod_drill",
"drill",
"mod_orebag",
"beacon",
"telesci_gps",
"mod_gps",
"mod_visor_meson",
"mesons",
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
/datum/techweb_node/low_pressure_excavation
id = "low_pressure_excavation"
display_name = "Low-Pressure Excavation"
description = "Research of Proto-Kinetic Accelerators (PKAs), pneumatic guns renowned for their exceptional performance in low-pressure environments."
prereq_ids = list("mining", "gas_compression")
design_ids = list(
"mecha_kineticgun",
"damagemod",
"rangemod",
"cooldownmod",
"triggermod",
"hypermod",
"borg_upgrade_damagemod",
"borg_upgrade_rangemod",
"borg_upgrade_cooldownmod",
"borg_upgrade_hypermod",
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_2_POINTS)
/datum/techweb_node/plasma_mining
id = "plasma_mining"
display_name = "Plasma Beam Mining"
description = "Engineers' plasma welders have proven highly effective in mining operations. This led to the development of a mech-mounted variant and an enhanced handheld cutter for miners."
prereq_ids = list("low_pressure_excavation", "plasma_control")
design_ids = list(
"mech_plasma_cutter",
"plasmacutter_adv",
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_3_POINTS)
/datum/techweb_node/bitrunning
id = "bitrunning"
display_name = "Bitrunning Technology"
description = "Bluespace technology has led to the development of quantum-scale computing, which unlocks the means to materialize atomic structures while executing advanced programs."
prereq_ids = list("gaming", "applied_bluespace")
design_ids = list(
"byteforge",
"quantum_console",
"netpod",
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_3_POINTS)
/datum/techweb_node/mining_adv
id = "mining_adv"
display_name = "Advanced Mining Technology"
description = "High-level mining equipment, pushing the boundaries of efficiency and effectiveness in resource extraction."
prereq_ids = list("plasma_mining")
design_ids = list(
"jackhammer",
"drill_diamond",
"mech_diamond_drill",
)
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_4_POINTS)