mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-09 22:25:46 +01:00
81aafadc97
* ebent * WHYYY * bobobo * adds ton of epic stuff * messages added * Outfit! * Indentation! Arrhghg * Gamemode checks, antag check stuff and outfit changes and tourist icon * ID icon, random species, gender, hair, a few comments and logs. * Mirroring review * Applies suggestion Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: Pedro <79126660+LetXxx@users.noreply.github.com> * Tourist Id's now have linked accounts, code cleaning as per reviews * Following suggestion * Apply suggestions as per review * Addresses the risk of two people having the same account * Typos and final cleaning * Checking for jobban/Not showing as tourist on manifest * Orbit test * compile * ebent * WHYYY * bobobo * adds ton of epic stuff * messages added * Outfit! * Indentation! Arrhghg * Gamemode checks, antag check stuff and outfit changes and tourist icon * ID icon, random species, gender, hair, a few comments and logs. * Mirroring review * Tourist Id's now have linked accounts, code cleaning as per reviews * Applies suggestion Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: Pedro <79126660+LetXxx@users.noreply.github.com> * Following suggestion * Apply suggestions as per review * Addresses the risk of two people having the same account * Typos and final cleaning * Checking for jobban/Not showing as tourist on manifest * Orbit test * TGUI Bundle Rebuild * Applies suggestions --------- Signed-off-by: Pedro <79126660+LetXxx@users.noreply.github.com> Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
77 lines
2.9 KiB
Plaintext
77 lines
2.9 KiB
Plaintext
|
|
|
|
//Values for antag preferences, event roles, etc. unified here
|
|
|
|
|
|
|
|
//These are synced with the Database, if you change the values of the defines
|
|
//then you MUST update the database!
|
|
// If you're adding a new role, remember to update modules/admin/topic.dm, so admins can dish out
|
|
// justice if someone's abusing your role
|
|
#define ROLE_SYNDICATE "Syndicate"
|
|
#define ROLE_TRAITOR "traitor"
|
|
#define ROLE_OPERATIVE "operative"
|
|
#define ROLE_CHANGELING "changeling"
|
|
#define ROLE_WIZARD "wizard"
|
|
#define ROLE_REV "revolutionary"
|
|
#define ROLE_ALIEN "xenomorph"
|
|
#define ROLE_PAI "pAI"
|
|
#define ROLE_CULTIST "cultist"
|
|
#define ROLE_BLOB "blob"
|
|
#define ROLE_MONKEY "monkey"
|
|
#define ROLE_GANG "gangster"
|
|
#define ROLE_ABDUCTOR "abductor"
|
|
#define ROLE_REVENANT "revenant"
|
|
#define ROLE_HOG_GOD "hand of god: god" // We're prolly gonna port this one day or another
|
|
#define ROLE_HOG_CULTIST "hand of god: cultist"
|
|
#define ROLE_TRADER "trader"
|
|
#define ROLE_TOURIST "Tourist"
|
|
#define ROLE_VAMPIRE "vampire"
|
|
// Role tags for EVERYONE!
|
|
#define ROLE_DEMON "demon"
|
|
#define ROLE_SENTIENT "sentient animal"
|
|
#define ROLE_GUARDIAN "guardian"
|
|
#define ROLE_MORPH "morph"
|
|
#define ROLE_ERT "emergency response team"
|
|
#define ROLE_NYMPH "Dionaea"
|
|
#define ROLE_TSPIDER "terror spider"
|
|
#define ROLE_DRONE "drone"
|
|
#define ROLE_DEATHSQUAD "deathsquad"
|
|
#define ROLE_EVENTMISC "eventmisc"
|
|
#define ROLE_GHOST "ghost role"
|
|
#define ROLE_ELITE "lavaland elite"
|
|
|
|
// Misc jobban categories
|
|
#define ROLEBAN_AHUD "AntagHUD"
|
|
#define ROLEBAN_RECORDS "Records"
|
|
|
|
//Missing assignment means it's not a gamemode specific role, IT'S NOT A BUG OR ERROR.
|
|
//The gamemode specific ones are just so the gamemodes can query whether a player is old enough
|
|
//(in game days played) to play that role
|
|
GLOBAL_LIST_INIT(special_roles, list(
|
|
ROLE_ABDUCTOR = /datum/game_mode/abduction, // Abductor
|
|
ROLE_BLOB, // Blob
|
|
ROLE_CHANGELING = /datum/game_mode/changeling, // Changeling
|
|
ROLE_CULTIST = /datum/game_mode/cult, // Cultist
|
|
ROLE_GUARDIAN, // Guardian
|
|
ROLE_MORPH, // Morph
|
|
ROLE_OPERATIVE = /datum/game_mode/nuclear, // Operative
|
|
ROLE_PAI, // PAI
|
|
ROLE_REVENANT, // Revenant
|
|
ROLE_REV = /datum/game_mode/revolution, // Revolutionary
|
|
ROLE_SENTIENT, // Sentient animal
|
|
ROLE_DEMON, // Slaguther demon
|
|
ROLE_ELITE, // Lavaland Elite
|
|
ROLE_TRADER, // Trader
|
|
ROLE_TRAITOR = /datum/game_mode/traitor, // Traitor
|
|
ROLE_TOURIST, // Tourist
|
|
ROLE_VAMPIRE = /datum/game_mode/vampire, // Vampire
|
|
ROLE_ALIEN, // Xenomorph
|
|
ROLE_WIZARD = /datum/game_mode/wizard // Wizard
|
|
// UNUSED/BROKEN ANTAGS
|
|
// ROLE_HOG_GOD = /datum/game_mode/hand_of_god,
|
|
// ROLE_HOG_CULTIST = /datum/game_mode/hand_of_god,
|
|
// ROLE_MONKEY = /datum/game_mode/monkey, Sooner or later these are going to get ported
|
|
// ROLE_GANG = /datum/game_mode/gang
|
|
))
|