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
+22 -1
View File
@@ -1,13 +1,23 @@
/datum/ert
///Antag datum team for this type of ERT.
var/team = /datum/team/ert
///Do we open the doors to the "high-impact" weapon/explosive cabinets? Used for combat-focused ERTs.
var/opendoors = TRUE
///Alternate antag datum given to the leader of the squad.
var/leader_role = /datum/antagonist/ert/commander
///Do we humanize all spawned players or keep them the species in their current character prefs?
var/enforce_human = TRUE
var/roles = list(/datum/antagonist/ert/security, /datum/antagonist/ert/medic, /datum/antagonist/ert/engineer) //List of possible roles to be assigned to ERT members.
///A list of roles distributed to the selected candidates that are not the leader.
var/roles = list(/datum/antagonist/ert/security, /datum/antagonist/ert/medic, /datum/antagonist/ert/engineer)
///The custom name assigned to this team, for their antag datum/roundend reporting.
var/rename_team
///Defines the color/alert code of the response team. Unused if a polldesc is defined.
var/code
///The mission given to this ERT type in their flavor text.
var/mission = "Assist the station."
///The number of players for consideration.
var/teamsize = 5
///The "would you like to play as XXX" message used when polling for players.
var/polldesc
/// If TRUE, gives the team members "[role] [random last name]" style names
var/random_names = TRUE
@@ -127,3 +137,14 @@
mission = "Having heard the station's request for aid, assist the crew in defending themselves."
polldesc = "an independent station defense militia"
random_names = TRUE
/datum/ert/medical
opendoors = FALSE
teamsize = 4
leader_role = /datum/antagonist/ert/medical_commander
enforce_human = FALSE //All the best doctors I know are moths and cats
roles = list(/datum/antagonist/ert/medical_technician)
rename_team = "EMT Squad"
code = "Violet"
mission = "Provide emergency medical services to the crew."
polldesc = "an emergency medical response team"