From 5d6ca051439df10089f2cad36f944a48098d6416 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 29 Nov 2022 00:59:28 -0800 Subject: [PATCH] Add different groupings of skills `skillClassification` is for pills shown in results `skillGroups` is for the dropdown that filters all skills --- utils/skillGroups.tsx | 91 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 utils/skillGroups.tsx diff --git a/utils/skillGroups.tsx b/utils/skillGroups.tsx new file mode 100644 index 00000000..63d6ccd2 --- /dev/null +++ b/utils/skillGroups.tsx @@ -0,0 +1,91 @@ +export interface SkillGroup { + id: number + name: { + [key: string]: string + en: string + ja: string + } +} + +export const skillClassification: SkillGroup[] = [ + { + id: 0, + name: { + en: "Buffing", + ja: "強化アビリティ", + }, + }, + { + id: 1, + name: { + en: "Debuffing", + ja: "弱体アビリティ", + }, + }, + { + id: 2, + name: { + en: "Damaging", + ja: "ダメージアビリティ", + }, + }, + { + id: 3, + name: { + en: "Healing", + ja: "回復アビリティ", + }, + }, + { + id: 4, + name: { + en: "Field", + ja: "フィールドアビリティ", + }, + }, +] + +export const skillGroups: SkillGroup[] = [ + { + id: 0, + name: { + en: "Buffing", + ja: "強化アビリティ", + }, + }, + { + id: 1, + name: { + en: "Debuffing", + ja: "弱体アビリティ", + }, + }, + { + id: 2, + name: { + en: "Damaging", + ja: "ダメージアビリティ", + }, + }, + { + id: 3, + name: { + en: "Healing", + ja: "回復アビリティ", + }, + }, + { + id: 4, + name: { + en: "Extended Mastery", + ja: "リミットアビリティ", + }, + }, + { + id: 5, + name: { + en: "Base", + ja: "ベースアビリティ", + }, + }, +]