mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
* Renames and cleans up additionalert module * hoodie * Update modular_skyrat/modules/modular_ert/code/pizza/pizza_outfit.dm * fix dme
20 lines
521 B
Plaintext
20 lines
521 B
Plaintext
/datum/antagonist/ert/odst
|
|
name = "Orbital Drop Shock Trooper"
|
|
role = "Trooper"
|
|
outfit = /datum/outfit/centcom/ert/odst
|
|
|
|
/datum/antagonist/ert/odst/on_gain()
|
|
. = ..()
|
|
equip_odst()
|
|
|
|
/datum/antagonist/ert/odst/proc/equip_odst()
|
|
if(!ishuman(owner.current))
|
|
return
|
|
var/mob/living/carbon/human/human_target = owner.current
|
|
human_target.set_species(/datum/species/human) //ODST are apparently human only.
|
|
return TRUE
|
|
|
|
/datum/antagonist/ert/odst/leader
|
|
name = "Orbital Drop Shock Trooper Leader"
|
|
role = "Commander"
|