32 lines
1017 B
TypeScript
32 lines
1017 B
TypeScript
import { ActivityType } from "discord.js";
|
|
|
|
|
|
|
|
export const GUILD_ID = '1475098530505953441';
|
|
|
|
|
|
export const CHANNELS = {
|
|
RULES: "1475100731991392539",
|
|
DEV: "1475110775235543092",
|
|
ANNOUNCEMENTS: "1475100626286547004",
|
|
UPDATES: "1475101645963661333",
|
|
DEV_CHAT: "1475101776561569875",
|
|
GENERAL: "1475098531814707343",
|
|
DEV_MEMES: "1475101184069992670",
|
|
MODERATOR_ONLY: "1475100731991392542",
|
|
};
|
|
|
|
export const ROLES = {
|
|
RULES: "1475100051352191047",
|
|
MAINTAINERS: "1475099468591272090",
|
|
COMMUNITY_ADMINS: "1475099507527258218",
|
|
I_USE_SHSF: "1475099569019949077"
|
|
};
|
|
|
|
// Discord modified the way activities work, for now, we'll only use custom ones
|
|
export const ROTATE_ACTIVITIES:{content:string;type:ActivityType}[] = [
|
|
{content: "Fixing Bugs", type: ActivityType.Custom},
|
|
{content: "Adding New Features", type: ActivityType.Custom},
|
|
{content: "Improving Performance", type: ActivityType.Custom},
|
|
{content: "Listening to Feedback", type: ActivityType.Custom},
|
|
] |