Files
Bubberstation/code/datums/id_trim/admin.dm
SkyratBot d3c3f4fbed [MIRROR] Greyscale ID Department Colors (+ Rainbow ID Card) [MDB IGNORE] (#14965)
* Greyscale ID Department Colors (+ Rainbow ID Card)

* Update clown.dm

Co-authored-by: BluBerry016 <50649185+unit0016@users.noreply.github.com>
Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
2022-07-19 01:29:58 +00:00

22 lines
773 B
Plaintext

/// Trim for admins and debug cards. Has every single access in the game.
/datum/id_trim/admin
assignment = "Jannie"
trim_state = "trim_janitor"
department_color = COLOR_CENTCOM_BLUE
subdepartment_color = COLOR_SERVICE_LIME
/datum/id_trim/admin/New()
. = ..()
// Every single access in the game, all on one handy trim.
access = SSid_access.get_region_access_list(list(REGION_ALL_GLOBAL))
/// Trim for highlander cards, used during the highlander adminbus event.
/datum/id_trim/highlander
assignment = "Highlander"
trim_state = "trim_ert_deathcommando"
department_color = COLOR_CENTCOM_BLUE
subdepartment_color = COLOR_SERVICE_LIME
/datum/id_trim/highlander/New()
. = ..()
access = SSid_access.get_region_access_list(list(REGION_CENTCOM, REGION_ALL_STATION))