mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 17:52:36 +00:00
* Kills misc ID trims file (#60483) Co-authored-by: Thunder12345 <stewart@ critar.demon.co.uk> * Kills misc ID trims file Co-authored-by: Thunder12345 <Thunder12345@users.noreply.github.com> Co-authored-by: Thunder12345 <stewart@ critar.demon.co.uk>
19 lines
616 B
Plaintext
19 lines
616 B
Plaintext
/// Trim for admins and debug cards. Has every single access in the game.
|
|
/datum/id_trim/admin
|
|
assignment = "Jannie"
|
|
trim_state = "trim_ert_janitor"
|
|
|
|
/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"
|
|
|
|
/datum/id_trim/highlander/New()
|
|
. = ..()
|
|
access = SSid_access.get_region_access_list(list(REGION_CENTCOM, REGION_ALL_STATION))
|