sendou.ink/app/features/badges/homemade.ts
Kalle 7f9c9f25fb
Homemade badges (#1894)
* Initial

* Author info

* Add docs
2024-09-29 13:49:27 +03:00

18 lines
525 B
TypeScript

interface BadgeInfo {
// The name of the badge as it shows on the web page: "Awarded for winning {displayName}"
displayName: string;
// The file name of the badge: fileName.png, fileName.avif & fileName.gif
fileName: string;
// The Discord ID of the person who made the badge (not the person who commissioned it)
authorDiscordId: string;
}
export const homemadeBadges: BadgeInfo[] = [
// EXAMPLE
// {
// displayName: "Example Badge",
// fileName: "example",
// authorDiscordId: "123456789012345678",
// },
];