3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-16 22:55:03 +00:00

Add case icons. Clean up !cases. Allow customizing case colors and icons.

This commit is contained in:
Dragory 2020-08-11 04:16:06 +03:00
parent ad24d166ce
commit 131a79ffd4
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
24 changed files with 138 additions and 22 deletions

View file

@ -0,0 +1,13 @@
import { CaseTypes } from "../../data/CaseTypes";
export const caseIcons: Record<CaseTypes, string> = {
[CaseTypes.Ban]: "<:case_ban:742540201443721317>",
[CaseTypes.Unban]: "<:case_unban:742540201670475846>",
[CaseTypes.Note]: "<:case_note:742540201368485950>",
[CaseTypes.Warn]: "<:case_warn:742540201624338454>",
[CaseTypes.Kick]: "<:case_kick:742540201661825165>",
[CaseTypes.Mute]: "<:case_mute:742540201817145364>",
[CaseTypes.Unmute]: "<:case_unmute:742540201489858643>",
[CaseTypes.Deleted]: "<:case_deleted:742540201473343529>",
[CaseTypes.Softban]: "<:case_softban:742540201766813747>",
};