MORE BADGES 🦅🦅🔥🔥🗣 (#1)
RAHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH MORE BADGES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Co-authored-by: Krystal <username0458478374@gmail.com> Reviewed-on: https://git.nin0.dev///userplugins/clientSideBadges/pulls/1 Reviewed-by: nin0dev <personal@nin0.dev> Co-authored-by: krystal <krystal@git.nin0.dev> Co-committed-by: krystal <krystal@git.nin0.dev>
This commit is contained in:
parent
1af0fe33f2
commit
03f3c77b57
1 changed files with 175 additions and 12 deletions
187
index.tsx
187
index.tsx
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* Vencord, a Discord client mod
|
||||
* Copyright (c) 2024 Vendicated and contributors
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
//
|
||||
import { ProfileBadge } from "@api/Badges";
|
||||
import { Badges } from "@api/index";
|
||||
|
@ -5,6 +11,7 @@ import { definePluginSettings } from "@api/Settings";
|
|||
import { Devs } from "@utils/constants";
|
||||
import definePlugin, { OptionType } from "@utils/types";
|
||||
import { Forms, Toasts, UserStore } from "@webpack/common";
|
||||
// eslint-disable-next-line unused-imports/no-unused-imports
|
||||
import { User } from "discord-types/general";
|
||||
|
||||
function isCurrentUser(userId: string) {
|
||||
|
@ -12,40 +19,105 @@ function isCurrentUser(userId: string) {
|
|||
return u == userId;
|
||||
}
|
||||
|
||||
|
||||
export default definePlugin({
|
||||
name: "ClientSideBadges",
|
||||
description: "Adds client-side badges to your profile. Other users can't see them!",
|
||||
authors: [Devs.nin0dev],
|
||||
authors: [
|
||||
{ name: "KrystalSkullOfficial", id: 929208515883569182n },
|
||||
Devs.nin0dev,
|
||||
],
|
||||
settingsAboutComponent: () => <>
|
||||
<Forms.FormTitle style={{ color: "red", fontSize: "2rem", fontWeight: "bold" }}>Only you can view the badges. No, this can't and won't be changed.</Forms.FormTitle>
|
||||
<Forms.FormText>You may need to reload Discord after editing your settings for them to apply.</Forms.FormText>
|
||||
</>,
|
||||
settings: definePluginSettings({
|
||||
discordStaff: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
partneredServerOwner: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
earlySupporter: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
activeDeveloper: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
earlyVerifiedBotDeveloper: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
moderatorProgramsAlumni: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
bugHunter: {
|
||||
type: OptionType.BOOLEAN
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
goldenBugHunter: {
|
||||
type: OptionType.BOOLEAN
|
||||
}
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
|
||||
// shout out krystalskullofficial
|
||||
// Nino missed some badges
|
||||
hypesquadEvents: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
houseOfBravery: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
houseOfBrilliance: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
houseOfBalance: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
discordQuests: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
nitro: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
serverBooster: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
legacyUsername: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
|
||||
// These are badges meant for bots so idk why you would want but might as well add them
|
||||
supportsCommands: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
premiumApp: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
usesAutomod: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
|
||||
// These is a badge discord made for april fools 2024, again idk why you would want it but might as well add it
|
||||
aClownForATime: {
|
||||
type: OptionType.BOOLEAN,
|
||||
restartNeeded: true,
|
||||
},
|
||||
}),
|
||||
async start() {
|
||||
const NativeBadges: ProfileBadge[] = [
|
||||
|
@ -104,7 +176,98 @@ export default definePlugin({
|
|||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.goldenBugHunter,
|
||||
link: "https://discord.com/settings/premium"
|
||||
}
|
||||
},
|
||||
|
||||
// shout out krystalskullofficial
|
||||
// Nino missed some badges
|
||||
{
|
||||
description: "HypeSquad Events",
|
||||
image: "https://cdn.discordapp.com/badge-icons/bf01d1073931f921909045f3a39fd264.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.hypesquadEvents,
|
||||
link: "https://support.discord.com/hc/en-us/articles/360035962891-Profile-Badges-101#h_01GM67K5EJ16ZHYZQ5MPRW3JT3"
|
||||
},
|
||||
{
|
||||
description: "HypeSquad Bravery",
|
||||
image: "https://cdn.discordapp.com/badge-icons/8a88d63823d8a71cd5e390baa45efa02.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.houseOfBravery,
|
||||
link: "https://discord.com/settings/hypesquad-online"
|
||||
},
|
||||
{
|
||||
description: "HypeSquad Briliance",
|
||||
image: "https://cdn.discordapp.com/badge-icons/011940fd013da3f7fb926e4a1cd2e618.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.houseOfBrilliance,
|
||||
link: "https://discord.com/settings/hypesquad-online"
|
||||
},
|
||||
{
|
||||
description: "HypeSquad Balance",
|
||||
image: "https://cdn.discordapp.com/badge-icons/3aa41de486fa12454c3761e8e223442e.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.houseOfBalance,
|
||||
link: "https://discord.com/settings/hypesquad-online"
|
||||
},
|
||||
{
|
||||
description: "Discord Quests",
|
||||
image: "https://cdn.discordapp.com/badge-icons/7d9ae358c8c5e118768335dbe68b4fb8.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.discordQuests,
|
||||
link: "https://discord.com/discovery/quests"
|
||||
},
|
||||
{
|
||||
description: "Discord Nitro",
|
||||
image: "https://cdn.discordapp.com/badge-icons/2ba85e8026a8614b640c2837bcdfe21b.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.nitro,
|
||||
link: "https://discord.com/settings/premium"
|
||||
},
|
||||
{
|
||||
description: "Server Booster",
|
||||
image: "https://cdn.discordapp.com/badge-icons/ec92202290b48d0879b7413d2dde3bab.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.serverBooster,
|
||||
link: "https://discord.com/settings/premium"
|
||||
},
|
||||
{
|
||||
description: "Supports Commands",
|
||||
image: "https://cdn.discordapp.com/badge-icons/6f9e37f9029ff57aef81db857890005e.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.supportsCommands,
|
||||
link: "https://discord.com/blog/welcome-to-the-new-era-of-discord-apps?ref=badge"
|
||||
},
|
||||
|
||||
// these badges dont have a link because they literally dont link anywhere
|
||||
{
|
||||
description: "Premium App",
|
||||
image: "https://cdn.discordapp.com/badge-icons/d2010c413a8da2208b7e4f35bd8cd4ac.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.premiumApp,
|
||||
link: ""
|
||||
},
|
||||
{
|
||||
description: "Uses Automod",
|
||||
image: "https://cdn.discordapp.com/badge-icons/f2459b691ac7453ed6039bbcfaccbfcd.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.usesAutomod,
|
||||
link: ""
|
||||
},
|
||||
{
|
||||
description: "Legacy Username",
|
||||
image: "https://cdn.discordapp.com/badge-icons/6de6d34650760ba5551a79732e98ed60.png",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.legacyUsername,
|
||||
link: ""
|
||||
},
|
||||
|
||||
// Im linking to a dicord video about lootboxs incase someone doesnt know the context behind this badge
|
||||
{
|
||||
description: "A clown, for a limited time",
|
||||
image: "https://discord.com/assets/971cfe4aa5c0582000ea.svg",
|
||||
position: Badges.BadgePosition.END,
|
||||
shouldShow: ({ userId }) => isCurrentUser(userId) && this.settings.store.aClownForATime,
|
||||
link: "https://youtu.be/cc2-4ci4G84"
|
||||
},
|
||||
];
|
||||
NativeBadges.forEach(b => Badges.addBadge(b));
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue