Tinasha-Bot/config.js

98 lines
3.4 KiB
JavaScript
Raw Normal View History

2023-08-20 14:29:07 +09:00
module.exports = {
OWNER_IDS: [334307216926703616], // Bot owner ID's
PREFIX: "::", // Default prefix for the bot
SUPPORT_SERVER: "https://kiera-bot.serenetia.com", // Your bot support server
PRESENCE: {
ENABLED: true, // Whether or not the bot should update its status
STATUS: "online", // The bot's status [online, idle, dnd, invisible]
TYPE: "LISTENING", // Status type for the bot [PLAYING | LISTENING | WATCHING | COMPETING]
MESSAGE: "/play with {members} members in {servers} servers", // Your bot status message
},
DASHBOARD: {
enabled: true, // enable or disable dashboard
baseURL: "https://dash-kiera.serenetia.com", // base url
failureURL: "https://dash-kiera.serenetia.com", // failure redirect url
port: "3555", // port to run the bot on
},
INTERACTIONS: {
SLASH: true, // Should the interactions be enabled
CONTEXT: true, // Should contexts be enabled
GLOBAL: true, // Should the interactions be registered globally
TEST_GUILD_ID: "753500548656791573", // Guild ID where the interactions should be registered. [** Test you commands here first **] //NOT REQUIRED
},
XP_SYSTEM: {
COOLDOWN: 5, // Cooldown in seconds between messages
DEFAULT_LVL_UP_MSG: "{m}, You just advanced to **Level {l}**",
},
MISCELLANEOUS: {
DAILY_COINS: 100, // coins to be received by daily command
},
ECONOMY: {
CURRENCY: "₪",
DAILY_COINS: 1000, // coins to be received by daily command
MIN_BEG_AMOUNT: 1000, // minimum coins to be received when beg command is used
MAX_BEG_AMOUNT: 25000, // maximum coins to be received when beg command is used
},
SUGGESTIONS: {
ENABLED: true, // Should the suggestion system be enabled
EMOJI: {
UP_VOTE: "⬆️",
DOWN_VOTE: "⬇️",
},
DEFAULT_EMBED: "#0099ff",
APPROVED_EMBED: "#00ff00",
DENIED_EMBED: "#ff0000",
},
IMAGE: {
BASE_API: "https://image-api.strangebot.xyz",
},
MUSIC: {
IDLE_TIME: 60, // Time in seconds before the bot disconnects from the voice channel
MAX_SEARCH_RESULTS: 20,
NODES: [
{
2023-10-10 23:44:51 +09:00
host: "lavalink.serenetia.com",
2023-08-20 14:29:07 +09:00
port: 443,
password: "amanechan",
secure: true,
},
2023-10-10 23:44:51 +09:00
{
2023-11-22 11:48:05 +09:00
host: "lavalink-sg.serenetia.com",
port: 443,
2023-10-10 23:44:51 +09:00
password: "amanechan",
2023-08-20 14:29:07 +09:00
],
},
/* Bot Embed Colors */
EMBED_COLORS: {
BOT_EMBED: "#068ADD",
TRANSPARENT: "#36393F",
SUCCESS: "#00A56A",
ERROR: "#D61A3C",
WARNING: "#F7E919",
AUTOMOD: "#36393F",
TICKET_CREATE: "#068ADD",
TICKET_CLOSE: "#068ADD",
TIMEOUT_LOG: "#102027",
UNTIMEOUT_LOG: "#4B636E",
KICK_LOG: "#FF7961",
SOFTBAN_LOG: "#AF4448",
BAN_LOG: "#D32F2F",
VMUTE_LOG: "#102027",
VUNMUTE_LOG: "#4B636E",
DEAFEN_LOG: "#102027",
UNDEAFEN_LOG: "#4B636E",
DISCONNECT_LOG: "RANDOM",
MOVE_LOG: "RANDOM",
GIVEAWAYS: "#FF468A",
UPDATE: "#000000",
},
/* Maximum number of keys that can be stored */
CACHE_SIZE: {
GUILDS: 10000,
USERS: 1000000,
MEMBERS: 1000000,
},
MESSAGES: {
API_ERROR: "Unexpected Backend Error! Try again later or contact support server",
},
};