New ERT: Code Violet EMT Response Team (#85650)

## About The Pull Request

This adds a new ERT type, the Code Violet EMT Response Team. This
summons a batch of unarmed EMTs, led by a Chief EMT.

The doctors get some above average equipment for healing/reviving a
deluge of casualties, with the commander getting even better equipment
and the means to defend the rest of their doctors and enforce their
authority on the station (a pulse pistol and telebaton).

This also autodocs the undoced vars on the ERT datum, for easier
reading. You'll see why the mobtype has not been documented in a future
PR. It's entirely unused right now (since it is always overridden) but
this is addressed in #85651.
## Why It's Good For The Game

I've seen plenty of situations where, despite the crew having vanquished
all of their foes, the number of bodies is too high to get everything
back into working order. This also goes for situations where all of the
medical staff are dead, and the corpse-revival engine is unable to
kickstart itself. It's not a situation where sending in an ERT full of
armed goons can help. Sometimes a more delicate, caring hand is required
to get the station rolling again.

Also, autodocs are useful.
## Changelog
🆑 Rhials
add: Code-Violet Medical Support ERT teams have been rolled out for
deployment to Space Station 13 and related Nanotrasen Installations.
/🆑
This commit is contained in:
Rhials
2024-09-05 20:41:44 -04:00
committed by GitHub
parent a5ad56733b
commit f811d41ad9
5 changed files with 132 additions and 1 deletions
@@ -428,3 +428,22 @@
/datum/surgery/advanced/bioware/cortex_folding,
/datum/surgery/advanced/bioware/cortex_folding/mechanic,
)
/obj/item/mod/module/surgical_processor/emergency
desc = "A module using an onboard surgical computer which can be connected to other computers to download and \
perform advanced surgeries on the go. This one came pre-loaded with some emergency surgeries."
device = /obj/item/surgical_processor/mod/emergency
/obj/item/surgical_processor/mod/emergency
loaded_surgeries = list(
/datum/surgery/healing/combo/upgraded/femto,
/datum/surgery/blood_filter,
/datum/surgery/brain_surgery,
/datum/surgery/coronary_bypass,
/datum/surgery/ear_surgery,
/datum/surgery/eye_surgery,
/datum/surgery/hepatectomy,
/datum/surgery/revival,
/datum/surgery/stomach_pump,
/datum/surgery/advanced/wing_reconstruction,
)