TravBot-v3/src/defs/info.ts

46 lines
1.3 KiB
TypeScript
Raw Normal View History

2020-08-05 20:08:26 +00:00
// Flags a user can have.
// They're basically your profile badges.
2020-10-15 09:23:24 +00:00
export const flags: { [index: string]: any } = {
DISCORD_EMPLOYEE: 'Discord Employee',
DISCORD_PARTNER: 'Discord Partner',
BUGHUNTER_LEVEL_1: 'Bug Hunter (Level 1)',
BUGHUNTER_LEVEL_2: 'Bug Hunter (Level 2)',
HYPESQUAD_EVENTS: 'HypeSquad Events',
HOUSE_BRAVERY: 'House of Bravery',
HOUSE_BRILLIANCE: 'House of Brilliance',
HOUSE_BALANCE: 'House of Balance',
EARLY_SUPPORTER: 'Early Supporter',
TEAM_USER: 'Team User',
SYSTEM: 'System',
VERIFIED_BOT: 'Verified Bot',
VERIFIED_DEVELOPER: 'Verified Bot Developer',
2020-08-05 20:08:26 +00:00
};
2020-10-15 09:23:24 +00:00
export const filterLevels: { [index: string]: any } = {
DISABLED: 'Off',
MEMBERS_WITHOUT_ROLES: 'No Role',
ALL_MEMBERS: 'Everyone',
2020-08-05 20:08:26 +00:00
};
2020-10-15 09:23:24 +00:00
export const verificationLevels: { [index: string]: any } = {
NONE: 'None',
LOW: 'Low',
MEDIUM: 'Medium',
HIGH: '(╯°□°)╯︵ ┻━┻',
VERY_HIGH: '┻━┻ ミヽ(ಠ益ಠ)ノ彡┻━┻',
};
export const regions: { [index: string]: any } = {
brazil: 'Brazil',
europe: 'Europe',
hongkong: 'Hong Kong',
india: 'India',
japan: 'Japan',
russia: 'Russia',
singapore: 'Singapore',
southafrica: 'South Africa',
sydney: 'Sydney',
'us-central': 'US Central',
'us-east': 'US East',
'us-west': 'US West',
'us-south': 'US South',
2020-08-05 20:08:26 +00:00
};