first commit

This commit is contained in:
Space-Banane
2026-02-22 14:55:10 +01:00
commit 9235748a47
23 changed files with 2343 additions and 0 deletions

29
src/config.ts Normal file
View File

@@ -0,0 +1,29 @@
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",
};
// 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},
]