Added dprint and formatted file to it

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2024-09-06 22:57:15 +02:00
parent 55e1cf7cdf
commit f389209e21
106 changed files with 398 additions and 395 deletions

View File

@@ -2,4 +2,4 @@ const largeM = "(256 characters max)"
const smallM = "(128 characters max)"
const ignM = "(16 characters max)"
export { largeM, smallM, ignM }
export { ignM, largeM, smallM }

View File

@@ -14,24 +14,25 @@ const moderationLogChannel = "1193329771795447818"
const devLogChannel = "1193688673632391280"
const waitingListChannel = "1145773618291298384"
const waitingListMessage = "1146027645415473193"
const instructionsgif = "https =//cdn.discordapp.com/attachments/838716950723952640/1188211176300089384/4DMu513uNxbM.gif?ex=6599b2e4&is=65873de4&hm=e727c7a39aacbc47d6a5453f4b5f792a45679983c30d662cd258a311381b6df0&"
const instructionsgif =
"https =//cdn.discordapp.com/attachments/838716950723952640/1188211176300089384/4DMu513uNxbM.gif?ex=6599b2e4&is=65873de4&hm=e727c7a39aacbc47d6a5453f4b5f792a45679983c30d662cd258a311381b6df0&"
export {
embedColor,
guildid,
devMessage,
applicationsChannel,
staffApplicationsChannel,
inactivityLogChannel,
staffOtherChannel,
hypixelGuildID,
onlineLogChannel,
botLogChannel,
guildLogChannel,
errorLogChannel,
moderationLogChannel,
devLogChannel,
devMessage,
embedColor,
errorLogChannel,
guildid,
guildLogChannel,
hypixelGuildID,
inactivityLogChannel,
instructionsgif,
moderationLogChannel,
onlineLogChannel,
staffApplicationsChannel,
staffOtherChannel,
waitingListChannel,
waitingListMessage,
instructionsgif
}
waitingListMessage
}

View File

@@ -73,4 +73,4 @@ const inactivity = [
}
]
export { guild, staff, inactivity }
export { guild, inactivity, staff }

View File

@@ -11,17 +11,4 @@ const beastswstars = 20
const beastswkdr = 2.5
const beastduelswins = 12000
export {
bwstars,
bwfkdr,
bwwins,
swstars,
swkdr,
duelswins,
duelswlr,
beastbwstars,
beastbwfkdr,
beastswstars,
beastswkdr,
beastduelswins
}
export { beastbwfkdr, beastbwstars, beastduelswins, beastswkdr, beastswstars, bwfkdr, bwstars, bwwins, duelswins, duelswlr, swkdr, swstars }

View File

@@ -15,19 +15,19 @@ const countingBanned = "1192183486128341072"
const verifyTick = "1201624332674273290"
export {
gm,
manager,
moderator,
elite,
beast,
member,
guildStaff,
guildRole,
waitingListRole,
defaultMember,
admin,
helper,
muted,
beast,
countingBanned,
verifyTick
}
defaultMember,
elite,
gm,
guildRole,
guildStaff,
helper,
manager,
member,
moderator,
muted,
verifyTick,
waitingListRole
}

View File

@@ -1,15 +1,35 @@
import { ActivityType, Guild } from "discord.js"
const statuses = [
{ name: (guild: Guild) => { return `over ${guild.memberCount} members` }, type: ActivityType.Watching },
{ name: (guild: Guild) => { return `${guild.channels.cache.size} channels` }, type: ActivityType.Watching },
{ name: (guild: Guild) => { return `${guild.premiumSubscriptionCount} boosters` }, type: ActivityType.Watching },
{ name: (guild: Guild) => { return `${guild.voiceStates.cache.size} members in vc` }, type: ActivityType.Watching },
{
name: (guild: Guild) => {
return `over ${guild.memberCount} members`
},
type: ActivityType.Watching
},
{
name: (guild: Guild) => {
return `${guild.channels.cache.size} channels`
},
type: ActivityType.Watching
},
{
name: (guild: Guild) => {
return `${guild.premiumSubscriptionCount} boosters`
},
type: ActivityType.Watching
},
{
name: (guild: Guild) => {
return `${guild.voiceStates.cache.size} members in vc`
},
type: ActivityType.Watching
},
{ name: "over the Illegitimate Server", type: ActivityType.Watching },
{ name: "jon and pit edate", type: ActivityType.Watching },
{ name: "for Martina's return", type: ActivityType.Watching },
{ name: "w vri's feelings", type: ActivityType.Playing },
{ name: "urCryhard steal finals again", type: ActivityType.Watching },
{ name: "with Perlcence the AI", type: ActivityType.Playing },
{ name: "with Perlcence the AI", type: ActivityType.Playing }
]
export default statuses
export default statuses