mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-19 10:06:56 +01:00
* initial commit * tgui patch * more fixes * It's Assistant now, not Civilian * review suggestions * make it tsx * update tgui bundle * code quality * fix choosing assistant * convert idcard skins to asset * use ranks + some quality updates * TGUI agent ID (Russian edition) * Fixed new_appearance * Job_icons * DME updated * Changed icon ordering * Updated comment * Add crew_list * Your to ID * WE MUST PLEASE THE LINTER GODS. Also DMIcon instead of assets * Fixed the HUD icon * var instead of proc * Move hud_icon declaration * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Chap <erwin@lombok.demon.nl> * Move agent ID to seperate file * Job_icon first * Requested changes * A little more sanitization * Update tgui/packages/tgui/interfaces/AgentCard.tsx Co-authored-by: Arthri <41360489+Arthri@users.noreply.github.com> Signed-off-by: Chap <erwin@lombok.demon.nl> * Update tgui/packages/tgui/interfaces/AgentCard.tsx Co-authored-by: Arthri <41360489+Arthri@users.noreply.github.com> Signed-off-by: Chap <erwin@lombok.demon.nl> * Bundle update * WE MUST PLEASE THE LINTER --------- Signed-off-by: Chap <erwin@lombok.demon.nl> Co-authored-by: larentoun <larentoun@gmail.com> Co-authored-by: larentoun <31931237+larentoun@users.noreply.github.com> Co-authored-by: Adrer <adrermail@gmail.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: Arthri <41360489+Arthri@users.noreply.github.com>
37 lines
2.5 KiB
Plaintext
37 lines
2.5 KiB
Plaintext
//Languages/species/whitelist. //Languages and species fit with mobs right
|
|
GLOBAL_LIST_EMPTY(all_species)
|
|
GLOBAL_LIST_EMPTY(all_languages)
|
|
GLOBAL_LIST_EMPTY(language_keys) // Table of say codes for all languages
|
|
GLOBAL_LIST_EMPTY(all_superheroes)
|
|
|
|
GLOBAL_LIST_EMPTY(clients) //list of all clients
|
|
GLOBAL_LIST_EMPTY(admins) //list of all clients whom are admins
|
|
GLOBAL_LIST_EMPTY(de_admins) //list of all admins who have used the de-admin verb.
|
|
GLOBAL_LIST_EMPTY(de_mentors) //list of all mentors who have used the de-admin verb.
|
|
GLOBAL_LIST_EMPTY(directory) //list of all ckeys with associated client
|
|
GLOBAL_LIST_EMPTY(stealthminID) //reference list with IDs that store ckeys, for stealthmins
|
|
|
|
//Since it didn't really belong in any other category, I'm putting this here
|
|
//This is for procs to replace all the goddamn 'in world's that are chilling around the code
|
|
|
|
GLOBAL_LIST_EMPTY(player_list) //List of all mobs **with clients attached**. Excludes /mob/new_player
|
|
GLOBAL_LIST_EMPTY(new_player_mobs) // List of all new player mobs in the lobby
|
|
GLOBAL_LIST_EMPTY(mob_list) //List of all mobs, including clientless
|
|
GLOBAL_LIST_EMPTY(silicon_mob_list) //List of all silicon mobs, including clientless
|
|
GLOBAL_LIST_EMPTY(mob_living_list) //all instances of /mob/living and subtypes
|
|
GLOBAL_LIST_EMPTY(carbon_list) //all instances of /mob/living/carbon and subtypes, notably does not contain simple animals
|
|
GLOBAL_LIST_EMPTY(human_list) //all instances of /mob/living/carbon/human and subtypes
|
|
GLOBAL_LIST_EMPTY(alive_mob_list) //List of all alive mobs, including clientless. Excludes /mob/new_player
|
|
GLOBAL_LIST_EMPTY(dead_mob_list) //List of all dead mobs, including clientless. Excludes /mob/new_player
|
|
GLOBAL_LIST_EMPTY(non_respawnable_keys) //List of ckeys that are excluded from respawning for remainder of round.
|
|
GLOBAL_LIST_INIT(simple_animals, list(list(), list(), list(), list())) //One for each AI_* status define, List of all simple animals, including clientless
|
|
GLOBAL_LIST_EMPTY(bots_list) //List of all bots(beepsky, medibots,etc)
|
|
GLOBAL_LIST_EMPTY(roundstart_observer_keys) //List of ckeys who ghosted before the game began.
|
|
GLOBAL_LIST_EMPTY(antag_hud_users) // ckeys of users who have enabled ahud at some point during the game
|
|
GLOBAL_LIST_EMPTY(crew_list) // list of all crew on manifest, contains name paired with their assignment
|
|
|
|
GLOBAL_LIST_EMPTY(surgeries_list)
|
|
GLOBAL_LIST_EMPTY(hear_radio_list) //Mobs that hear the radio even if there's no client
|
|
|
|
GLOBAL_LIST_EMPTY(emote_list)
|