ert extravaganza (#18022)

This commit is contained in:
RustingWithYou
2023-12-24 11:18:43 +00:00
committed by GitHub
parent 51a96cb43e
commit f99204a3b7
12 changed files with 488 additions and 12 deletions
@@ -0,0 +1,31 @@
/datum/ghostspawner/human/ert/hephaestus
name = "Hephaestus Industries Asset Protection"
short_name = "hephert"
desc = "A responder from a Hephaestus Industries asset protection squad."
max_count = 2
welcome_message = "You are a member of a Hephaestus heavy asset protection squad. You have recieved a distress call, and been dispatched to investigate. Obey your commander's orders."
outfit = /datum/outfit/admin/ert/hephaestus
possible_species = list(SPECIES_HUMAN, SPECIES_UNATHI)
/datum/ghostspawner/human/ert/hephaestus/medical
name = "Hephaestus Industries Medical Specialist"
short_name = "hephmed"
desc = "A medical specialist from a Hephaestus Industries asset protection squad."
max_count = 1
outfit = /datum/outfit/admin/ert/hephaestus/medic
/datum/ghostspawner/human/ert/hephaestus/engineer
name = "Hephaestus Industries Engineering Specialist"
short_name = "hepheng"
desc = "An engineering specialist from a Hephaestus Industries asset protection squad."
max_count = 1
outfit = /datum/outfit/admin/ert/hephaestus/engi
/datum/ghostspawner/human/ert/hephaestus/leader
name = "Hephaestus Industries Squad Leader"
short_name = "hephlead"
desc = "The commander of a Hephaestus Industries asset protection squad."
max_count = 1
outfit = /datum/outfit/admin/ert/hephaestus/leader
welcome_message = "You are the commander of a Hephaestus heavy asset protection squad. You have recieved a distress call, and been dispatched to investigate. Lead your team."
@@ -0,0 +1,33 @@
/datum/ghostspawner/human/ert/scc
name = "SCC Responder"
short_name = "sccert"
desc = "A Stellar Corporate Conglomerate emergency responder."
welcome_message = "You are part of an SCC asset protection squad, sent in response to a distress call. Obey your commander and safeguard SCC assets."
max_count = 2
outfit = /datum/outfit/admin/ert/scc
mob_name_prefix = "Tpr. "
possible_species = list(SPECIES_HUMAN) //no one made an scc skrellmet
spawnpoints = list("NTERTSpawn")
/datum/ghostspawner/human/ert/scc/engineer
name = "SCC Engineering Specialist"
short_name = "scceng"
desc = "An engineering specialist of the Stellar Corporate Conglomerate ERT."
max_count = 1
mob_name_prefix = "S/Tpr. "
outfit = /datum/outfit/admin/ert/scc/engineer
/datum/ghostspawner/human/ert/scc/medic
name = "SCC Medical Specialist"
short_name = "sccmed"
desc = "A medical specialist of the Stellar Corporate Conglomerate ERT."
max_count = 1
outfit = /datum/outfit/admin/ert/scc/medic
/datum/ghostspawner/human/ert/scc/commander
name = "SCC ERT Commander"
short_name = "scclead"
desc = "The commander of the Stellar Corporate Conglomerate ERT."
max_count = 1
mob_name_prefix = "L/Tpr. "
outfit = /datum/outfit/admin/ert/scc/commander
@@ -0,0 +1,65 @@
/datum/ghostspawner/human/ert/coalition
name = "Coalition Ranger"
short_name = "cocr"
max_count = 3
desc = "Rank and file of the Frontier Ranger response team."
welcome_message = "You are a Ranger with the Frontier Protection Bureau. Your vessel has recieved a distress signal, and you were sent to investigate. Obey the orders of your commander."
outfit = /datum/outfit/admin/ert/coalition
possible_species = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD)
/datum/ghostspawner/human/ert/coalition/medic
name = "Coalition Ranger Medic"
short_name = "cocm"
max_count = 1
desc = "Medical specialist of the Frontier Ranger response team."
outfit = /datum/outfit/admin/ert/coalition/medic
/datum/ghostspawner/human/ert/coalition/engineer
name = "Coalition Ranger Sapper"
short_name = "coce"
max_count = 1
desc = "Sapper and engineering specialist of the Frontier Ranger response team."
outfit = /datum/outfit/admin/ert/coalition/sapper
/datum/ghostspawner/human/ert/coalition/leader
name = "Coalition Ranger Squad Leader"
short_name = "cocl"
max_count = 1
desc = "Commander of the Frontier Ranger response team."
welcome_message = "You are the commander of a Frontier Ranger patrol vessel. While on patrol, your ship received a distress signal and you were sent to investigate. Lead your team."
outfit = /datum/outfit/admin/ert/coalition/leader
/datum/ghostspawner/human/ert/konyang
name = "Konyang Aerospace Force Crewman"
short_name = "konc"
desc = "Rank and file of the Konyang Aerospace Force"
welcome_message = "You are a crewman with the Konyang Aerospace Force. You have recieved a distress signal and been dispatched to investigate. Obey your commander."
outfit = /datum/outfit/admin/ert/konyang
max_count = 3
mob_name_prefix = "PO3. "
possible_species = list(SPECIES_HUMAN, SPECIES_HUMAN_OFFWORLD, SPECIES_IPC, SPECIES_IPC_BISHOP, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_SHELL, SPECIES_IPC_XION, SPECIES_IPC_ZENGHU)
/datum/ghostspawner/human/ert/konyang/medic
name = "Konyang Aerospace Force Medic"
short_name = "konm"
desc = "Medical specialist of the Konyang Aerospace Force."
mob_name_prefix = "PO2. "
outfit = /datum/outfit/admin/ert/konyang/medic
max_count = 1
/datum/ghostspawner/human/ert/konyang/sapper
name = "Konyang Aerospace Force Sapper"
short_name = "kons"
desc = "Sapper and engineering specialist of the Konyang Aerospace Force."
mob_name_prefix = "PO1. "
outfit = /datum/outfit/admin/ert/konyang/sapper
max_count = 1
/datum/ghostspawner/human/ert/konyang/leader
name = "Konyang Aerospace Force Squad Leader"
short_name = "konl"
desc = "Commander of the Konyang Aerospace Force response team."
welcome_message = "You are an officer of the Konyang Aerospace Force. While on patrol, your ship received a distress signal and you were sent to investigate. Lead your team."
mob_name_prefix = "LT. "
outfit = /datum/outfit/admin/ert/konyang/leader
max_count = 1