mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 07:54:14 +00:00
* tgu * utter bullshit * fixes more bugs * a * barsign bullshit * Update barsigns.dm * bitrunner update * infiltrator bullshit * ports 2 gamebreaking bug fixes * mentorwho is now in a block * Sec mech bay for fulp maps * merge conflict * oh man im pushing this to map depot --------- Co-authored-by: SgtHunk <68669754+SgtHunk@users.noreply.github.com>
31 lines
1000 B
Plaintext
31 lines
1000 B
Plaintext
#define GUARDIAN_THEME_TECH "tech"
|
|
#define GUARDIAN_THEME_MAGIC "magic"
|
|
#define GUARDIAN_THEME_CARP "carp"
|
|
#define GUARDIAN_THEME_MINER "miner"
|
|
|
|
#define GUARDIAN_MAGIC "magic"
|
|
#define GUARDIAN_TECH "tech"
|
|
|
|
#define GUARDIAN_ASSASSIN "assassin"
|
|
#define GUARDIAN_CHARGER "charger"
|
|
#define GUARDIAN_DEXTROUS "dextrous"
|
|
#define GUARDIAN_EXPLOSIVE "explosive"
|
|
#define GUARDIAN_GASEOUS "gaseous"
|
|
#define GUARDIAN_GRAVITOKINETIC "gravitokinetic"
|
|
#define GUARDIAN_LIGHTNING "lightning"
|
|
#define GUARDIAN_PROTECTOR "protector"
|
|
#define GUARDIAN_RANGED "ranged"
|
|
#define GUARDIAN_STANDARD "standard"
|
|
#define GUARDIAN_SUPPORT "support"
|
|
|
|
/// List of all guardians currently extant
|
|
GLOBAL_LIST_EMPTY(parasites)
|
|
|
|
/// Assoc list of guardian theme singletons
|
|
GLOBAL_LIST_INIT(guardian_themes, list(
|
|
GUARDIAN_THEME_TECH = new /datum/guardian_fluff/tech,
|
|
GUARDIAN_THEME_MAGIC = new /datum/guardian_fluff,
|
|
GUARDIAN_THEME_CARP = new /datum/guardian_fluff/carp,
|
|
GUARDIAN_THEME_MINER = new /datum/guardian_fluff/miner,
|
|
))
|