mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-19 22:23:11 +00:00
## About The Pull Request This PR reintroduces #85759, #85892 and #85894. #85892 has post-wallening arrows, but it isn't a big deal because they fit the top-down or 3/4 style we've for a lot of things. ## Why It's Good For The Game Reintroducing lost features and improvements. Remember to remove the 'Lost in the wallening revert' label from those PRs when this is merged. ## Changelog N/A
26 lines
852 B
Plaintext
26 lines
852 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
|
|
threat_modifier = -INFINITY
|
|
big_pointer = TRUE
|
|
pointer_color = COLOR_GREEN
|
|
|
|
/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))
|