mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-07 13:43:06 -04:00
[nextgen] Add DynamicCardStack
This commit is contained in:
parent
048073b522
commit
4c8a9927ea
15 changed files with 874 additions and 94 deletions
|
@ -1,10 +1,12 @@
|
|||
const { Permissions } = require("detritus-client/lib/constants")
|
||||
const { decimalToHexColor } = require("#utils/color");
|
||||
|
||||
module.exports.DISCORD_INVITES = Object.freeze({
|
||||
support: "https://discord.gg/8c4p6xcjru",
|
||||
privacy: "https://discord.gg/sQs8FhcTGh",
|
||||
invite: "https://discord.gg/cHd28DrM7f",
|
||||
help: "https://discord.gg/xQNBB3WFne"
|
||||
help: "https://discord.gg/xQNBB3WFne",
|
||||
feedback_cardstack: "https://discord.gg/mEWZqhHV3S",
|
||||
})
|
||||
|
||||
module.exports.DEFAULT_BOT_NAME = 'labsCore'
|
||||
|
@ -40,6 +42,16 @@ module.exports.COLORS = Object.freeze({
|
|||
incognito: 10057726,
|
||||
})
|
||||
|
||||
module.exports.COLORS_HEX = Object.freeze({
|
||||
error: decimalToHexColor(module.exports.COLORS.error),
|
||||
success: decimalToHexColor(module.exports.COLORS.success),
|
||||
warning: decimalToHexColor(module.exports.COLORS.warning),
|
||||
embed: decimalToHexColor(module.exports.COLORS.embed),
|
||||
brand: decimalToHexColor(module.exports.COLORS.brand),
|
||||
nsfw: decimalToHexColor(module.exports.COLORS.nsfw),
|
||||
incognito: decimalToHexColor(module.exports.COLORS.incognito),
|
||||
})
|
||||
|
||||
// Permission requirements that apply to commands
|
||||
module.exports.PERMISSION_GROUPS = Object.freeze({
|
||||
// Baseline permission set for regular commands
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue