mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
61 lines
2.2 KiB
Plaintext
61 lines
2.2 KiB
Plaintext
//Useful for making time-limited things.
|
|
|
|
#define NEW_YEARS_DAY "New Year's Day"
|
|
#define GROUNDHOG_DAY "Groundhog Day"
|
|
#define VALENTINES_DAY "Valentine's Day"
|
|
#define RANDOM_ACTS_OF_KINDNESS_DAY "Random Acts of Kindness Day"
|
|
#define PI_DAY "Pi Day"
|
|
#define ST_PATRICKS_DAY "St. Patrick's Day"
|
|
#define EASTER "Easter"
|
|
#define APRIL_FOOLS_DAY "April Fool's Day"
|
|
#define AUTISM_AWARENESS_DAY "Autism Awareness Day"
|
|
#define FOUR_TWENTY "Four-Twenty"
|
|
#define EARTH_DAY "Earth Day"
|
|
#define LABOR_DAY "Labor Day"
|
|
#define FIREFIGHTERS_DAY "FireFighter's Day"
|
|
#define OWL_AND_PUSSYCAT_DAY "Owl and Pussycat Day"
|
|
#define INTERNATIONAL_PICNIC_DAY "International Picnic Day"
|
|
#define SUMMER_SOLSTICE "Summer Solstice"
|
|
#define DOCTORS_DAY "Doctor's Day"
|
|
#define UFO_DAY "UFO Day"
|
|
#define WRITERS_DAY "Writer's Day"
|
|
#define FRIENDSHIP_DAY "Friendship Day"
|
|
#define BEER_DAY "Beer Day"
|
|
#define TALK_LIKE_A_PIRATE_DAY "Talk-Like-a-Pirate Day"
|
|
#define STUPID_QUESTIONS_DAY "Stupid-Questions Day"
|
|
#define ANIMALS_DAY "Animal's Day"
|
|
#define SMILING_DAY "Smiling Day"
|
|
#define BOSS_DAY "Boss' Day"
|
|
#define HALLOWEEN "Halloween"
|
|
#define VEGAN_DAY "Vegan Day"
|
|
#define KINDNESS_DAY "Kindness Day"
|
|
#define FLOWERS_DAY "Flowers Day"
|
|
#define SAYING_HELLO_DAY "Saying-'Hello' Day"
|
|
#define SINTERKLAAS "Sinterklaasfeest"
|
|
#define HUMAN_RIGHTS_DAY "Human-Rights Day"
|
|
#define MONKEY_DAY "Monkey Day"
|
|
#define END_OF_THE_WORLD "End of the World"
|
|
#define ORGASMING_DAY "Orgasming Day"
|
|
#define XMAS_EVE "Christmas Eve"
|
|
#define XMAS "Christmas"
|
|
#define BOXING_DAY "Boxing Day"
|
|
#define NEW_YEARS_EVE "New Year's Eve"
|
|
#define FRIDAY_THE_13TH "Friday the 13th"
|
|
#define VG_BIRTHDAY "/vg/station Anniversary"
|
|
#define WORLD_BEE_DAY "World Bee Day"
|
|
#define INTERNATIONAL_CLOWN_DAY "International Clown Day"
|
|
#define SPACE_ASSHOLE "St. Space Asshole's Day"
|
|
|
|
//timeslots as strings
|
|
#define SLEEPTIME "the morning shift" //3 to 11
|
|
#define EUROTIME "the European shift" //12 to 15
|
|
#define DAYTIME "the day shift" //16 to 18
|
|
#define PRIMETIME "primetime" //19 to 22
|
|
#define LATETIME "the late shift" //23 to 2
|
|
//timeslots as hour values
|
|
#define SLEEPTIME_HOURS 3 to 11
|
|
#define EUROTIME_HOURS 12 to 15
|
|
#define DAYTIME_HOURS 16 to 18
|
|
#define PRIMETIME_HOURS 19 to 22
|
|
#define LATETIME_HOURS 23, 0 to 2
|