hensei-web/data/raidGroups.tsx
Justin Edmund 31745b17de
February 2024 updates and bug fixes (#407)
### New content
* Adds Onmyoji
* Adds Dark Rapture Zero
* Adds Exo Aristarchus

### Bug fixes
* Fixed a bug that prevented filtering job skills by category
* Fixed a bug that prevented infinite scroll in search modals
2024-02-21 23:18:53 -05:00

142 lines
2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

interface RaidGroup {
name: {
[key: string]: string
en: string
ja: string
}
}
export const raidGroups: RaidGroup[] = [
{
name: {
en: 'Assorted',
ja: 'その他',
},
},
{
name: {
en: 'Unite and Fight',
ja: '星の古戦場',
},
},
{
name: {
en: 'Omega',
ja: 'マグナ',
},
},
{
name: {
en: 'T1 Summons',
ja: '召喚石マルチ1',
},
},
{
name: {
en: 'T2 Summons',
ja: '召喚石マルチ2',
},
},
{
name: {
en: 'Primarchs',
ja: '四大天使',
},
},
{
name: {
en: 'Nightmare',
ja: 'HELL',
},
},
{
name: {
en: 'Omega (Impossible)',
ja: 'マグナHL',
},
},
{
name: {
en: 'Omega II',
ja: 'マグナII',
},
},
{
name: {
en: 'Tier 1 Summons (Impossible)',
ja: '旧召喚石HL',
},
},
{
name: {
en: 'Tier 3 Summons',
ja: 'エピックHL',
},
},
{
name: {
en: 'Ennead',
ja: 'エニアド',
},
},
{
name: {
en: 'Malice',
ja: 'マリス',
},
},
{
name: {
en: '6-Star Raids',
ja: '★★★★★★',
},
},
{
name: {
en: 'Six-Dragons',
ja: '六竜HL',
},
},
{
name: {
en: 'Nightmare (Impossible)',
ja: '高級HELL',
},
},
{
name: {
en: 'Arcarum: Replicard Sandbox',
ja: 'アーカルム レプリカルド・サンドボックス',
},
},
{
name: {
en: 'Dread Barrage',
ja: 'ドレッドバラージュ',
},
},
{
name: {
en: 'Astrals',
ja: '星の民',
},
},
{
name: {
en: 'Disaster',
ja: '災害',
},
},
{
name: {
en: 'Super Ultimate',
ja: 'スーパーアルティメット',
},
},
{
name: {
en: 'Nine-Star Raids',
ja: '★★★★★★★★★',
},
},
]