mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* Fixes Settings * Fixes MFA * [SPR part 6] Admins can now edit reverse pod delay times (#53833) * convert delay vars to a list, UI changes tgui bundle Bugfix * Rebuild tgui * e * tgui: Fix issues detected by SonarQube (#55098) * tgui: Fix issues detected by sonarqube * MacOS compatibility * Rebuild tgui * Working * Working * MOAR * e Co-authored-by: Aleksej Komarov <stylemistake@gmail.com>
60 lines
4.0 KiB
Plaintext
60 lines
4.0 KiB
Plaintext
#define STYLE_STANDARD 1
|
|
#define STYLE_BLUESPACE 2
|
|
#define STYLE_CENTCOM 3
|
|
#define STYLE_SYNDICATE 4
|
|
#define STYLE_BLUE 5
|
|
#define STYLE_CULT 6
|
|
#define STYLE_MISSILE 7
|
|
#define STYLE_RED_MISSILE 8
|
|
#define STYLE_BOX 9
|
|
#define STYLE_HONK 10
|
|
#define STYLE_FRUIT 11
|
|
#define STYLE_INVISIBLE 12
|
|
#define STYLE_GONDOLA 13
|
|
#define STYLE_SEETHROUGH 14
|
|
|
|
#define POD_SHAPE 1
|
|
#define POD_BASE 2
|
|
#define POD_DOOR 3
|
|
#define POD_DECAL 4
|
|
#define POD_GLOW 5
|
|
#define POD_RUBBLE_TYPE 6
|
|
#define POD_NAME 7
|
|
#define POD_DESC 8
|
|
|
|
#define RUBBLE_NONE 1
|
|
#define RUBBLE_NORMAL 2
|
|
#define RUBBLE_WIDE 3
|
|
#define RUBBLE_THIN 4
|
|
|
|
#define POD_SHAPE_NORML 1
|
|
#define POD_SHAPE_OTHER 2
|
|
|
|
#define POD_TRANSIT "1"
|
|
#define POD_FALLING "2"
|
|
#define POD_OPENING "3"
|
|
#define POD_LEAVING "4"
|
|
|
|
#define SUPPLYPOD_X_OFFSET -16
|
|
|
|
GLOBAL_LIST_EMPTY(supplypod_loading_bays)
|
|
|
|
GLOBAL_LIST_INIT(podstyles, list(\
|
|
list(POD_SHAPE_NORML, "pod", TRUE, "default", "yellow", RUBBLE_NORMAL, "supply pod", "A Nanotrasen supply drop pod."),\
|
|
list(POD_SHAPE_NORML, "advpod", TRUE, "bluespace", "blue", RUBBLE_NORMAL, "bluespace supply pod" , "A Nanotrasen Bluespace supply pod. Teleports back to CentCom after delivery."),\
|
|
list(POD_SHAPE_NORML, "advpod", TRUE, "centcom", "blue", RUBBLE_NORMAL, "\improper CentCom supply pod", "A Nanotrasen supply pod, this one has been marked with Central Command's designations. Teleports back to CentCom after delivery."),\
|
|
list(POD_SHAPE_NORML, "darkpod", TRUE, "syndicate", "red", RUBBLE_NORMAL, "blood-red supply pod", "An intimidating supply pod, covered in the blood-red markings of the Syndicate. It's probably best to stand back from this."),\
|
|
list(POD_SHAPE_NORML, "darkpod", TRUE, "deathsquad", "blue", RUBBLE_NORMAL, "\improper Deathsquad drop pod", "A Nanotrasen drop pod. This one has been marked the markings of Nanotrasen's elite strike team."),\
|
|
list(POD_SHAPE_NORML, "pod", TRUE, "cultist", "red", RUBBLE_NORMAL, "bloody supply pod", "A Nanotrasen supply pod covered in scratch-marks, blood, and strange runes."),\
|
|
list(POD_SHAPE_OTHER, "missile", FALSE, FALSE, FALSE, RUBBLE_THIN, "cruise missile", "A big ass missile that didn't seem to fully detonate. It was likely launched from some far-off deep space missile silo. There appears to be an auxiliary payload hatch on the side, though manually opening it is likely impossible."),\
|
|
list(POD_SHAPE_OTHER, "smissile", FALSE, FALSE, FALSE, RUBBLE_THIN, "\improper Syndicate cruise missile", "A big ass, blood-red missile that didn't seem to fully detonate. It was likely launched from some deep space Syndicate missile silo. There appears to be an auxiliary payload hatch on the side, though manually opening it is likely impossible."),\
|
|
list(POD_SHAPE_OTHER, "box", TRUE, FALSE, FALSE, RUBBLE_WIDE, "\improper Aussec supply crate", "An incredibly sturdy supply crate, designed to withstand orbital re-entry. Has 'Aussec Armory - 2532' engraved on the side."),\
|
|
list(POD_SHAPE_NORML, "clownpod", TRUE, "clown", "green", RUBBLE_NORMAL, "\improper HONK pod", "A brightly-colored supply pod. It likely originated from the Clown Federation."),\
|
|
list(POD_SHAPE_OTHER, "orange", TRUE, FALSE, FALSE, RUBBLE_NONE, "\improper Orange", "An angry orange."),\
|
|
list(POD_SHAPE_OTHER, FALSE, FALSE, FALSE, FALSE, RUBBLE_NONE, "\improper S.T.E.A.L.T.H. pod MKVII", "A supply pod that, under normal circumstances, is completely invisible to conventional methods of detection. How are you even seeing this?"),\
|
|
list(POD_SHAPE_OTHER, "gondola", FALSE, FALSE, FALSE, RUBBLE_NONE, "gondola", "The silent walker. This one seems to be part of a delivery agency."),\
|
|
list(POD_SHAPE_OTHER, FALSE, FALSE, FALSE, FALSE, RUBBLE_NONE, FALSE, FALSE, "rl_click", "give_po")\
|
|
))
|
|
|
|
GLOBAL_LIST_INIT(junkmail_messages, world.file2list("strings/junkmail.txt"))
|