This changes the URL to show query params for our three filters, making it easy for people to link to very specific subsets of raids.
59 lines
No EOL
856 B
TypeScript
59 lines
No EOL
856 B
TypeScript
export const allElement: TeamElement = {
|
|
id: -1,
|
|
name: {
|
|
en: "All",
|
|
ja: "全s"
|
|
}
|
|
}
|
|
|
|
export const elements: TeamElement[] = [
|
|
{
|
|
id: 0,
|
|
name: {
|
|
en: "Null",
|
|
ja: "無"
|
|
}
|
|
},
|
|
{
|
|
id: 1,
|
|
name: {
|
|
en: "Wind",
|
|
ja: "風"
|
|
}
|
|
},
|
|
{
|
|
id: 2,
|
|
name: {
|
|
en: "Fire",
|
|
ja: "火"
|
|
}
|
|
},
|
|
{
|
|
id: 3,
|
|
name: {
|
|
en: "Water",
|
|
ja: "水"
|
|
}
|
|
},
|
|
{
|
|
id: 4,
|
|
name: {
|
|
en: "Earth",
|
|
ja: "土"
|
|
}
|
|
},
|
|
{
|
|
id: 5,
|
|
name: {
|
|
en: "Dark",
|
|
ja: "闇"
|
|
}
|
|
},
|
|
{
|
|
id: 6,
|
|
name: {
|
|
en: "Light",
|
|
ja: "光"
|
|
}
|
|
}
|
|
] |