This commit is contained in:
Indiana Jone (Indi) 2025-02-25 22:18:50 -05:00
parent e7f724bc86
commit b3224b39fd
2 changed files with 19 additions and 0 deletions

View file

@ -243,6 +243,16 @@ export default definePlugin({
shouldShow: ({ userId }) => isCurrentUser(userId) && !!settings.store.aClownForATime,
link: "https://youtu.be/cc2-4ci4G84"
},
// Horror discord moment badge for their crypto
{
description: "Crypto Orbs",
image: "https://discord.com/assets/c8440c1470723788.svg",
position: Badges.BadgePosition.END,
shouldShow: ({ userId }) => isCurrentUser(userId) && !!settings.store.cryptoOrbs,
// We'll see it that works
link: "https://discord.com/shop?tab=orbs"
},
];
NativeBadges.forEach(b => Badges.addProfileBadge(b));
},