mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
## About The Pull Request - Reverts lobotomy back to the standard TG surgery. (Removing a piece of the brain, rolling for special traumas.) - Adds a trauma specific replacement, neurectomy / blessed neurectomy. Given it's an advanced version of brain surgery, requires neurine. (Otherwise the steps are similar to basic brain surgery.) - Puts descriptions on the surgeries to explain what level of traumas each cures. - Raises the success rate to 100%. If you're going to be using neurine/holy water you shouldn't have to do it twice because RNG. - Adds information to the operating computer about trauma treatments  ## Why It's Good For The Game - Perhaps someone wants to roll for traumas, or you want to give someone a trauma as an antag. - Operating computer info good to help in selecting surgeries ## Changelog 🆑 LT3 qol: Operating computer now gives information on trauma treatment qol: Trauma surgeries only show available when there's a trauma to fix add: Trauma neurectomy / blessed neurectomy replacements for clearing traumas balance: Trauma / blessed neurectomy have a 100% success rate by default del: Lobotomy functions like it used to (revert to TG) /🆑
22 lines
1020 B
Plaintext
22 lines
1020 B
Plaintext
/datum/techweb_node/improved_robotic_tend_wounds
|
|
id = TECHWEB_NODE_ROBOTIC_SURGERY
|
|
display_name = "Improved Robotic Repair Surgeries"
|
|
description = "As it turns out, you don't actually need to cut out entire support rods if it's just scratched!"
|
|
prereq_ids = list(TECHWEB_NODE_CONSTRUCTION)
|
|
design_ids = list(
|
|
"robotic_heal_surgery_upgrade"
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS)
|
|
|
|
/datum/techweb_node/advanced_robotic_tend_wounds
|
|
id = TECHWEB_NODE_ROBOTIC_SURGERY_ADVANCED
|
|
display_name = "Advanced Robotic Surgeries"
|
|
description = "Did you know Hephaestus actually has a free online tutorial for synthetic trauma repairs? It's true!"
|
|
prereq_ids = list(TECHWEB_NODE_ROBOTIC_SURGERY)
|
|
design_ids = list(
|
|
"robotic_heal_surgery_upgrade_2",
|
|
"robotic_trauma_surgery",
|
|
"robotic_blessed_trauma_surgery",
|
|
)
|
|
research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS) // less expensive than the organic surgery research equivalent since its JUST tend wounds
|