mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-10 10:01:40 +00:00
Adds a new emergency response team, the ERP! It stands for Emergency Response Party the ERP includes: -the coordinator: basically the captain of the operation, armed with a birthday cake, balloon and lots of fireworks to start the celebration -the bouncer: the big boy, has a telebaton and an armor vest (if youre a loser you get a police hat too) -the constructor: has tools, materials to build the party, disco tiles and an ethereal disco ball planter -the cleaning service: your normal jannie, with his trusty mop, trash bag and cleaning grenades -the comedian: a clown, armed with instruments, a bananium shield and chameleon suit/hat, for some comedy at the party
83 lines
2.7 KiB
Plaintext
83 lines
2.7 KiB
Plaintext
/datum/ert
|
|
var/mobtype = /mob/living/carbon/human
|
|
var/team = /datum/team/ert
|
|
var/opendoors = TRUE
|
|
var/leader_role = /datum/antagonist/ert/commander
|
|
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.
|
|
var/rename_team
|
|
var/code
|
|
var/mission = "Assist the station."
|
|
var/teamsize = 5
|
|
var/polldesc
|
|
|
|
/datum/ert/New()
|
|
if (!polldesc)
|
|
polldesc = "a Code [code] Nanotrasen Emergency Response Team"
|
|
|
|
/datum/ert/blue
|
|
opendoors = FALSE
|
|
code = "Blue"
|
|
|
|
/datum/ert/amber
|
|
code = "Amber"
|
|
|
|
/datum/ert/red
|
|
leader_role = /datum/antagonist/ert/commander/red
|
|
roles = list(/datum/antagonist/ert/security/red, /datum/antagonist/ert/medic/red, /datum/antagonist/ert/engineer/red)
|
|
code = "Red"
|
|
|
|
/datum/ert/deathsquad
|
|
roles = list(/datum/antagonist/ert/deathsquad)
|
|
leader_role = /datum/antagonist/ert/deathsquad/leader
|
|
rename_team = "Deathsquad"
|
|
code = "Delta"
|
|
mission = "Leave no witnesses."
|
|
polldesc = "an elite Nanotrasen Strike Team"
|
|
|
|
/datum/ert/centcom_official
|
|
code = "Green"
|
|
teamsize = 1
|
|
opendoors = FALSE
|
|
leader_role = /datum/antagonist/official
|
|
roles = list(/datum/antagonist/official)
|
|
rename_team = "CentCom Officials"
|
|
polldesc = "a CentCom Official"
|
|
|
|
/datum/ert/centcom_official/New()
|
|
mission = "Conduct a routine performance review of [station_name()] and its Captain."
|
|
|
|
/datum/ert/inquisition
|
|
roles = list(/datum/antagonist/ert/chaplain/inquisitor, /datum/antagonist/ert/security/inquisitor, /datum/antagonist/ert/medic/inquisitor)
|
|
leader_role = /datum/antagonist/ert/commander/inquisitor
|
|
rename_team = "Inquisition"
|
|
mission = "Destroy any traces of paranormal activity aboard the station."
|
|
polldesc = "a Nanotrasen paranormal response team"
|
|
|
|
/datum/ert/janitor
|
|
roles = list(/datum/antagonist/ert/janitor, /datum/antagonist/ert/janitor/heavy)
|
|
leader_role = /datum/antagonist/ert/janitor/heavy
|
|
teamsize = 4
|
|
opendoors = FALSE
|
|
rename_team = "Janitor"
|
|
mission = "Clean up EVERYTHING."
|
|
polldesc = "a Nanotrasen Janitorial Response Team"
|
|
|
|
/datum/ert/intern
|
|
roles = list(/datum/antagonist/ert/intern)
|
|
leader_role = /datum/antagonist/ert/intern/leader
|
|
teamsize = 7
|
|
opendoors = FALSE
|
|
rename_team = "Horde of Interns"
|
|
mission = "Assist in conflict resolution."
|
|
polldesc = "an unpaid internship opportunity with Nanotrasen"
|
|
|
|
/datum/ert/erp
|
|
roles = list(/datum/antagonist/ert/security/party, /datum/antagonist/ert/clown/party, /datum/antagonist/ert/engineer/party, /datum/antagonist/ert/janitor/party)
|
|
leader_role = /datum/antagonist/ert/commander/party
|
|
opendoors = FALSE
|
|
rename_team = "Emergency Response Party"
|
|
mission = "Create entertainment for the crew."
|
|
polldesc = "a Code Rainbow Nanotrasen Emergency Response Party"
|
|
code = "Rainbow"
|