remote-party-finder/server/src/ffxiv/duties.rs

6801 lines
245 KiB
Rust
Raw Normal View History

2021-10-04 03:17:09 +00:00
use std::collections::HashMap;
2021-10-10 15:39:45 +00:00
use super::LocalisedText;
2021-10-04 03:17:09 +00:00
#[derive(Debug)]
pub struct DutyInfo {
2021-10-10 15:39:45 +00:00
pub name: LocalisedText,
pub high_end: bool,
pub content_kind: ContentKind,
}
#[derive(Debug, Clone, Copy)]
#[allow(unused)]
#[repr(u32)]
pub enum ContentKind {
DutyRoulette = 1,
Dungeons = 2,
Guildhests = 3,
Trials = 4,
Raids = 5,
PvP = 6,
QuestBattles = 7,
FATEs = 8,
TreasureHunt = 9,
Levequests = 10,
GrandCompany = 11,
Companions = 12,
2022-08-25 21:05:41 +00:00
TribalQuests = 13,
OverallCompletion = 14,
PlayerCommendation = 15,
DisciplesoftheLand = 16,
DisciplesoftheHand = 17,
RetainerVentures = 18,
GoldSaucer = 19,
DeepDungeons = 21,
WondrousTails = 24,
CustomDeliveries = 25,
Eureka = 26,
UltimateRaids = 28,
2022-08-25 21:09:30 +00:00
VCDungeonFinder = 30,
Other(u32),
}
impl ContentKind {
fn from_u32(kind: u32) -> Self {
match kind {
1 => Self::DutyRoulette,
2 => Self::Dungeons,
3 => Self::Guildhests,
4 => Self::Trials,
5 => Self::Raids,
6 => Self::PvP,
7 => Self::QuestBattles,
8 => Self::FATEs,
9 => Self::TreasureHunt,
10 => Self::Levequests,
11 => Self::GrandCompany,
12 => Self::Companions,
2022-08-25 21:05:41 +00:00
13 => Self::TribalQuests,
14 => Self::OverallCompletion,
15 => Self::PlayerCommendation,
16 => Self::DisciplesoftheLand,
17 => Self::DisciplesoftheHand,
18 => Self::RetainerVentures,
19 => Self::GoldSaucer,
21 => Self::DeepDungeons,
24 => Self::WondrousTails,
25 => Self::CustomDeliveries,
26 => Self::Eureka,
28 => Self::UltimateRaids,
2022-08-25 21:09:30 +00:00
30 => Self::VCDungeonFinder,
x => Self::Other(x),
}
}
2021-10-05 18:36:24 +00:00
pub fn as_u32(self) -> u32 {
match self {
Self::DutyRoulette => 1,
Self::Dungeons => 2,
Self::Guildhests => 3,
Self::Trials => 4,
Self::Raids => 5,
Self::PvP => 6,
Self::QuestBattles => 7,
Self::FATEs => 8,
Self::TreasureHunt => 9,
Self::Levequests => 10,
Self::GrandCompany => 11,
Self::Companions => 12,
2022-08-25 21:05:41 +00:00
Self::TribalQuests => 13,
2021-10-05 18:36:24 +00:00
Self::OverallCompletion => 14,
Self::PlayerCommendation => 15,
Self::DisciplesoftheLand => 16,
Self::DisciplesoftheHand => 17,
Self::RetainerVentures => 18,
Self::GoldSaucer => 19,
Self::DeepDungeons => 21,
Self::WondrousTails => 24,
Self::CustomDeliveries => 25,
Self::Eureka => 26,
Self::UltimateRaids => 28,
2022-08-25 21:09:30 +00:00
Self::VCDungeonFinder => 30,
2021-10-05 18:36:24 +00:00
Self::Other(x) => x,
}
}
}
2021-10-04 03:17:09 +00:00
lazy_static::lazy_static! {
pub static ref DUTIES: HashMap<u32, DutyInfo> = maplit::hashmap! {
1 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Thousand Maws of Toto-Rak",
2021-10-10 15:39:45 +00:00
ja: "監獄廃墟 トトラクの千獄",
de: "Tausend Löcher von Toto-Rak",
2021-10-10 17:29:55 +00:00
fr: "Les Mille Gueules de Toto-Rak",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
2 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Tam-Tara Deepcroft",
2021-10-10 15:39:45 +00:00
ja: "地下霊殿 タムタラの墓所",
de: "Totenacker Tam-Tara",
2021-10-10 17:29:55 +00:00
fr: "L'Hypogée de Tam-Tara",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
3 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Copperbell Mines",
ja: "封鎖坑道 カッパーベル銅山",
de: "Kupferglocken-Mine",
2021-10-10 17:29:55 +00:00
fr: "Les Mines de Clochecuivre",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
4 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sastasha",
ja: "天然要害 サスタシャ浸食洞",
de: "Sastasha",
fr: "Sastasha",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
5 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Aurum Vale",
2021-10-10 15:39:45 +00:00
ja: "霧中行軍 オーラムヴェイル",
de: "Goldklamm",
2021-10-10 17:29:55 +00:00
fr: "Le Val d'Aurum",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
6 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Haukke Manor",
ja: "名門屋敷 ハウケタ御用邸",
de: "Haukke-Herrenhaus",
2021-10-10 17:29:55 +00:00
fr: "Le Manoir des Haukke",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
7 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Halatali",
ja: "魔獣領域 ハラタリ修練所",
de: "Halatali",
fr: "Halatali",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
8 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Brayflox's Longstop",
ja: "奪還支援 ブレイフロクスの野営地",
de: "Brüllvolx' Langrast",
2021-10-10 17:29:55 +00:00
fr: "Le Bivouac de Brayflox",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
9 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Sunken Temple of Qarn",
2021-10-10 15:39:45 +00:00
ja: "遺跡探索 カルン埋没寺院",
de: "Versunkener Tempel von Qarn",
2021-10-10 17:29:55 +00:00
fr: "Le Temple enseveli de Qarn",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
10 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Wanderer's Palace",
2021-10-10 15:39:45 +00:00
ja: "旅神聖域 ワンダラーパレス",
de: "Palast des Wanderers",
2021-10-10 17:29:55 +00:00
fr: "Le Palais du Vagabond",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
11 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Stone Vigil",
2021-10-10 15:39:45 +00:00
ja: "城塞攻略 ストーンヴィジル",
de: "Steinerne Wacht",
2021-10-10 17:29:55 +00:00
fr: "Le Vigile de Pierre",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
12 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Cutter's Cry",
ja: "流砂迷宮 カッターズクライ",
de: "Sägerschrei",
2021-10-10 17:29:55 +00:00
fr: "Le Gouffre hurlant",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
13 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dzemael Darkhold",
ja: "掃討作戦 ゼーメル要塞",
de: "Die Feste Dzemael",
2021-10-10 17:29:55 +00:00
fr: "La Forteresse de Dzemael",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
14 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Amdapor Keep",
ja: "邪教排撃 古城アムダプール",
de: "Die Ruinen von Amdapor",
2021-10-10 17:29:55 +00:00
fr: "Le Château d'Amdapor",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
15 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Castrum Meridianum",
ja: "外郭攻略 カストルム・メリディアヌム",
de: "Castrum Meridianum - Außenbereich",
fr: "Castrum Meridianum",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
16 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Praetorium",
2021-10-10 15:39:45 +00:00
ja: "最終決戦 魔導城プラエトリウム",
de: "Castrum Meridianum - Praetorium",
2021-10-10 17:29:55 +00:00
fr: "Le Praetorium",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
17 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Pharos Sirius",
ja: "怪鳥巨塔 シリウス大灯台",
de: "Pharos Sirius",
2021-10-10 17:29:55 +00:00
fr: "Le Phare de Sirius",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
18 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Copperbell Mines (Hard)",
ja: "騒乱坑道 カッパーベル銅山 (Hard)",
de: "Kupferglocken-Mine (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Les Mines de Clochecuivre (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
19 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Haukke Manor (Hard)",
ja: "妖異屋敷 ハウケタ御用邸 (Hard)",
de: "Haukke-Herrenhaus (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Manoir des Haukke (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
20 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Brayflox's Longstop (Hard)",
ja: "盟友支援 ブレイフロクスの野営地 (Hard)",
de: "Brüllvolx' Langrast (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Bivouac de Brayflox (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
21 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Halatali (Hard)",
ja: "剣闘領域 ハラタリ修練所 (Hard)",
de: "Halatali (schwer)",
fr: "Halatali (brutal)",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
22 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Lost City of Amdapor",
2021-10-10 15:39:45 +00:00
ja: "腐敗遺跡 古アムダプール市街",
de: "Historisches Amdapor",
2021-10-10 17:29:55 +00:00
fr: "Les Vestiges de la cité d'Amdapor",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
23 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hullbreaker Isle",
ja: "財宝伝説 ハルブレーカー・アイル",
de: "Schiffbrecher-Insel",
2021-10-10 17:29:55 +00:00
fr: "L'Île de Crèvecarène",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
24 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Tam-Tara Deepcroft (Hard)",
2021-10-10 15:39:45 +00:00
ja: "惨劇霊殿 タムタラの墓所 (Hard)",
de: "Totenacker Tam-Tara (schwer)",
2021-10-10 17:29:55 +00:00
fr: "L'Hypogée de Tam-Tara (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
25 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Stone Vigil (Hard)",
2021-10-10 15:39:45 +00:00
ja: "城塞奪回 ストーンヴィジル (Hard)",
de: "Steinerne Wacht (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Vigile de Pierre (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
26 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Sunken Temple of Qarn (Hard)",
2021-10-10 15:39:45 +00:00
ja: "遺跡救援 カルン埋没寺院 (Hard)",
de: "Versunkener Tempel von Qarn (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Temple enseveli de Qarn (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
27 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Snowcloak",
ja: "氷結潜窟 スノークローク大氷壁",
de: "Das Schneekleid",
fr: "Manteneige",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
28 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sastasha (Hard)",
ja: "逆襲要害 サスタシャ浸食洞 (Hard)",
de: "Sastasha (schwer)",
fr: "Sastasha (brutal)",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
29 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Amdapor Keep (Hard)",
ja: "邪念排撃 古城アムダプール (Hard)",
de: "Die Ruinen von Amdapor (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Château d'Amdapor (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
30 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Wanderer's Palace (Hard)",
2021-10-10 15:39:45 +00:00
ja: "武装聖域 ワンダラーパレス (Hard)",
de: "Palast des Wanderers (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais du Vagabond (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
31 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Great Gubal Library",
2021-10-10 15:39:45 +00:00
ja: "禁書回収 グブラ幻想図書館",
de: "Große Gubal-Bibliothek",
2021-10-10 17:29:55 +00:00
fr: "La Grande bibliothèque de Gubal",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
32 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Keeper of the Lake",
2021-10-10 15:39:45 +00:00
ja: "幻龍残骸 黙約の塔",
de: "Hüter des Sees",
2021-10-10 17:29:55 +00:00
fr: "Le Gardien du lac",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
33 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Neverreap",
ja: "神域浮島 ネバーリープ",
de: "Nimmerreich",
fr: "Nalloncques",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
34 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Vault",
2021-10-10 15:39:45 +00:00
ja: "強硬突入 イシュガルド教皇庁",
de: "Erzbasilika",
fr: "La Voûte",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
35 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Fractal Continuum",
2021-10-10 15:39:45 +00:00
ja: "博物戦艦 フラクタル・コンティニアム",
de: "Die Fraktal-Kontinuum",
fr: "Le Continuum fractal",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
36 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Dusk Vigil",
2021-10-10 15:39:45 +00:00
ja: "廃砦捜索 ダスクヴィジル",
de: "Abendrot-Wacht",
2021-10-10 17:29:55 +00:00
fr: "Le Vigile du Crépuscule",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
37 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sohm Al",
ja: "霊峰踏破 ソーム・アル",
de: "Sohm Al",
fr: "Sohm Al",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
38 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Aetherochemical Research Facility",
2021-10-10 15:39:45 +00:00
ja: "蒼天聖戦 魔科学研究所",
de: "Ätherochemisches Forschungslabor",
2021-10-10 17:29:55 +00:00
fr: "Le Laboratoire de magismologie",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
39 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Aery",
2021-10-10 15:39:45 +00:00
ja: "邪竜血戦 ドラゴンズエアリー",
de: "Nest des Drachen",
fr: "L'Aire",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
40 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Pharos Sirius (Hard)",
ja: "制圧巨塔 シリウス大灯台 (Hard)",
de: "Pharos Sirius (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Phare de Sirius (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
41 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Saint Mocianne's Arboretum",
ja: "草木庭園 聖モシャーヌ植物園",
de: "Sankt Mocianne-Arboretum",
2021-10-10 17:29:55 +00:00
fr: "L'Arboretum Sainte-Mocianne",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
42 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Basic Training: Enemy Parties",
ja: "集団戦訓練をくぐり抜けろ!",
de: "Einer für alle, alle für einen",
fr: "Entraînement: groupes d'ennemis",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
43 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Under the Armor",
ja: "彷徨う死霊を討て!",
de: "Bockmanns Gefolge",
fr: "Chasse au fantôme fantoche",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
44 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Basic Training: Enemy Strongholds",
ja: "全関門を突破し、最深部の敵を討て!",
de: "Sturmkommando",
fr: "Entraînement: infiltration en base ennemie",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
45 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hero on the Half Shell",
ja: "ギルガメを捕獲せよ!",
de: "Gil oder Leben",
fr: "Reconquête d'une carapace escamotée",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
46 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Pulling Poison Posies",
ja: "有毒妖花を駆除せよ!",
de: "Unkraut jäten",
fr: "Opération fleurs du mal",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
47 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stinging Back",
ja: "無法者「似我蜂団」を撃滅せよ!",
de: "Ins Wespennest stechen",
fr: "Expédition punitive contre les Ventrerouge",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
48 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "All's Well that Ends in the Well",
ja: "夢幻のブラキシオを討て!",
de: "Briaxio ausschalten",
fr: "Briaxio à bras raccourcis",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
49 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Flicking Sticks and Taking Names",
ja: "爆弾魔ゴブリン軍団を撃滅せよ!",
de: "Bombige Goblins",
fr: "Les Gobelins bombardiers",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
50 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "More than a Feeler",
ja: "汚染源モルボルを討て!",
de: "Tödliches Rankenspiel",
fr: "Sus au morbol pollueur",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
51 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Annoy the Void",
ja: "坑道に現れた妖異ブソを討て!",
de: "Gefahr aus dem Nichts",
fr: "Buso l'immolateur",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
52 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Shadow and Claw",
ja: "無敵の眷属を従えし、大型妖異を討て!",
de: "Kampf gegen Schatten",
fr: "Ombres et griffes",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
53 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Long Live the Queen",
ja: "ボムを率いる「ボムクイーン」を討て!",
de: "Miss Bombastic",
fr: "Longue vie à la Reine",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
54 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ward Up",
ja: "不気味な陣形を組む妖異をせん滅せよ!",
de: "Unzertrennlich",
fr: "Quintettes infernaux",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
55 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Solemn Trinity",
ja: "三つ巴の巨人族を制し、遺物を守れ!",
de: "Wuchtige Dreifaltigkeit",
fr: "Trinité sinistre",
},
high_end: false,
content_kind: ContentKind::Guildhests,
},
56 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Bowl of Embers",
2021-10-10 15:39:45 +00:00
ja: "イフリート討伐戦",
de: "Das Grab der Lohe",
2021-10-10 17:29:55 +00:00
fr: "Le Cratère des tisons",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
57 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Navel",
2021-10-10 15:39:45 +00:00
ja: "タイタン討伐戦",
de: "Der Nabel",
2021-10-10 17:29:55 +00:00
fr: "Le Nombril",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
58 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Howling Eye",
2021-10-10 15:39:45 +00:00
ja: "ガルーダ討伐戦",
de: "Das Tosende Auge",
fr: "Hurlœil",
},
high_end: false,
content_kind: ContentKind::Trials,
},
59 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Bowl of Embers (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真イフリート討滅戦",
de: "Götterdämmerung - Ifrit",
2021-10-10 17:29:55 +00:00
fr: "Le Cratère des tisons (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
60 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Navel (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真タイタン討滅戦",
de: "Götterdämmerung - Titan",
2021-10-10 17:29:55 +00:00
fr: "Le Nombril (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
61 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Howling Eye (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真ガルーダ討滅戦",
de: "Götterdämmerung - Garuda",
fr: "Hurlœil (brutal)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
63 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Bowl of Embers (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極イフリート討滅戦",
de: "Zenit der Götter - Ifrit",
2021-10-10 17:29:55 +00:00
fr: "Le Cratère des tisons (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
64 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Navel (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極タイタン討滅戦",
de: "Zenit der Götter - Titan",
2021-10-10 17:29:55 +00:00
fr: "Le Nombril (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
65 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Howling Eye (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極ガルーダ討滅戦",
de: "Zenit der Götter - Garuda",
fr: "Hurlœil (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
66 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Thornmarch (Hard)",
ja: "善王モグル・モグXII世討滅戦",
de: "Königliche Konfrontation (schwer)",
2021-10-10 17:29:55 +00:00
fr: "La Lisière de ronces (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
67 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Thornmarch (Extreme)",
ja: "極王モグル・モグXII世討滅戦",
de: "Königliche Konfrontation (extrem)",
2021-10-10 17:29:55 +00:00
fr: "La Lisière de ronces (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
68 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Minstrel's Ballad: Ultima's Bane",
2021-10-10 15:39:45 +00:00
ja: "究極幻想 アルテマウェポン破壊作戦",
de: "Heldenlied von Ultima",
2021-10-10 17:29:55 +00:00
fr: "Le fléau d'Ultima",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
69 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Special Event III",
ja: "イベント用コンテンツ3",
de: "Event-Inhalt 3",
fr: "Défi spécial III",
},
high_end: false,
content_kind: ContentKind::Trials,
},
70 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Special Event I",
ja: "イベント用コンテンツ1",
de: "Event-Inhalt 1",
fr: "Défi spécial I",
},
high_end: false,
content_kind: ContentKind::Trials,
},
71 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Special Event II",
ja: "イベント用コンテンツ2",
de: "Event-Inhalt 2",
fr: "Défi spécial II",
},
high_end: false,
content_kind: ContentKind::Trials,
},
72 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Whorleater (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真リヴァイアサン討滅戦",
de: "Götterdämmerung - Leviathan",
2021-10-10 17:29:55 +00:00
fr: "Le Briseur de marées (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
73 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Whorleater (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極リヴァイアサン討滅戦",
de: "Zenit der Götter - Leviathan",
2021-10-10 17:29:55 +00:00
fr: "Le Briseur de marées (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
74 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "A Relic Reborn: the Chimera",
ja: "ドルムキマイラ討伐戦",
de: "Kampf gegen die Dhorme-Chimära",
2021-10-10 17:29:55 +00:00
fr: "La chimère dhorme du Coerthas",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
75 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "A Relic Reborn: the Hydra",
ja: "ハイドラ討伐戦",
de: "Kampf gegen die Hydra",
2021-10-10 17:29:55 +00:00
fr: "L'hydre d'Halatali",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
76 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Battle on the Big Bridge",
ja: "ギルガメッシュ討伐戦",
de: "Duell auf der großen Brücke",
fr: "Affrontement sur le grand pont",
},
high_end: false,
content_kind: ContentKind::Trials,
},
77 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Striking Tree (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真ラムウ討滅戦",
de: "Götterdämmerung - Ramuh",
2021-10-10 17:29:55 +00:00
fr: "L'Arbre du jugement (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
78 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Striking Tree (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極ラムウ討滅戦",
de: "Zenit der Götter - Ramuh",
2021-10-10 17:29:55 +00:00
fr: "L'Arbre du jugement (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
79 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Akh Afah Amphitheatre (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真シヴァ討滅戦",
de: "Götterdämmerung - Shiva",
2021-10-10 17:29:55 +00:00
fr: "L'Amphithéâtre d'Akh Afah (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
80 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Akh Afah Amphitheatre (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極シヴァ討滅戦",
de: "Zenit der Götter - Shiva",
2021-10-10 17:29:55 +00:00
fr: "L'Amphithéâtre d'Akh Afah (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
81 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Dragon's Neck",
2021-10-10 15:39:45 +00:00
ja: "アマジナ杯闘技会決勝戦",
de: "Das Drachenhals-Kolosseum",
2021-10-10 17:29:55 +00:00
fr: "Le Col du dragon",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
82 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Urth's Fount",
ja: "闘神オーディン討滅戦",
de: "Jenseits Urths Quelle",
2021-10-10 17:29:55 +00:00
fr: "La Fontaine d'Urth",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
84 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Chrysalis",
2021-10-10 15:39:45 +00:00
ja: "アシエン・ナプリアレス討伐戦",
de: "Chrysalis",
fr: "La Chrysalide",
},
high_end: false,
content_kind: ContentKind::Trials,
},
85 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Battle in the Big Keep",
ja: "真ギルガメッシュ討滅戦",
de: "Revanche in den Ruinen",
fr: "Revanche au vieux château",
},
high_end: false,
content_kind: ContentKind::Trials,
},
86 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Thok ast Thok (Hard)",
ja: "真ラーヴァナ討滅戦",
de: "Götterdämmerung - Ravana",
fr: "Thok ast Thok (brutal)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
87 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Thok ast Thok (Extreme)",
ja: "極ラーヴァナ討滅戦",
de: "Zenit der Götter - Ravana",
fr: "Thok ast Thok (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
88 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Limitless Blue (Hard)",
2021-10-10 15:39:45 +00:00
ja: "真ビスマルク討滅戦",
de: "Götterdämmerung - Bismarck",
fr: "L'Immensité bleue (brutal)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
89 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Limitless Blue (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極ビスマルク討滅戦",
de: "Zenit der Götter - Bismarck",
fr: "L'Immensité bleue (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
90 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Singularity Reactor",
2021-10-10 15:39:45 +00:00
ja: "ナイツ・オブ・ラウンド討滅戦",
de: "Singularitäts-Reaktor",
2021-10-10 17:29:55 +00:00
fr: "Le Réacteur de singularité",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
91 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Minstrel's Ballad: Thordan's Reign",
2021-10-10 15:39:45 +00:00
ja: "蒼天幻想 ナイツ・オブ・ラウンド討滅戦",
de: "Heldenlied von Thordans Fall",
2021-10-10 17:29:55 +00:00
fr: "Le règne de Thordan",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
92 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Labyrinth of the Ancients",
2021-10-10 15:39:45 +00:00
ja: "クリスタルタワー:古代の民の迷宮",
de: "Kristallturm - Das Labyrinth der Alten",
2021-10-10 17:29:55 +00:00
fr: "La Tour de Cristal - Dédale antique",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
93 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Binding Coil of Bahamut - Turn 1",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート邂逅編1",
de: "Verschlungene Schatten 1",
2021-10-10 17:29:55 +00:00
fr: "Le Labyrinthe de Bahamut I",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
94 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Binding Coil of Bahamut - Turn 2",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート邂逅編2",
de: "Verschlungene Schatten 2",
2021-10-10 17:29:55 +00:00
fr: "Le Labyrinthe de Bahamut II",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
95 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Binding Coil of Bahamut - Turn 3",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート邂逅編3",
de: "Verschlungene Schatten 3",
2021-10-10 17:29:55 +00:00
fr: "Le Labyrinthe de Bahamut III",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
96 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Binding Coil of Bahamut - Turn 4",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート邂逅編4",
de: "Verschlungene Schatten 4",
2021-10-10 17:29:55 +00:00
fr: "Le Labyrinthe de Bahamut IV",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
97 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Binding Coil of Bahamut - Turn 5",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート邂逅編5",
de: "Verschlungene Schatten 5",
2021-10-10 17:29:55 +00:00
fr: "Le Labyrinthe de Bahamut V",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
98 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut - Turn 1",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート侵攻編1",
de: "Verschlungene Schatten 2 - 1",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut I",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
99 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut - Turn 2",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート侵攻編2",
de: "Verschlungene Schatten 2 - 2",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut II",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
100 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut - Turn 3",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート侵攻編3",
de: "Verschlungene Schatten 2 - 3",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut III",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
101 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut - Turn 4",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート侵攻編4",
de: "Verschlungene Schatten 2 - 4",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut IV",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
102 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Syrcus Tower",
ja: "クリスタルタワー:シルクスの塔",
de: "Kristallturm - Der Syrcus-Turm",
2021-10-10 17:29:55 +00:00
fr: "La Tour de Cristal - Tour de Syrcus",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
103 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut (Savage) - Turn 1",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート零式侵攻編1",
de: "Verschlungene Schatten 2 - 1 (episch)",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut I (sadique)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
104 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut (Savage) - Turn 2",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート零式侵攻編2",
de: "Verschlungene Schatten 2 - 2 (episch)",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut II (sadique)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
105 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut (Savage) - Turn 3",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート零式侵攻編3",
de: "Verschlungene Schatten 2 - 3 (episch)",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut III (sadique)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
106 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Second Coil of Bahamut (Savage) - Turn 4",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート零式侵攻編4",
de: "Verschlungene Schatten 2 - 4 (episch)",
2021-10-10 17:29:55 +00:00
fr: "Les Méandres de Bahamut IV (sadique)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
107 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Final Coil of Bahamut - Turn 1",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート真成編1",
de: "Verschlungene Schatten 3 - 1",
2021-10-10 17:29:55 +00:00
fr: "L'Abîme de Bahamut I",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
108 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Final Coil of Bahamut - Turn 2",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート真成編2",
de: "Verschlungene Schatten 3 - 2",
2021-10-10 17:29:55 +00:00
fr: "L'Abîme de Bahamut II",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
109 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Final Coil of Bahamut - Turn 3",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート真成編3",
de: "Verschlungene Schatten 3 - 3",
2021-10-10 17:29:55 +00:00
fr: "L'Abîme de Bahamut III",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
110 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Final Coil of Bahamut - Turn 4",
2021-10-10 15:39:45 +00:00
ja: "大迷宮バハムート真成編4",
de: "Verschlungene Schatten 3 - 4",
2021-10-10 17:29:55 +00:00
fr: "L'Abîme de Bahamut IV",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
111 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The World of Darkness",
2021-10-10 15:39:45 +00:00
ja: "クリスタルタワー:闇の世界",
de: "Die Welt der Dunkelheit",
2021-10-10 17:29:55 +00:00
fr: "La Tour de Cristal - Monde des Ténèbres",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
112 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Fist of the Father",
ja: "機工城アレキサンダー起動編1",
de: "Alexander - Faust des Vaters",
fr: "Alexander - Le Poing du Père",
},
high_end: false,
content_kind: ContentKind::Raids,
},
113 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Cuff of the Father",
ja: "機工城アレキサンダー起動編2",
de: "Alexander - Elle des Vaters",
fr: "Alexander - Le Poignet du Père",
},
high_end: false,
content_kind: ContentKind::Raids,
},
114 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Arm of the Father",
ja: "機工城アレキサンダー起動編3",
de: "Alexander - Arm des Vaters",
fr: "Alexander - Le Bras du Père",
},
high_end: false,
content_kind: ContentKind::Raids,
},
115 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Burden of the Father",
ja: "機工城アレキサンダー起動編4",
de: "Alexander - Last des Vaters",
fr: "Alexander - Le Fardeau du Père",
},
high_end: false,
content_kind: ContentKind::Raids,
},
116 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Fist of the Father (Savage)",
ja: "機工城アレキサンダー零式起動編1",
de: "Alexander - Faust des Vaters (episch)",
fr: "Alexander - Le Poing du Père (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
117 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Cuff of the Father (Savage)",
ja: "機工城アレキサンダー零式起動編2",
de: "Alexander - Elle des Vaters (episch)",
fr: "Alexander - Le Poignet du Père (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
118 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Arm of the Father (Savage)",
ja: "機工城アレキサンダー零式起動編3",
de: "Alexander - Arm des Vaters (episch)",
fr: "Alexander - Le Bras du Père (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
119 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Burden of the Father (Savage)",
ja: "機工城アレキサンダー零式起動編4",
de: "Alexander - Last des Vaters (episch)",
fr: "Alexander - Le Fardeau du Père (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
120 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Void Ark",
2021-10-10 15:39:45 +00:00
ja: "魔航船ヴォイドアーク",
de: "Die Nichts-Arche",
2021-10-10 17:29:55 +00:00
fr: "L'Arche du néant",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
127 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Borderland Ruins (Secure)",
2021-10-10 15:39:45 +00:00
ja: "外縁遺跡群 (制圧戦)",
de: "Äußere Ruinen (Sicherung)",
2021-10-10 17:29:55 +00:00
fr: "Les Ruines frontalières (annexion)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::PvP,
},
130 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Seal Rock (Seize)",
ja: "シールロック (争奪戦)",
de: "Robbenholm (Eroberung)",
2021-10-10 17:29:55 +00:00
fr: "Le Rocher des tréfonds (invasion)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::PvP,
},
131 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem (Easy)",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島 (Easy)",
de: "Das Diadem (leicht)",
fr: "Le Diadème (facile)",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
132 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島",
de: "Das Diadem",
fr: "Le Diadème",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
133 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem (Hard)",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島 (Hard)",
de: "Das Diadem (schwer)",
fr: "Le Diadème (brutal)",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
134 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Containment Bay S1T7",
ja: "魔神セフィロト討滅戦",
de: "Götterdämmerung - Sephirot",
fr: "Unité de contention S1P7",
},
high_end: false,
content_kind: ContentKind::Trials,
},
135 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Containment Bay S1T7 (Extreme)",
ja: "極魔神セフィロト討滅戦",
de: "Zenit der Götter - Sephirot",
fr: "Unité de contention S1P7 (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
136 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Fist of the Son",
ja: "機工城アレキサンダー律動編1",
de: "Alexander - Faust des Sohnes",
fr: "Alexander - Le Poing du Fils",
},
high_end: false,
content_kind: ContentKind::Raids,
},
137 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Cuff of the Son",
ja: "機工城アレキサンダー律動編2",
de: "Alexander - Elle des Sohnes",
fr: "Alexander - Le Poignet du Fils",
},
high_end: false,
content_kind: ContentKind::Raids,
},
138 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Arm of the Son",
ja: "機工城アレキサンダー律動編3",
de: "Alexander - Arm des Sohnes",
fr: "Alexander - Le Bras du Fils",
},
high_end: false,
content_kind: ContentKind::Raids,
},
139 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Burden of the Son",
ja: "機工城アレキサンダー律動編4",
de: "Alexander - Last des Sohnes",
fr: "Alexander - Le Fardeau du Fils",
},
high_end: false,
content_kind: ContentKind::Raids,
},
140 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Lost City of Amdapor (Hard)",
2021-10-10 15:39:45 +00:00
ja: "神聖遺跡 古アムダプール市街 (Hard)",
de: "Historisches Amdapor (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Les Vestiges de la cité d'Amdapor (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
141 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Antitower",
2022-05-03 20:49:51 +00:00
ja: "星海観測 逆さの塔",
2021-10-10 15:39:45 +00:00
de: "Antiturm",
fr: "L'Antitour",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
147 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Fist of the Son (Savage)",
ja: "機工城アレキサンダー零式律動編1",
de: "Alexander - Faust des Sohnes (episch)",
fr: "Alexander - Le Poing du Fils (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
148 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Cuff of the Son (Savage)",
ja: "機工城アレキサンダー零式律動編2",
de: "Alexander - Elle des Sohnes (episch)",
fr: "Alexander - Le Poignet du Fils (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
149 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Arm of the Son (Savage)",
ja: "機工城アレキサンダー零式律動編3",
de: "Alexander - Arm des Sohnes (episch)",
fr: "Alexander - Le Bras du Fils (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
150 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Burden of the Son (Savage)",
ja: "機工城アレキサンダー零式律動編4",
de: "Alexander - Last des Sohnes (episch)",
fr: "Alexander - Le Fardeau du Fils (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
151 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Avoid Area of Effect Attacks",
ja: "範囲攻撃を避けよう!",
de: "Flächenangriffen ausweichen",
fr: "Éviter les attaques à aire d'effet",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
152 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Execute a Combo to Increase Enmity",
ja: "コンボで敵視を集めよう!",
de: "Mit Kombos Feindseligkeit auf sich ziehen",
fr: "Générer de l'inimitié avec un combo",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
153 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Execute a Combo in Battle",
ja: "実戦でコンボに挑戦しよう!",
de: "Kombos im Kampf einsetzen",
fr: "Effectuer le combo en combat",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
154 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Accrue Enmity from Multiple Targets",
ja: "複数の敵から敵視を集めよう!",
de: "Feindseligkeit mehrerer Gegner auf sich ziehen",
fr: "Attirer l'inimitié de plusieurs ennemis sur soi",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
155 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Engage Multiple Targets",
ja: "実戦で複数の敵と戦ってみよう!",
de: "Gegen mehrere Gegner auf einmal kämpfen",
fr: "Affronter plusieurs ennemis",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
156 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Execute a Ranged Attack to Increase Enmity",
ja: "遠距離から敵視を集めよう!",
de: "Aus der Ferne Feindseligkeit auf sich ziehen",
fr: "Générer de l'inimitié à distance",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
157 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Engage Enemy Reinforcements",
ja: "敵の増援に対応しよう!",
de: "Feindliche Verstärkung aufhalten",
fr: "Faire face à des renforts ennemis",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
158 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Assist Allies in Defeating a Target",
ja: "味方と協力して敵を倒そう!",
de: "Gegner gemeinsam besiegen",
fr: "Vaincre un ennemi en assistant des alliés",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
159 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Defeat an Occupied Target",
ja: "味方が引きつけている敵を倒そう!",
de: "Den Gegner eines Verbündeten besiegen",
fr: "Vaincre un ennemi occupé par un allié",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
160 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Avoid Engaged Targets",
ja: "敵の攻撃を避けながら戦おう!",
de: "Angriffen ausweichen",
fr: "Combattre en évitant les attaques ennemies",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
161 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Engage Enemy Reinforcements",
ja: "敵の増援に対応しよう!",
de: "Feindliche Verstärkung aufhalten",
fr: "Éliminer les renforts ennemis",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
162 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Interact with the Battlefield",
ja: "ギミックを活用して戦おう!",
de: "Mit dem Gelände interagieren",
fr: "Interagir avec le décor en combat",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
163 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heal an Ally",
ja: "味方を回復しよう!",
de: "Verbündete heilen",
fr: "Soigner un allié",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
164 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heal Multiple Allies",
ja: "複数の味方を回復しよう!",
de: "Mehrere Verbündete heilen",
fr: "Soigner plusieurs alliés",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
165 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Avoid Engaged Targets",
ja: "敵の攻撃を避けながら戦おう!",
de: "Angriffen ausweichen",
fr: "Combattre en évitant les attaques ennemies",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
166 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Final Exercise",
ja: "最終訓練!",
de: "Letzte Übung",
fr: "Exercice final",
},
high_end: false,
content_kind: ContentKind::Other(20),
},
167 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "A Spectacle for the Ages",
2021-10-10 15:39:45 +00:00
ja: "四国合同演習",
de: "Truppenübung der Eorzäischen Allianz",
fr: "La grande manœuvre éorzéenne",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
168 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Weeping City of Mhach",
2021-10-10 15:39:45 +00:00
ja: "禁忌都市マハ",
de: "Die Stadt der Tränen",
2021-10-10 17:29:55 +00:00
fr: "La Cité défendue de Mhach",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
169 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Final Steps of Faith",
2021-10-10 15:39:45 +00:00
ja: "ニーズヘッグ征竜戦",
de: "Der letzte Schicksalsweg",
2021-10-10 17:29:55 +00:00
fr: "La Dernière avancée de la Foi",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
170 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Minstrel's Ballad: Nidhogg's Rage",
2021-10-10 15:39:45 +00:00
ja: "極ニーズヘッグ征竜戦",
de: "Das Lied von Nidhoggs letztem Ruf",
2021-10-10 17:29:55 +00:00
fr: "L'ire de Nidhogg",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
171 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sohr Khai",
ja: "天竜宮殿 ソール・カイ",
de: "Sohr Khai",
fr: "Sohr Khai",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
172 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hullbreaker Isle (Hard)",
ja: "黒渦伝説 ハルブレーカー・アイル (Hard)",
de: "Schiffbrecher-Insel (schwer)",
2021-10-10 17:29:55 +00:00
fr: "L'Île de Crèvecarène (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
173 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "A Bloody Reunion",
2021-10-10 15:39:45 +00:00
ja: "レグラ・ヴァン・ヒュドルス追撃戦",
de: "Blutiges Wiedersehen",
fr: "Course-poursuite dans le laboratoire",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
174 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 1-10)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B1B10",
de: "Palast der Toten (Ebenen 1-10)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 1-10)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
175 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 11-20)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B11B20",
de: "Palast der Toten (Ebenen 11-20)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 11-20)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
176 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 21-30)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B21B30",
de: "Palast der Toten (Ebenen 21-30)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 21-30)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
177 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 31-40)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B31B40",
de: "Palast der Toten (Ebenen 31-40)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 31-40)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
178 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 41-50)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B41B50",
de: "Palast der Toten (Ebenen 41-50)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 41-50)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
179 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Aquapolis",
2021-10-10 15:39:45 +00:00
ja: "宝物庫 アクアポリス",
de: "Aquapolis",
2021-10-10 17:29:55 +00:00
fr: "L'Aquapole",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
180 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Fields of Glory (Shatter)",
2021-10-10 15:39:45 +00:00
ja: "フィールド・オブ・グローリー (砕氷戦)",
de: "Feld der Ehre (Zersplitterung)",
2021-10-10 17:29:55 +00:00
fr: "Les Champs de la Gloire (brise-glace)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::PvP,
},
181 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Haunted Manor",
2021-10-10 15:39:45 +00:00
ja: "亡霊屋敷 ホーンテッドマナー",
de: "Das Geisterschloss",
2021-10-10 17:29:55 +00:00
fr: "Le Manoir hanté",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Other(22),
},
182 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Xelphatol",
ja: "峻厳渓谷 ゼルファトル",
de: "Xelphatol",
fr: "Xelphatol",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
183 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Containment Bay P1T6",
ja: "女神ソフィア討滅戦",
de: "Götterdämmerung - Sophia",
fr: "Unité de contention P1P6",
},
high_end: false,
content_kind: ContentKind::Trials,
},
184 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Containment Bay P1T6 (Extreme)",
ja: "極女神ソフィア討滅戦",
de: "Zenit der Götter - Sophia",
fr: "Unité de contention P1P6 (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
186 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Eyes of the Creator",
ja: "機工城アレキサンダー天動編1",
de: "Alexander - Augen des Schöpfers",
fr: "Alexander - Les Yeux du Créateur",
},
high_end: false,
content_kind: ContentKind::Raids,
},
187 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Breath of the Creator",
ja: "機工城アレキサンダー天動編2",
de: "Alexander - Atem des Schöpfers",
fr: "Alexander - Le Souffle du Créateur",
},
high_end: false,
content_kind: ContentKind::Raids,
},
188 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Heart of the Creator",
ja: "機工城アレキサンダー天動編3",
de: "Alexander - Herz des Schöpfers",
fr: "Alexander - Le Cœur du Créateur",
},
high_end: false,
content_kind: ContentKind::Raids,
},
189 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Soul of the Creator",
ja: "機工城アレキサンダー天動編4",
de: "Alexander - Seele des Schöpfers",
fr: "Alexander - L'Âme du Créateur",
},
high_end: false,
content_kind: ContentKind::Raids,
},
190 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Eyes of the Creator (Savage)",
ja: "機工城アレキサンダー零式天動編1",
de: "Alexander - Augen des Schöpfers (episch)",
fr: "Alexander - Les Yeux du Créateur (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
191 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Breath of the Creator (Savage)",
ja: "機工城アレキサンダー零式天動編2",
de: "Alexander - Atem des Schöpfers (episch)",
fr: "Alexander - Le Souffle du Créateur (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
192 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Heart of the Creator (Savage)",
ja: "機工城アレキサンダー零式天動編3",
de: "Alexander - Herz des Schöpfers (episch)",
fr: "Alexander - Le Cœur du Créateur (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
193 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alexander - The Soul of the Creator (Savage)",
ja: "機工城アレキサンダー零式天動編4",
de: "Alexander - Seele des Schöpfers (episch)",
fr: "Alexander - L'Âme du Créateur (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
194 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "One Life for One World",
ja: "絡み合う宿命",
de: "Weltenübergreifendes Schicksal",
fr: "Destins entrecroisés",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
195 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Triple Triad Battlehall",
2021-10-10 15:39:45 +00:00
ja: "トリプルトライアド:カードバトルルーム",
de: "Triple Triad: Weltensalon",
fr: "Arène Triple Triade",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
196 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Great Gubal Library (Hard)",
2021-10-10 15:39:45 +00:00
ja: "稀書回収 グブラ幻想図書館 (Hard)",
de: "Große Gubal-Bibliothek (schwer)",
2021-10-10 17:29:55 +00:00
fr: "La Grande bibliothèque de Gubal (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
197 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Player Battle (RP)",
ja: "LoVMプレイヤー対戦 (RP変動あり)",
de: "Kampf der Trabanten: Gegen Spieler (um RP)",
fr: "Bataille simple contre un joueur (avec PR)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
198 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Tournament",
ja: "LoVM大会対戦 (プレイヤー対戦)",
de: "Kampf der Trabanten: Turnier (gegen Spieler)",
fr: "Bataille de tournoi contre des joueurs",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
199 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Player Battle (Non-RP)",
ja: "LoVMプレイヤー対戦 (RP変動なし)",
de: "Kampf der Trabanten: Gegen Spieler (ohne RP)",
fr: "Bataille simple contre un joueur (sans PR)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
202 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem Hunting Grounds (Easy)",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島:狩猟限定 (Easy)",
de: "Das Diadem - Jagdgründe (leicht)",
fr: "Le Diadème: terrains de chasse (facile)",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
203 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem Hunting Grounds",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島:狩猟限定",
de: "Das Diadem - Jagdgründe",
fr: "Le Diadème: terrains de chasse",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
204 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 51-60)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B51B60",
de: "Palast der Toten (Ebenen 51 - 60)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 51-60)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
205 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 61-70)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B61B70",
de: "Palast der Toten (Ebenen 61 - 70)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 61-70)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
206 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 71-80)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B71B80",
de: "Palast der Toten (Ebenen 71 - 80)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 71-80)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
207 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 81-90)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B81B90",
de: "Palast der Toten (Ebenen 81 - 90)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 81-90)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
208 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 91-100)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B91B100",
de: "Palast der Toten (Ebenen 91 - 100)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 91-100)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
209 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 101-110)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B101B110",
de: "Palast der Toten (Ebenen 101 - 110)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 101-110)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
210 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 111-120)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B111B120",
de: "Palast der Toten (Ebenen 111 - 120)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 111-120)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
211 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 121-130)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B121B130",
de: "Palast der Toten (Ebenen 121 - 130)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 121-130)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
212 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 131-140)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B131B140",
de: "Palast der Toten (Ebenen 131 - 140)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 131-140)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
213 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 141-150)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B141B150",
de: "Palast der Toten (Ebenen 141 - 150)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 141-150)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
214 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 151-160)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B151B160",
de: "Palast der Toten (Ebenen 151 - 160)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 151-160)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
215 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 161-170)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B161B170",
de: "Palast der Toten (Ebenen 161 - 170)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 161-170)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
216 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 171-180)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B171B180",
de: "Palast der Toten (Ebenen 171 - 180)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 171-180)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
217 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 181-190)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B181B190",
de: "Palast der Toten (Ebenen 181 - 190)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 181-190)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
218 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Palace of the Dead (Floors 191-200)",
2021-10-10 15:39:45 +00:00
ja: "死者の宮殿 B191B200",
de: "Palast der Toten (Ebenen 191 - 200)",
2021-10-10 17:29:55 +00:00
fr: "Le Palais des morts (sous-sols 191-200)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
219 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Baelsar's Wall",
ja: "巨大防壁 バエサルの長城",
de: "Baelsar-Wall",
2021-10-10 17:29:55 +00:00
fr: "La Muraille de Baelsar",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
220 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dun Scaith",
ja: "影の国ダン・スカー",
de: "Dun Scaith",
fr: "Dun Scaith",
},
high_end: false,
content_kind: ContentKind::Raids,
},
221 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sohm Al (Hard)",
ja: "霊峰浄化 ソーム・アル (Hard)",
de: "Sohm Al (schwer)",
fr: "Sohm Al (brutal)",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
222 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Carteneau Flats: Heliodrome",
ja: "カルテノー平原遭遇戦",
de: "Heliodrom",
fr: "Rixe à l'Héliodrome",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
223 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Containment Bay Z1T9",
ja: "鬼神ズルワーン討滅戦",
de: "Götterdämmerung - Zurvan",
fr: "Unité de contention Z1P9",
},
high_end: false,
content_kind: ContentKind::Trials,
},
224 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Containment Bay Z1T9 (Extreme)",
ja: "極鬼神ズルワーン討滅戦",
de: "Zenit der Götter - Zurvan",
fr: "Unité de contention Z1P9 (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
225 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem - Trials of the Fury",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島 (狩猟)",
de: "Das Diadem - Halones Prüfung",
fr: "Le Diadème - Épreuves de Halone",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
234 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem - Trials of the Matron",
2021-10-10 15:39:45 +00:00
ja: "雲海探索 ディアデム諸島 (採集)",
de: "Das Diadem - Nophicas Prüfung",
fr: "Le Diadème - Épreuves de Nophica",
},
high_end: false,
content_kind: ContentKind::Other(23),
},
235 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Shisui of the Violet Tides",
ja: "海底宮殿 紫水宮",
de: "Shisui",
2021-10-10 17:29:55 +00:00
fr: "Le Palais aux Marées violettes",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
236 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Temple of the Fist",
ja: "壊神修行 星導山寺院",
de: "Tempel der Faust",
2021-10-10 17:29:55 +00:00
fr: "Le Temple du Poing",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
237 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "It's Probably a Trap",
ja: "ギョドウ現る!",
de: "Ein zweifelhaftes Angebot",
fr: "Un drôle de Namazu",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
238 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Sirensong Sea",
ja: "漂流海域 セイレーン海",
de: "Sirenen-See",
2021-10-10 17:29:55 +00:00
fr: "La Mer du Chant des sirènes",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
239 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Royal Menagerie",
2021-10-10 15:39:45 +00:00
ja: "神龍討滅戦",
de: "Königliche Menagerie",
2021-10-10 17:29:55 +00:00
fr: "La Ménagerie royale",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
240 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Bardam's Mettle",
ja: "伝統試練 バルダム覇道",
de: "Bardams Probe",
2021-10-10 17:29:55 +00:00
fr: "La Force de Bardam",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
241 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Doma Castle",
ja: "解放決戦 ドマ城",
de: "Burg Doma",
2021-10-10 17:29:55 +00:00
fr: "Le Château de Doma",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
242 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Castrum Abania",
ja: "巨砲要塞 カストルム・アバニア",
de: "Castrum Abania",
fr: "Castrum Abania",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
243 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Pool of Tribute",
2021-10-10 15:39:45 +00:00
ja: "スサノオ討滅戦",
de: "Götterdämmerung - Susano",
2021-10-10 17:29:55 +00:00
fr: "La Crique aux tributs",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
244 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Pool of Tribute (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極スサノオ討滅戦",
de: "Zenit der Götter - Susano",
2021-10-10 17:29:55 +00:00
fr: "La Crique aux tributs (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
245 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "With Heart and Steel",
ja: "抗う力",
de: "Die Kraft des Widerstands",
fr: "Transmigration démoniaque",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
246 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Naadam",
ja: "終節の合戦",
de: "Naadam",
fr: "La grande bataille du Naadam",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
247 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ala Mhigo",
ja: "紅蓮決戦 アラミゴ",
de: "Ala Mhigo",
fr: "Ala Mhigo",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
248 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Blood on the Deck",
ja: "海都を震わす人斬りの宴!",
de: "Mord ist sein Hobby",
fr: "La légende de Musosai: l'assassin de Limsa Lominsa",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
249 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Face of True Evil",
ja: "極悪人コガラシ",
de: "Der Inbegriff des Bösen",
fr: "L'abominable Kogarashi",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
250 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Matsuba Mayhem",
ja: "松葉門外の変",
de: "Vorfall auf dem Matsuba-Platz",
fr: "Règlement de compte au square Matsuba",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
251 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Battle on Bekko",
ja: "ベッコウ島の決闘",
de: "Entscheidungsschlacht auf Bekko",
fr: "L'affrontement de deux justices",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
252 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V1.0",
ja: "次元の狭間オメガデルタ編1",
de: "Deltametrie 1.0",
fr: "Deltastice v1.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
253 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V2.0",
ja: "次元の狭間オメガデルタ編2",
de: "Deltametrie 2.0",
fr: "Deltastice v2.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
254 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V3.0",
ja: "次元の狭間オメガデルタ編3",
de: "Deltametrie 3.0",
fr: "Deltastice v3.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
255 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V4.0",
ja: "次元の狭間オメガデルタ編4",
de: "Deltametrie 4.0",
fr: "Deltastice v4.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
256 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V1.0 (Savage)",
ja: "次元の狭間オメガ零式デルタ編1",
de: "Deltametrie 1.0 (episch)",
fr: "Deltastice v1.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
257 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V2.0 (Savage)",
ja: "次元の狭間オメガ零式デルタ編2",
de: "Deltametrie 2.0 (episch)",
fr: "Deltastice v2.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
258 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V3.0 (Savage)",
ja: "次元の狭間オメガ零式デルタ編3",
de: "Deltametrie 3.0 (episch)",
fr: "Deltastice v3.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
259 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Deltascape V4.0 (Savage)",
ja: "次元の狭間オメガ零式デルタ編4",
de: "Deltametrie 4.0 (episch)",
fr: "Deltastice v4.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
260 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Curious Gorge Meets His Match",
ja: "原初的な彼女",
de: "Die Urkraft in ihr",
fr: "L'épreuve de force",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
261 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "In Thal's Name",
ja: "ウル王杯闘技会の始まり",
de: "Thal zu Ehren",
fr: "Le tournoi commémoratif du sultanat",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
262 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Kugane Castle",
ja: "悪党成敗 クガネ城",
de: "Schloss Kugane",
2021-10-10 17:29:55 +00:00
fr: "Le Château de Kugane",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
263 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Emanation",
ja: "ラクシュミ討滅戦",
de: "Götterdämmerung - Lakshmi",
fr: "Émanation",
},
high_end: false,
content_kind: ContentKind::Trials,
},
264 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Emanation (Extreme)",
ja: "極ラクシュミ討滅戦",
de: "Zenit der Götter - Lakshmi",
fr: "Émanation (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
265 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Our Unsung Heroes",
ja: "時をかける願い",
de: "Ein Wunsch aus alten Zeiten",
fr: "L'espoir en héritage",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
266 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Heart of the Problem",
ja: "燃えよゴージ!",
de: "Kriegerische Leidenschaft",
fr: "Passion guerrière",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
267 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dark as the Night Sky",
ja: "漆黒の巨竜",
de: "Der tobende Drache",
fr: "Aussi sombre que la nuit",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
268 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Lost Canals of Uznair",
2021-10-10 15:39:45 +00:00
ja: "宝物庫 ウズネアカナル",
de: "Kanäle von Uznair",
2021-10-10 17:29:55 +00:00
fr: "Les Canaux perdus d'Uznair",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
269 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Resonant",
ja: "ウリエンジェの秘策",
de: "Wege zur Transzendenz",
fr: "La ruse d'Urianger",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
270 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Raising the Sword",
ja: "さらなる剣術の高みへ",
de: "Die hohe Kunst des Schwertkampfs",
fr: "La finale des champions",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
271 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Orphans and the Broken Blade",
ja: "あと三度、遥かな憧憬",
de: "Probe des Meisters",
fr: "L'aspiration refoulée",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
272 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Our Compromise",
ja: "あと一度、君に会えたら",
de: "Aus der Tiefe des Herzens",
fr: "La dernière séparation",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
273 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dragon Sound",
ja: "紅の竜騎士",
de: "Der Rubin-Drachenreiter",
fr: "Le Dragon écarlate",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
274 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "When Clans Collide",
ja: "影隠忍法帖",
de: "Aus dem Verborgenen",
fr: "La bataille des clans",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
275 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Interdimensional Rift",
ja: "次元の狭間:外縁",
de: "Interdimensionaler Riss",
fr: "Fissure interdimensionnelle",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
276 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Hidden Canals of Uznair",
2021-10-10 15:39:45 +00:00
ja: "宝物庫 ウズネアカナル深層",
de: "Vergessene Kanäle von Uznair",
2021-10-10 17:29:55 +00:00
fr: "Les Canaux cachés d'Uznair",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
277 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Astragalos",
ja: "アストラガロス (機工戦)",
de: "Astragalos",
fr: "Astragalos (machinerie)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
278 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Minstrel's Ballad: Shinryu's Domain",
2021-10-10 15:39:45 +00:00
ja: "極神龍討滅戦",
de: "Heldenlied von Shinryu",
fr: "Le domaine de Shinryu",
},
high_end: false,
content_kind: ContentKind::Trials,
},
279 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Drowned City of Skalla",
2021-10-10 15:39:45 +00:00
ja: "水没遺構 スカラ",
de: "Die versunkene Stadt Skalla",
2021-10-10 17:29:55 +00:00
fr: "La Cité engloutie de Skalla",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
280 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Unending Coil of Bahamut (Ultimate)",
2021-10-10 15:39:45 +00:00
ja: "絶バハムート討滅戦",
de: "Endlose Schatten von Bahamut (fatal)",
2021-10-10 17:29:55 +00:00
fr: "L'Abîme infini de Bahamut (fatal)",
2021-10-10 15:39:45 +00:00
},
high_end: true,
content_kind: ContentKind::UltimateRaids,
},
281 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Royal City of Rabanastre",
2021-10-10 15:39:45 +00:00
ja: "失われた都 ラバナスタ",
de: "Rabanastre",
2021-10-10 17:29:55 +00:00
fr: "La Cité royale de Rabanastre",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
282 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Return of the Bull",
ja: "英雄の帰還",
de: "Verrat der Qalyana",
fr: "Retour au bercail",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
283 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Forbidden Land, Eureka Anemos",
2021-10-10 15:39:45 +00:00
ja: "禁断の地 エウレカ:アネモス編",
de: "Eureka Anemos",
fr: "Eurêka Anemos",
},
high_end: false,
content_kind: ContentKind::Eureka,
},
284 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hells' Lid",
ja: "紅玉火山 獄之蓋",
de: "Höllenspund",
2021-10-10 17:29:55 +00:00
fr: "Le Couvercle des enfers",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
285 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Fractal Continuum (Hard)",
2021-10-10 15:39:45 +00:00
ja: "暴走戦艦 フラクタル・コンティニアム (Hard)",
de: "Die Fraktal-Kontinuum (schwer)",
2021-10-10 17:29:55 +00:00
fr: "Le Continuum fractal (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
286 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V1.0",
ja: "次元の狭間オメガシグマ編1",
de: "Sigmametrie 1.0",
fr: "Sigmastice v1.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
287 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V2.0",
ja: "次元の狭間オメガシグマ編2",
de: "Sigmametrie 2.0",
fr: "Sigmastice v2.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
288 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V3.0",
ja: "次元の狭間オメガシグマ編3",
de: "Sigmametrie 3.0",
fr: "Sigmastice v3.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
289 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V4.0",
ja: "次元の狭間オメガシグマ編4",
de: "Sigmametrie 4.0",
fr: "Sigmastice v4.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
290 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Jade Stoa",
2021-10-10 15:39:45 +00:00
ja: "白虎征魂戦",
de: "Seelentanz - Byakko",
2021-10-10 17:29:55 +00:00
fr: "La Clairière de Jade",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
291 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Jade Stoa (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極白虎征魂戦",
de: "Seelensturm - Byakko",
2021-10-10 17:29:55 +00:00
fr: "La Clairière de Jade (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
292 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V1.0 (Savage)",
ja: "次元の狭間オメガ零式シグマ編1",
de: "Sigmametrie 1.0 (episch)",
fr: "Sigmastice v1.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
293 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V2.0 (Savage)",
ja: "次元の狭間オメガ零式シグマ編2",
de: "Sigmametrie 2.0 (episch)",
fr: "Sigmastice v2.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
294 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V3.0 (Savage)",
ja: "次元の狭間オメガ零式シグマ編3",
de: "Sigmametrie 3.0 (episch)",
fr: "Sigmastice v3.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
295 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sigmascape V4.0 (Savage)",
ja: "次元の狭間オメガ零式シグマ編4",
de: "Sigmametrie 4.0 (episch)",
fr: "Sigmastice v4.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
473 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Valentione's Ceremony",
2021-10-10 15:39:45 +00:00
ja: "ヴァレンティオンセレモニー",
de: "Valentionzeremonie",
2021-10-10 17:29:55 +00:00
fr: "La Cérémonie de la Valention",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Other(22),
},
474 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Great Hunt",
2021-10-10 15:39:45 +00:00
ja: "リオレウス狩猟戦",
de: "Jagd auf Rathalos",
fr: "Chasse au Rathalos",
},
high_end: false,
content_kind: ContentKind::Trials,
},
475 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Great Hunt (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極リオレウス狩猟戦",
de: "Jagd auf Rathalos (schwer)",
fr: "Chasse au Rathalos (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
481 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tutorial",
ja: "チョコボレース:チュートリアル",
de: "Chocobo-Rennen: Übungsbahn",
fr: "Course d'appentissage",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
482 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 1 - Hugging the Inside",
ja: "第1節インコースを狙え",
de: "1: Immer schön innen",
fr: "CP1 - Toujours à la corde!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
483 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 2 - Keep Away",
ja: "第2節範囲攻撃を避けろ",
de: "2: Vorsicht, Flächenangriff",
fr: "CP2 - Gare aux attaques à aires d'effet!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
484 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 3 - Inability",
ja: "第3節アビリティに頼るな",
de: "3: Fähigkeiten sind nicht alles",
fr: "CP3 - En avant même sans aptitudes!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
485 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 4 - Heavy Hooves",
ja: "第4節ヘヴィなレース",
de: "4: Ein gewichtiges Rennen",
fr: "CP4 - Une course très très pesante!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
486 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 5 - Defending the Rush",
ja: "第5節とんずらを阻止せよ",
de: "5: Hiergeblieben!",
fr: "CP5 - Attention aux départs rapides!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
487 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 6 - Road Rivals",
ja: "第6節ライバルを叩け",
de: "6: Rivale auf Trab",
fr: "CP6 - Pas de pitié pour les rivaux!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
488 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 7 - Field of Dreams",
ja: "第7節フィールド・オブ・ドリームズ",
de: "7: Feld der Träume",
fr: "CP7 - Prendre du champ avec les champs!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
489 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 8 - Playing Both Ends",
ja: "第8節漁夫の利を狙え",
de: "8: Der lachende Dritte",
fr: "CP8 - Laissons les rivaux s'éliminer!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
490 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 9 - Stamina",
ja: "第9節スタミナの戦い",
de: "9: Der längere Atem",
fr: "CP9 - Une bataille d'endurance!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
491 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 10 - Cat and Mouse",
ja: "第10節逃げる者と追う者と",
de: "10: Zwei Temperamente",
fr: "CP10 - Course poursuite!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
492 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 11 - Mad Dash",
ja: "第11節全速で駆け抜けろ",
de: "11: Volle Kraft voraus",
fr: "CP11 - À bride abattue!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
493 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 12 - Bag of Tricks",
ja: "第12節アビリティを駆使せよ",
de: "12: Fähigkeiten ohne Wenn und Extra",
fr: "CP12 - Une épreuve d'aptitude!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
494 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 13 - Tag Team",
ja: "第13節連携プレイに勝利せよ",
de: "13: Ein unschlagbares Gespann",
fr: "CP13 - Un travail d'équipe!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
495 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 14 - Heavier Hooves",
ja: "第14節続ヘヴィなレース",
de: "14: Ein äußerst gewichtiges Rennen",
fr: "CP14 - Une course encore plus pesante!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
496 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Race 15 - Ultimatum",
ja: "第15節究極のレース",
de: "15: Rennen der Superlative",
fr: "CP15 - La course des extrêmes!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
497 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
498 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
499 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
500 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
501 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
502 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
503 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
504 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
505 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
506 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
507 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
508 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
509 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
510 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
511 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
512 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
513 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
514 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
515 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
516 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
517 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
518 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
519 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
520 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
521 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
522 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
523 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
524 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
525 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
526 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
527 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
528 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
529 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
530 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
531 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
532 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
533 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Sagolii Road",
ja: "チョコボレース:サゴリーロード",
de: "Chocobo-Rennen: Sagolii-Straße",
fr: "Course de chocobos: Route de Sagolii",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
534 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Costa del Sol",
ja: "チョコボレース:コスタ・デル・ソル",
de: "Chocobo-Rennen: Sonnenküste",
fr: "Course de chocobos: Costa del Sol",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
535 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chocobo Race: Tranquil Paths",
ja: "チョコボレース:トランキルパス",
de: "Chocobo-Rennen: Pfad der Seelenruhe",
fr: "Course de chocobos: Sentes tranquilles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
536 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Swallow's Compass",
2021-10-10 15:39:45 +00:00
ja: "風水霊殿 ガンエン廟",
de: "Kompass der Schwalbe",
2021-10-10 17:29:55 +00:00
fr: "Le Compas de l'Hirondelle",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
537 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Castrum Fluminis",
ja: "ツクヨミ討滅戦",
de: "Götterdämmerung - Tsukuyomi",
fr: "Castrum Fluminis",
},
high_end: false,
content_kind: ContentKind::Trials,
},
538 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Minstrel's Ballad: Tsukuyomi's Pain",
2021-10-10 15:39:45 +00:00
ja: "極ツクヨミ討滅戦",
de: "Zenit der Götter - Tsukuyomi",
fr: "Castrum Fluminis (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
539 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Weapon's Refrain (Ultimate)",
2021-10-10 15:39:45 +00:00
ja: "絶アルテマウェポン破壊作戦",
de: "Heldenlied von Ultima (fatal)",
2021-10-10 17:29:55 +00:00
fr: "La Fantasmagorie d'Ultima (fatal)",
2021-10-10 15:39:45 +00:00
},
high_end: true,
content_kind: ContentKind::UltimateRaids,
},
540 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 1-10)",
ja: "アメノミハシラ 110層",
de: "Himmelssäule (Ebenen 1-10)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 1-10)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
541 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 11-20)",
ja: "アメノミハシラ 1120層",
de: "Himmelssäule (Ebenen 11-20)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 11-20)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
542 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 21-30)",
ja: "アメノミハシラ 2130層",
de: "Himmelssäule (Ebenen 21-30)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 21-30)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
543 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 31-40)",
ja: "アメノミハシラ 3140層",
de: "Himmelssäule (Ebenen 31-40)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 31-40)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
544 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 41-50)",
ja: "アメノミハシラ 4150層",
de: "Himmelssäule (Ebenen 41-50)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 41-50)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
545 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 51-60)",
ja: "アメノミハシラ 5160層",
de: "Himmelssäule (Ebenen 51-60)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 51-60)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
546 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 61-70)",
ja: "アメノミハシラ 6170層",
de: "Himmelssäule (Ebenen 61-70)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 61-70)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
547 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 71-80)",
ja: "アメノミハシラ 7180層",
de: "Himmelssäule (Ebenen 71-80)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 71-80)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
548 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 81-90)",
ja: "アメノミハシラ 8190層",
de: "Himmelssäule (Ebenen 81-90)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 81-90)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
549 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Heaven-on-High (Floors 91-100)",
ja: "アメノミハシラ 91100層",
de: "Himmelssäule (Ebenen 91-100)",
2021-10-10 17:29:55 +00:00
fr: "Le Pilier des Cieux (étages 91-100)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::DeepDungeons,
},
550 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Ridorana Lighthouse",
2021-10-10 15:39:45 +00:00
ja: "封じられた聖塔 リドルアナ",
de: "Richtfeuer von Ridorana",
2021-10-10 17:29:55 +00:00
fr: "Le Phare de Ridorana",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
552 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 1: Tutorial",
ja: "第1節チュートリアル",
de: "Stufe 1: Einführung",
fr: "Bataille 1: Tutoriel",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
553 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 2: Hatching a Plan",
ja: "第2節チョコチョコチョコチョコボ",
de: "Stufe 2: Federn lassen",
fr: "Bataille 2: Ô beaux chocobos",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
554 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 3: The First Move",
ja: "第3節序盤にありそうな戦い",
de: "Stufe 3: Angriff der Ungeziefer",
fr: "Bataille 3: Des ouvertures",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
555 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 4: Little Big Beast",
ja: "第4節小さな巨獣",
de: "Stufe 4: Riesenbaby-Goobbue",
fr: "Bataille 4: Grosses petites bestioles",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
556 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 5: Turning Tribes",
ja: "第5節蛮族たちの反乱",
de: "Stufe 5: Aufstand der Wilden",
fr: "Bataille 5: Hommes-bêtes révoltés",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
557 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 6: Off the Deepcroft",
ja: "第6節恐怖、タラタラの墓所",
de: "Stufe 6: Gedankenspiele",
fr: "Bataille 6: Hypogée de Tam-Tam",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
558 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 7: Rivals",
ja: "第7節ライバルたちの共闘",
de: "Stufe 7: Vierbeinige Feinde",
fr: "Bataille 7: Comme chien et chat",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
559 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 8: Always Darkest",
ja: "第8節暁は光と闇とを分かつ",
de: "Stufe 8: Das Bündchen der Morgenröte",
fr: "Bataille 8: Héritiers miniatures",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
560 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 9: Mine Your Minions",
ja: "第9節爆破、カパカパベル銅山",
de: "Stufe 9: Auf den Schleim gegangen",
fr: "Bataille 9: Déflagration à Clochecuivre",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
561 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 10: Children of Mandragora",
ja: "第10節マンドラ帝国の逆襲",
de: "Stufe 10: Mandragora-Salat",
fr: "Bataille 10: Invasion de mandragores",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
562 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 11: The Queen and I",
ja: "第11節女王陛下万歳",
de: "Stufe 11: Die trabantäische Allianz",
fr: "Bataille 11: Longue vie aux Sultanes!",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
563 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 12: Breakout",
ja: "第12節デモンズブロック崩し",
de: "Stufe 12: Alea iacta est",
fr: "Bataille 12: Château d'Amdapeur",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
564 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 13: My Name Is Cid",
ja: "第13節筆頭機工師ガーロンド",
de: "Stufe 13: Luftadmiral Garlond",
fr: "Bataille 13: Épreuve des Forges",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
565 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 14: Like a Nut",
ja: "第14節ナッツの味にはもう飽きた",
de: "Stufe 14: Eins auf die Nuss",
fr: "Bataille 14: Casse-noisette",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
566 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 15: Urth's Spout",
ja: "第15節極小オーディン討滅戦",
de: "Stufe 15: Der Dunkle Reiter",
fr: "Bataille 15: Mini-fontaine d'Urth",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
567 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 16: Exodus",
ja: "第16節チョコボ大行進",
de: "Stufe 16: Chocobo-Mania",
fr: "Bataille 16: Parade des chocobos",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
568 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 17: Over the Wall",
ja: "第17節融解、スークローク小氷壁",
de: "Stufe 17: Jenseits des Schneekleids",
fr: "Bataille 17: Bonhommes de Manteneige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
569 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 18: The Hunt",
ja: "第18節小さなモブハント",
de: "Stufe 18: Die Trabanten-Jagd",
fr: "Bataille 18: Mini-contrat de chasse",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
570 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 19: Battle on the Bitty Bridge",
ja: "第19節極小ギルガメッシュ討滅戦",
de: "Stufe 19: Gilgameschs Hühnerstall",
fr: "Bataille 19: Revanche de Gilgamini",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
571 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 20: Guiding Light",
ja: "第20節汝にクリスタルの導きあれ",
de: "Stufe 20: Trabanten des Lichts",
fr: "Bataille 20: Pouvoir de la Lumière",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
572 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 21: Wise Words",
ja: "第21節賢人ルイゾワの試練",
de: "Stufe 21: Die Leveilleurs",
fr: "Bataille 21: Louisoix et petits fils",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
573 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 22: World of Poor Lighting",
ja: "第22節薄闇の世界",
de: "Stufe 22: Kleine Welt der Dunkelheit",
fr: "Bataille 22: Monde des Quasi-ténèbres",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
574 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 23: The Binding Coil",
ja: "第23節大迷惑バハムート邂逅編",
de: "Stufe 23: In die Verschlungenen Schatten",
fr: "Bataille 23: Labyrinthe de Basta-mut",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
575 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Stage 24: The Final Coil",
ja: "第24節大迷惑バハムート真成編",
de: "Stufe 24: Bahamut, der Aufzieh-Primae",
fr: "Bataille 24: Abîme de Basta-mut",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
576 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Master Battle",
ja: "LoVMミニオンクラス (Easy)",
de: "Kampf der Trabanten: Trabantenkampf",
fr: "Bataille simple contre l'ordinateur (facile)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
577 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Master Battle (Hard)",
ja: "LoVM真ミニオンクラス (Normal)",
de: "Kampf der Trabanten: Trabantendämmerung",
fr: "Bataille simple contre l'ordinateur (normal)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
578 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Master Battle (Extreme)",
ja: "LoVM極ミニオンクラス (Hard)",
de: "Kampf der Trabanten: Zenit der Trabanten",
fr: "Bataille simple contre l'ordinateur (brutal)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
579 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "LoVM: Master Tournament",
ja: "LoVM大会対戦 (CPU対戦)",
de: "Kampf der Trabanten: Turnier (gegen Arenameister)",
fr: "Bataille de tournoi contre l'ordinateur",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
581 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Forbidden Land, Eureka Pagos",
2021-10-10 15:39:45 +00:00
ja: "禁断の地 エウレカ:パゴス編",
de: "Eureka Pagos",
fr: "Eurêka Pagos",
},
high_end: false,
content_kind: ContentKind::Eureka,
},
582 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Emissary of the Dawn",
ja: "「暁」の少年",
de: "Der Knabe der Morgenröte",
fr: "Voyage en terre hostile",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
583 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Calamity Retold",
2021-10-10 15:39:45 +00:00
ja: "新生祭軍事演習",
de: "Gedenkschlacht der Eorzäischen Allianz",
2021-10-10 17:29:55 +00:00
fr: "Les grandes manœuvres commémoratives",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Other(22),
},
584 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Saint Mocianne's Arboretum (Hard)",
ja: "草木汚染 聖モシャーヌ植物園 (Hard)",
de: "Sankt Mocianne-Arboretum (schwer)",
2021-10-10 17:29:55 +00:00
fr: "L'Arboretum Sainte-Mocianne (brutal)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
585 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Burn",
2021-10-10 15:39:45 +00:00
ja: "永久焦土 ザ・バーン",
de: "Das Kargland",
fr: "L'Escarre",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
586 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Shifting Altars of Uznair",
2021-10-10 15:39:45 +00:00
ja: "宝物庫 ウズネアカナル祭殿",
de: "Glücksaltäre von Uznair",
2021-10-10 17:29:55 +00:00
fr: "Le Temple sacré d'Uznair",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
587 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V1.0",
ja: "次元の狭間オメガアルファ編1",
de: "Alphametrie 1.0",
fr: "Alphastice v1.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
588 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V2.0",
ja: "次元の狭間オメガアルファ編2",
de: "Alphametrie 2.0",
fr: "Alphastice v2.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
589 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V3.0",
ja: "次元の狭間オメガアルファ編3",
de: "Alphametrie 3.0",
fr: "Alphastice v3.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
590 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V4.0",
ja: "次元の狭間オメガアルファ編4",
de: "Alphametrie 4.0",
fr: "Alphastice v4.0",
},
high_end: false,
content_kind: ContentKind::Raids,
},
591 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V1.0 (Savage)",
ja: "次元の狭間オメガ零式アルファ編1",
de: "Alphametrie 1.0 (episch)",
fr: "Alphastice v1.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
592 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V2.0 (Savage)",
ja: "次元の狭間オメガ零式アルファ編2",
de: "Alphametrie 2.0 (episch)",
fr: "Alphastice v2.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
593 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V3.0 (Savage)",
ja: "次元の狭間オメガ零式アルファ編3",
de: "Alphametrie 3.0 (episch)",
fr: "Alphastice v3.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
594 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Alphascape V4.0 (Savage)",
ja: "次元の狭間オメガ零式アルファ編4",
de: "Alphametrie 4.0 (episch)",
fr: "Alphastice v4.0 (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
595 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Kugane Ohashi",
ja: "真ヨウジンボウ討滅戦",
de: "Duell auf der Kugane-Brücke",
2021-10-10 17:29:55 +00:00
fr: "Le Pont Ohashi",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
596 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hells' Kier",
ja: "朱雀征魂戦",
de: "Seelentanz - Suzaku",
2021-10-10 17:29:55 +00:00
fr: "Le Nid des Lamentations",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
597 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hells' Kier (Extreme)",
ja: "極朱雀征魂戦",
de: "Seelensturm - Suzaku",
2021-10-10 17:29:55 +00:00
fr: "Le Nid des Lamentations (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
598 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Forbidden Land, Eureka Pyros",
2021-10-10 15:39:45 +00:00
ja: "禁断の地 エウレカ:ピューロス編",
de: "Eureka Pyros",
fr: "Eurêka Pyros",
},
high_end: false,
content_kind: ContentKind::Eureka,
},
599 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Hidden Gorge",
ja: "ヒドゥンゴージ (機工戦)",
de: "Verborgene Schlucht",
fr: "Gorge dérobée (machinerie)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
600 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
601 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
602 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
603 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
604 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
605 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
606 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
607 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
608 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
609 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Will of the Moon",
ja: "楔石の虚",
de: "Der Wille der Mondgöttin",
fr: "Ralliement dans la steppe",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
610 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "All's Well That Starts Well",
ja: "デビューマッチ",
de: "Debüt in der Himmlischen Arena",
fr: "Début du spectacle",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
611 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Ghimlyt Dark",
2021-10-10 15:39:45 +00:00
ja: "境界戦線 ギムリトダーク",
de: "Die Ghimlyt-Finsternis",
fr: "Les Ténèbres de Ghimlyt",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
612 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Much Ado About Pudding",
ja: "プリン・アラモード",
de: "Pudding nach Art des Hauses",
fr: "Puddings à la mode",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
613 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Waiting for Golem",
ja: "最初の岩壁「シパクナー」",
de: "Zipacna - Aller Anfang ist schwer",
fr: "Zipacna, le premier obstacle",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
614 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Gentlemen Prefer Swords",
ja: "怪力の鉄巨人「クレイオス」",
de: "Kreios - Der Mann aus Stahl",
fr: "Kreios, le destructeur d'acier",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
615 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Threepenny Turtles",
ja: "ギルガメブラザーズ",
de: "Die Bruderschaft der Kröten",
fr: "La fratrie des gilkhélones",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
616 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eye Society",
ja: "ブラインド・フューリー",
de: "Den Tod im Auge",
fr: "Vengeance aveugle",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
617 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "A Chorus Slime",
ja: "シアーハートアタック",
de: "Heißkalte Schauer",
fr: "Pure attaque cardiaque",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
618 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Bomb-edy of Errors",
ja: "青い牙、赤い牙",
de: "Explosiv - Vorhut in Blau und Rot",
fr: "Crocs bleus et crocs rouges",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
619 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "To Kill a Mockingslime",
ja: "七色の甘味「ギモーヴ」",
de: "Guimauve und die sieben Gesichter des Todes",
fr: "Guimauve, le goût de l'arc-en-ciel",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
620 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "A Little Knight Music",
ja: "偶像の王者「クロムドゥーブ」",
de: "Crom Dubh - König der Götzen",
fr: "Crom Dubh, roi des idoles",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
621 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Some Like It Excruciatingly Hot",
ja: "爆ボム・ファーストアタック",
de: "Explosiv - Die zweite Welle",
fr: "Les courtes mèches",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
622 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Plant-om of the Opera",
ja: "寄生植物「ヒドノラ」",
de: "Hydnora - Der Parasit, der Paras sieht",
fr: "Hydnora, la plante parasite",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
623 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Beauty and a Beast",
ja: "紅の死妖姫「カーミラ」",
de: "Carmilla - Prinzessin des Todes",
fr: "La mystérieuse Carmilla",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
624 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Blobs in the Woods",
ja: "死なばもろともーッ!",
de: "Der Tod kommt süß gekleidet",
fr: "La mort n'a pas d'ami",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
625 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Me Nobody Nodes",
ja: "アラグの脅威「闘獣システム」",
de: "Die Bestie steckt im System",
fr: "La sphère bestiale, une menace allagoise",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
626 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sunset Bull-evard",
ja: "豪腕の獣王「ティクバラン」",
de: "Tikbalang - Der rechte Arm des Verderbens",
fr: "Tikbalang, bras tout-puissant",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
627 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Sword of Music",
ja: "剛柔の鉄巨人「クレイオス改」",
de: "Kreios - Neues vom Mann aus Stahl",
fr: "Kreios plie, mais ne rompt pas",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
628 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Midsummer Night's Explosion",
ja: "爆破デスマッチ",
de: "Explosiv - Revanche mit Wumms",
fr: "Rencontre explosive",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
629 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "On a Clear Day You Can Smell Forever",
ja: "魅惑の芳香「リフレクティブ・レベッカ」",
de: "Rebekkha - Verführerische Gerüche",
fr: "Miroir, mon beau miroir",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
630 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Miss Typhon",
ja: "名コンビ「オルトロス&テュポーン」",
de: "Ultros & Typhon - Zwei wie Rotz und Wasser",
fr: "Duo de choc: Orthros et maître Typhon",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
631 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Chimera on a Hot Tin Roof",
ja: "憤怒の合成獣「アペデマク」",
de: "Apademak - Die cholerische Chimära",
fr: "La chimèrique colère d'Apademak",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
632 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Here Comes the Boom",
ja: "爆発の対消滅「グランパボム」",
de: "Explosiv - Urgroßbomber lässt es krachen",
fr: "L'histoire détonante de Papi bombo",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
633 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Behemoths and Broomsticks",
ja: "魔獣の皇太子「クロンプリンツ・ベヒーモス」",
de: "Kronprinz-Behemoth - Vom Teufel besessen",
fr: "Kronprinz béhémoth, le prince héritier",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
634 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Amazing Technicolor Pit Fiends",
ja: "異形の人形師「エペロギ」",
de: "Epilogi - Das Ende kommt immer zuletzt",
fr: "Epilogi, l'étrange marionnettiste",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
635 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dirty Rotten Azulmagia",
ja: "悪の青魔道士「アポカリョープス」",
de: "Azulmagia - Der Blaumagier des Bösen",
fr: "L'abominable Azulmagia",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
636 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Orbonne Monastery",
2021-10-10 15:39:45 +00:00
ja: "楽欲の僧院 オーボンヌ",
de: "Kloster von Orbonne",
2021-10-10 17:29:55 +00:00
fr: "Le Monastère d'Orbonne",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Raids,
},
637 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Wreath of Snakes",
2021-10-10 15:39:45 +00:00
ja: "青龍征魂戦",
de: "Seelentanz - Seiryu",
2021-10-10 17:29:55 +00:00
fr: "L'Îlot des Amertumes",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
638 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Wreath of Snakes (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極青龍征魂戦",
de: "Seelensturm - Seiryu",
2021-10-10 17:29:55 +00:00
fr: "L'Îlot des Amertumes (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
639 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Forbidden Land, Eureka Hydatos",
2021-10-10 15:39:45 +00:00
ja: "禁断の地 エウレカ:ヒュダトス編",
de: "Eureka Hydatos",
fr: "Eurêka Hydatos",
},
high_end: false,
content_kind: ContentKind::Eureka,
},
640 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Air Force One",
ja: "出撃! エアフォースパイロット",
de: "Luftwaffe, Feuer frei!",
fr: "As de l'air",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
641 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Air Force One",
ja: "出撃! エアフォースパイロット",
de: "Luftwaffe, Feuer frei!",
fr: "As de l'air",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
642 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Air Force One",
ja: "出撃! エアフォースパイロット",
de: "Luftwaffe, Feuer frei!",
fr: "As de l'air",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
643 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Novice Mahjong (Full Ranked Match)",
ja: "ドマ式麻雀:半荘戦一般卓(段位変動有り)",
de: "Anfänger-Mahjong (komplette Partie, gewertet)",
fr: "Mahjong domien: tous rangs (partie classée)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
644 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Advanced Mahjong (Full Ranked Match)",
ja: "ドマ式麻雀:半荘戦有段卓(段位変動有り)",
de: "Fortgeschrittenen-Mahjong (komplette Partie, gewertet)",
fr: "Mahjong domien: dan seulement (partie classée)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
645 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Four-player Mahjong (Full Match, Kuitan Enabled)",
ja: "ドマ式麻雀半荘戦4人セット卓クイタン有り",
de: "4-Spieler-Mahjong (komplette Partie, Kuitan aktiviert)",
fr: "Mahjong domien: 4 joueurs (partie avec kuitan)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
646 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Messenger of the Winds",
ja: "来訪せし風の御使",
de: "Durch den Sturm und zurück",
fr: "La Messagère du vent",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
648 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "A Requiem for Heroes",
2021-10-10 15:39:45 +00:00
ja: "英雄への鎮魂歌",
de: "Requiem der Helden",
fr: "Un requiem pour les héros",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
649 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dohn Mheg",
ja: "水妖幻園 ドォーヌ・メグ",
de: "Dohn Mheg",
fr: "Dohn Mheg",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
650 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Four-player Mahjong (Full Match, Kuitan Disabled)",
ja: "ドマ式麻雀半荘戦4人セット卓クイタン無し",
de: "4-Spieler-Mahjong (komplette Partie, Kuitan deaktiviert)",
fr: "Mahjong domien: 4 joueurs (partie sans kuitan)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
651 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Qitana Ravel",
2021-10-10 15:39:45 +00:00
ja: "古跡探索 キタンナ神影洞",
de: "Irrungen der Qitari",
fr: "L'Enchevêtrement des Qitari",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
652 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Amaurot",
ja: "終末幻想 アーモロート",
de: "Amaurot",
fr: "Amaurote",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
653 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Resurrection",
ja: "希望の園エデン覚醒編1",
de: "Edens Erwachen - Auferstehung",
fr: "L'Éveil d'Éden - Résurrection",
},
high_end: false,
content_kind: ContentKind::Raids,
},
654 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Resurrection (Savage)",
ja: "希望の園エデン零式覚醒編1",
de: "Edens Erwachen - Auferstehung (episch)",
fr: "L'Éveil d'Éden - Résurrection (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
655 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Twinning",
2021-10-10 15:39:45 +00:00
ja: "異界遺構 シルクス・ツイニング",
de: "Der Kristallzwilling",
fr: "La Macle de Syrcus",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
656 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Malikah's Well",
ja: "爽涼離宮 マリカの大井戸",
de: "Malikahs Brunnen",
2021-10-10 17:29:55 +00:00
fr: "Le Puits de Malikah",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
657 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Dancing Plague",
ja: "ティターニア討滅戦",
de: "Offenbarung - Titania",
2021-10-10 17:29:55 +00:00
fr: "La Valse du Monarque",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
658 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Dancing Plague (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極ティターニア討滅戦",
de: "Letzte Läuterung - Titania",
2021-10-10 17:29:55 +00:00
fr: "La Valse du Monarque (extrême)",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
659 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Mt. Gulg",
ja: "偽造天界 グルグ火山",
de: "Der Gulg",
fr: "Mont Gulg",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
661 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Akadaemia Anyder",
ja: "創造機関 アナイダアカデミア",
de: "Akadaemia Anyder",
fr: "Akadaemia Anydre",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
666 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Crown of the Immaculate",
ja: "イノセンス討滅戦",
de: "Offenbarung - Innozenz",
fr: "La Couronne de l'Immaculé",
},
high_end: false,
content_kind: ContentKind::Trials,
},
667 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Crown of the Immaculate (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極イノセンス討滅戦",
de: "Letzte Läuterung - Innozenz",
fr: "La Couronne de l'Immaculé (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
676 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Holminster Switch",
ja: "殺戮郷村 ホルミンスター",
de: "Holminster",
fr: "Holminster",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
678 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Hardened Heart",
ja: "揺れる天秤",
de: "Ob Mitleid oder Hass",
fr: "Naissance d'un bourreau",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
679 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Lost and the Found",
ja: "古の大再生魔法",
de: "Alter Zauber",
fr: "Magie ancestrale",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
680 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Coming Clean",
ja: "廃都ナバスアレン",
de: "Vater und Bruder",
fr: "Sur les rails de Nabaath Areng",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
681 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Legend of the Not-so-hidden Temple",
ja: "仕掛けと呪いと毒と",
de: "Der Beichtstuhl von Toupasa dem Älteren",
fr: "Le Confessionnal de Toupasa l'ancien",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
682 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Inundation",
ja: "希望の園エデン覚醒編3",
de: "Edens Erwachen - Überflutung",
fr: "L'Éveil d'Éden - Déluge",
},
high_end: false,
content_kind: ContentKind::Raids,
},
683 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Inundation (Savage)",
ja: "希望の園エデン零式覚醒編3",
de: "Edens Erwachen - Überflutung (episch)",
fr: "L'Éveil d'Éden - Déluge (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
684 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Descent",
ja: "希望の園エデン覚醒編2",
de: "Edens Erwachen - Niederkunft",
fr: "L'Éveil d'Éden - Descente",
},
high_end: false,
content_kind: ContentKind::Raids,
},
685 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Descent (Savage)",
ja: "希望の園エデン零式覚醒編2",
de: "Edens Erwachen - Niederkunft (episch)",
fr: "L'Éveil d'Éden - Descente (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
686 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Nyelbert's Lament",
ja: "ナイルベルトの後悔",
de: "Ein großes Opfer",
fr: "Une cupidité bien généreuse",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
687 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Dying Gasp",
ja: "ハーデス討滅戦",
de: "Offenbarung - Hades",
2021-10-10 17:29:55 +00:00
fr: "Le Râle de l'Agonie",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Trials,
},
688 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Dungeons of Lyhe Ghiah",
ja: "宝物庫 リェー・ギア・ダンジョン",
de: "Verliese von Lyhe Ghiah",
2021-10-10 17:29:55 +00:00
fr: "Le Donjon hypogéen du Lyhe Ghiah",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
689 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Sepulture",
ja: "希望の園エデン覚醒編4",
de: "Edens Erwachen - Beerdigung",
fr: "L'Éveil d'Éden - Inhumation",
},
high_end: false,
content_kind: ContentKind::Raids,
},
690 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Gate: Sepulture (Savage)",
ja: "希望の園エデン零式覚醒編4",
de: "Edens Erwachen - Beerdigung (episch)",
fr: "L'Éveil d'Éden - Inhumation (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
691 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Hunter's Legacy",
ja: "勇気の狩人",
de: "Der Legende auf der Spur",
fr: "La chasseuse de légende",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
692 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Grand Cosmos",
ja: "魔法宮殿 グラン・コスモス",
de: "Chateau Cosmea",
2021-10-10 17:29:55 +00:00
fr: "Le Cosmos coruscant",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
693 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Minstrel's Ballad: Hades's Elegy",
ja: "極ハーデス討滅戦",
de: "Letzte Läuterung - Hades",
fr: "Le Râle de l'Agonie (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
694 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Epic of Alexander (Ultimate)",
ja: "絶アレキサンダー討滅戦",
de: "Alexander (fatal)",
fr: "L'Odyssée d'Alexander (fatal)",
},
high_end: true,
content_kind: ContentKind::UltimateRaids,
},
695 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Papa Mia",
ja: "豪腕の父親「フンババ・パパ」",
de: "Papa Mia",
fr: "Papa Humbaba, le paternel aux gros bras",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
696 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Lock up Your Snorters",
ja: "はないき爆破デスマッチ",
de: "Explosives Schnaufen",
fr: "Fungaaah! Et boum!",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
697 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Dangerous When Dead",
ja: "至妙の傀儡子「ドゥリン」",
de: "Begnadeter Puppenspieler",
fr: "Durinn, marionnettiste d'outre-tombe",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
698 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Red, Fraught, and Blue",
ja: "水と炎の歌",
de: "Die Melodie von Feuer und Wasser",
fr: "La mélodie du feu et de l'eau",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
699 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Catch of the Siegfried",
ja: "世界一の剣士「ジークフリード」",
de: "Siegfried, der beste Schwertkämpfer der Welt!",
fr: "Siegfried, le plus grand bretteur du monde",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
700 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Copied Factory",
ja: "複製サレタ工場廃墟",
de: "Die kopierte Fabrik",
fr: "La réplique de l'usine désaffectée",
},
high_end: false,
content_kind: ContentKind::Raids,
},
701 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Onsal Hakair (Danshig Naadam)",
ja: "オンサル・ハカイル (終節戦)",
de: "Onsal Hakair (Danshig Naadam)",
fr: "Onsal Hakair (Danshig Naadam)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
702 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Vows of Virtue, Deeds of Cruelty",
ja: "白き誓約、黒き密約",
de: "Der Wolf und der Drachenreiter",
fr: "Vœux de vertu, actes de cruauté",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
703 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "As the Heart Bids",
ja: "この心が望むがままに",
de: "Trubel im Traumland",
fr: "À l'écoute de soi",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
705 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
706 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
707 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
708 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
709 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
710 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
711 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
712 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
713 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
714 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Anamnesis Anyder",
ja: "黒風海底 アニドラス・アナムネーシス",
de: "Anamnesis Anyder",
fr: "Anamnesis Anydre",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
715 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Fulmination",
ja: "希望の園エデン共鳴編1",
de: "Edens Resonanz - Entladung",
fr: "Les Accords d'Éden - Fulmination",
},
high_end: false,
content_kind: ContentKind::Raids,
},
716 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Fulmination (Savage)",
ja: "希望の園エデン零式共鳴編1",
de: "Edens Resonanz - Entladung (episch)",
fr: "Les Accords d'Éden - Fulmination (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
717 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Cinder Drift",
ja: "ルビーウェポン破壊作戦",
de: "Rubinfeuer - Entfesselung",
fr: "Les Nuées de Brandons",
},
high_end: false,
content_kind: ContentKind::Trials,
},
718 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Cinder Drift (Extreme)",
ja: "極ルビーウェポン破壊作戦",
de: "Rubinfeuer - Trauma",
fr: "Les Nuées de Brandons (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
719 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Furor",
ja: "希望の園エデン共鳴編2",
de: "Edens Resonanz - Raserei",
fr: "Les Accords d'Éden - Fureur",
},
high_end: false,
content_kind: ContentKind::Raids,
},
720 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Furor (Savage)",
ja: "希望の園エデン零式共鳴編2",
de: "Edens Resonanz - Raserei (episch)",
fr: "Les Accords d'Éden - Fureur (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
721 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
722 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem",
2021-10-10 15:39:45 +00:00
ja: "雲海採集 ディアデム諸島",
de: "Das Diadem - Erschließung",
fr: "Le Diadème",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
723 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Bozja Incident",
2021-10-10 15:39:45 +00:00
ja: "シタデル・ボズヤ蒸発事変",
de: "Der Bozja-Vorfall",
fr: "Prélude à la catastrophe",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
724 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "A Sleep Disturbed",
ja: "汝、英雄の眠り妨げるは",
de: "Von schlafenden Helden",
fr: "L'épreuve ronka",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
725 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Memoria Misera (Extreme)",
ja: "極シタデル・ボズヤ追憶戦",
de: "Memoria Misera (extrem)",
fr: "Memoria Misera (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
726 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Iconoclasm",
ja: "希望の園エデン共鳴編3",
de: "Edens Resonanz - Bildersturm",
fr: "Les Accords d'Éden - Iconoclasme",
},
high_end: false,
content_kind: ContentKind::Raids,
},
727 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Iconoclasm (Savage)",
ja: "希望の園エデン零式共鳴編3",
de: "Edens Resonanz - Bildersturm (episch)",
fr: "Les Accords d'Éden - Iconoclasme (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
728 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Refulgence",
ja: "希望の園エデン共鳴編4",
de: "Edens Resonanz - Erstarrung",
fr: "Les Accords d'Éden - Éclat",
},
high_end: false,
content_kind: ContentKind::Raids,
},
729 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Verse: Refulgence (Savage)",
ja: "希望の園エデン零式共鳴編4",
de: "Edens Resonanz - Erstarrung (episch)",
fr: "Les Accords d'Éden - Éclat (sadique)",
},
high_end: false,
content_kind: ContentKind::Raids,
},
730 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
731 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
732 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
733 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
734 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
735 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Bozjan Southern Front",
ja: "南方ボズヤ戦線",
de: "Bozja-Südfront",
fr: "Front sud de Bozja",
},
high_end: false,
content_kind: ContentKind::Other(29),
},
736 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Puppets' Bunker",
2021-10-10 15:39:45 +00:00
ja: "人形タチノ軍事基地",
de: "Die Puppenfestung",
fr: "La base militaire des Pantins",
},
high_end: false,
content_kind: ContentKind::Raids,
},
737 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Heroes' Gauntlet",
2021-10-10 15:39:45 +00:00
ja: "漆黒決戦 ノルヴラント",
de: "Schlacht um Norvrandt",
fr: "La Traversée de Norvrandt",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
738 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Seat of Sacrifice",
2021-10-10 15:39:45 +00:00
ja: "ウォーリア・オブ・ライト討滅戦",
de: "Krieger des Lichts",
fr: "Le Trône du Sacrifice",
},
high_end: false,
content_kind: ContentKind::Trials,
},
739 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Seat of Sacrifice (Extreme)",
2021-10-10 15:39:45 +00:00
ja: "極ウォーリア・オブ・ライト討滅戦",
de: "Krieger des Lichts (extrem)",
fr: "Le Trône du Sacrifice (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
740 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sleep Now in Sapphire",
ja: "飛べ! ウェルリトへ ",
de: "Luftangriff auf Werlyt",
fr: "Sur la mer de saphir",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
741 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Sleep Now in Sapphire",
ja: "飛べ! ウェルリトへ ",
de: "Luftangriff auf Werlyt",
fr: "Sur la mer de saphir",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
742 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem",
2021-10-10 15:39:45 +00:00
ja: "雲海採集 ディアデム諸島",
de: "Das Diadem - Erschließung",
fr: "Le Diadème",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
743 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Faded Memories",
ja: "色あせた記憶",
de: "Verblasste Erinnerungen",
fr: "Souvenir périssable",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
745 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Shifting Oubliettes of Lyhe Ghiah",
2021-10-10 15:39:45 +00:00
ja: "宝物庫 リェー・ギア・ダンジョン祭殿",
de: "Das Karussell von Lyhe Ghiah",
2021-10-10 17:29:55 +00:00
fr: "Le Jardin secret du Lyhe Ghiah",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
746 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Matoya's Relict",
ja: "魔術工房 マトーヤのアトリエ",
de: "Matoyas Atelier",
2021-10-10 17:29:55 +00:00
fr: "L'Atelier abandonné de Matoya",
2021-10-10 15:39:45 +00:00
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
747 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Litany",
ja: "希望の園エデン再生編2",
de: "Edens Verheißung - Litanei",
fr: "La Promesse d'Éden - Litanie",
},
high_end: false,
content_kind: ContentKind::Raids,
},
748 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Litany (Savage)",
ja: "希望の園エデン零式再生編2",
de: "Edens Verheißung - Litanei (episch)",
fr: "La Promesse d'Éden - Litanie (sadique)",
},
2021-12-06 20:58:36 +00:00
high_end: false,
content_kind: ContentKind::Raids,
},
749 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Umbra",
ja: "希望の園エデン再生編1",
de: "Edens Verheißung - Umbra",
fr: "La Promesse d'Éden - Nuée",
},
high_end: false,
content_kind: ContentKind::Raids,
},
750 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Umbra (Savage)",
ja: "希望の園エデン零式再生編1",
de: "Edens Verheißung - Umbra (episch)",
fr: "La Promesse d'Éden - Nuée (sadique)",
},
2021-12-06 20:58:36 +00:00
high_end: false,
content_kind: ContentKind::Raids,
},
751 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Anamorphosis",
ja: "希望の園エデン再生編3",
de: "Edens Verheißung - Anamorphose",
fr: "La Promesse d'Éden - Anamorphose",
},
high_end: false,
content_kind: ContentKind::Raids,
},
752 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Anamorphosis (Savage)",
ja: "希望の園エデン零式再生編3",
de: "Edens Verheißung - Anamorphose (episch)",
fr: "La Promesse d'Éden - Anamorphose (sadique)",
},
2021-12-06 20:58:36 +00:00
high_end: false,
content_kind: ContentKind::Raids,
},
753 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
2021-10-10 17:29:55 +00:00
en: "The Diadem",
2021-10-10 15:39:45 +00:00
ja: "雲海採集 ディアデム諸島",
de: "Das Diadem - Erschließung",
fr: "Le Diadème",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
754 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Anything Gogo's",
ja: "黄金頭巾「ものまね士ゴゴ」",
de: "Gogo der Mime",
fr: "Gogo le mime",
},
high_end: false,
content_kind: ContentKind::Other(27),
},
755 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Triple Triad Open Tournament",
ja: "トリプルトライアド:オフィシャルトーナメント",
de: "Triple Triad: Manderville-Turnier",
fr: "Tournoi officiel de Triple Triade",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
756 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Triple Triad Invitational Parlor",
ja: "トリプルトライアド:カスタムトーナメントルーム",
de: "Triple Triad: Privatturnier",
fr: "Salle de tournoi libre de Triple Triade",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
758 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Eternity",
ja: "希望の園エデン再生編4",
de: "Edens Verheißung - Ewigkeit",
fr: "La Promesse d'Éden - Éternité",
},
high_end: false,
content_kind: ContentKind::Raids,
},
759 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Eden's Promise: Eternity (Savage)",
ja: "希望の園エデン零式再生編4",
de: "Edens Verheißung - Ewigkeit (episch)",
fr: "La Promesse d'Éden - Éternité (sadique)",
},
2021-12-06 20:58:36 +00:00
high_end: false,
content_kind: ContentKind::Raids,
},
760 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Delubrum Reginae",
ja: "グンヒルド・ディルーブラム",
de: "Delubrum Reginae",
fr: "Delubrum Reginae",
},
high_end: false,
content_kind: ContentKind::Other(29),
},
761 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Delubrum Reginae (Savage)",
ja: "グンヒルド・ディルーブラム零式",
de: "Delubrum Reginae (episch)",
fr: "Delubrum Reginae (sadique)",
},
high_end: false,
content_kind: ContentKind::Other(29),
},
762 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Castrum Marinum",
ja: "エメラルドウェポン破壊作戦",
de: "Smaragdsturm - Entfesselung",
fr: "Castrum Marinum",
},
high_end: false,
content_kind: ContentKind::Trials,
},
763 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Castrum Marinum (Extreme)",
ja: "極エメラルドウェポン破壊作戦",
de: "Smaragdsturm - Trauma",
fr: "Castrum Marinum (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
764 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Great Ship Vylbrand",
ja: "バイルブランドの船出",
de: "Gute Winde für Vylbrand",
fr: "Un navire nommé Vylbrand",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
765 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Fit for a Queen",
ja: "ゴッド・セイブ・ザ・クイーン",
de: "Hinab in die Ruinen",
fr: "Que les Dieux gardent la Reine",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
766 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Novice Mahjong (Quick Ranked Match)",
ja: "ドマ式麻雀:東風戦一般卓(段位変動有り)",
de: "Anfänger-Mahjong (schnelle Partie, gewertet)",
fr: "Mahjong domien: tous rangs (partie rapide classée)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
767 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Advanced Mahjong (Quick Ranked Match)",
ja: "ドマ式麻雀:東風戦有段卓(段位変動有り)",
de: "Fortgeschrittenen-Mahjong (schnelle Partie, gewertet)",
fr: "Mahjong domien: dan seulement (partie rapide classée)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
768 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Four-player Mahjong (Quick Match, Kuitan Enabled)",
ja: "ドマ式麻雀東風戦4人セット卓クイタン有り",
de: "4-Spieler-Mahjong (schnelle Partie, Kuitan aktiviert)",
fr: "Mahjong domien: 4 joueurs (partie rapide avec kuitan)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
769 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Four-player Mahjong (Quick Match, Kuitan Disabled)",
ja: "ドマ式麻雀東風戦4人セット卓クイタン無し",
de: "4-Spieler-Mahjong (schnelle Partie, Kuitan deaktiviert)",
fr: "Mahjong domien: 4 joueurs (partie rapide sans kuitan)",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
770 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
771 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
772 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
773 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
774 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
775 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Ocean Fishing",
ja: "オーシャンフィッシング",
de: "Auf großer Fahrt",
fr: "Pêche en mer",
},
high_end: false,
content_kind: ContentKind::DisciplesoftheLand,
},
777 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Paglth'an",
ja: "黄金平原 パガルザン",
de: "Die Goldene Ebene von Paglth'an",
fr: "La grande prairie de Paglth'an",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
778 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Zadnor",
ja: "ザトゥノル高原",
de: "Zadnor-Hochebene",
fr: "Hauts plateaux de Zadnor",
},
high_end: false,
content_kind: ContentKind::Other(29),
},
779 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Tower at Paradigm's Breach",
ja: "希望ノ砲台:「塔」",
de: "Der Turm, Paradigmenbrecher",
fr: "La tour de la Contingence",
},
high_end: false,
content_kind: ContentKind::Raids,
},
780 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "Death Unto Dawn",
ja: "黎明の死闘",
de: "Kampf im Morgengrauen",
fr: "Aube meurtrière",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
781 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Cloud Deck",
ja: "ダイヤウェポン捕獲作戦",
de: "Diamantblitz - Entfesselung",
fr: "Le Tillac des Cirrus",
},
high_end: false,
content_kind: ContentKind::Trials,
},
782 => DutyInfo {
2021-10-10 15:39:45 +00:00
name: LocalisedText {
en: "The Cloud Deck (Extreme)",
ja: "極ダイヤウェポン捕獲作戦",
de: "Diamantblitz - Trauma",
fr: "Le Tillac des Cirrus (extrême)",
},
high_end: false,
content_kind: ContentKind::Trials,
},
2021-12-06 20:58:36 +00:00
783 => DutyInfo {
name: LocalisedText {
en: "The Tower of Zot",
ja: "異形楼閣 ゾットの塔",
de: "Der Turm von Zot",
fr: "La tour de Zott",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
784 => DutyInfo {
name: LocalisedText {
en: "The Stigma Dreamscape",
ja: "電脳夢想 スティグマ・フォー",
de: "Stigma-Holometrie",
fr: "Rêve électrique de Stigma-4",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
785 => DutyInfo {
name: LocalisedText {
en: "The Tower of Babil",
ja: "魔導神門 バブイルの塔",
de: "Der Turm von Babil",
fr: "La tour de Babil",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
786 => DutyInfo {
name: LocalisedText {
en: "The Aitiascope",
ja: "星海潜航 アイティオン星晶鏡",
de: "Das Aitiaskop",
fr: "Le Prisme de l'Aitia",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
787 => DutyInfo {
name: LocalisedText {
en: "Ktisis Hyperboreia",
ja: "創造環境 ヒュペルボレア造物院",
de: "Ktisis Hyperboreia",
fr: "L'Hyperborée",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
2022-05-03 20:49:51 +00:00
788 => DutyInfo {
name: LocalisedText {
en: "Dragonsong's Reprise (Ultimate)",
ja: "絶竜詩戦争",
de: "Drachenkrieg (fatal)",
fr: "La Guerre du chant des dragons (fatal)",
},
high_end: true,
content_kind: ContentKind::UltimateRaids,
},
2021-12-06 20:58:36 +00:00
789 => DutyInfo {
name: LocalisedText {
en: "Vanaspati",
ja: "終末樹海 ヴァナスパティ",
de: "Vanaspati",
fr: "Vanaspati",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
790 => DutyInfo {
name: LocalisedText {
en: "The Mothercrystal",
ja: "ハイデリン討滅戦",
de: "Prophetie - Hydaelyn",
fr: "Le Cristal-mère",
},
high_end: false,
content_kind: ContentKind::Trials,
},
791 => DutyInfo {
name: LocalisedText {
en: "The Minstrel's Ballad: Hydaelyn's Call",
ja: "極ハイデリン討滅戦",
de: "Eschatos - Hydaelyn",
fr: "Le Cristal-mère (extrême)",
},
2022-05-03 20:49:51 +00:00
high_end: false,
2021-12-06 20:58:36 +00:00
content_kind: ContentKind::Trials,
},
792 => DutyInfo {
name: LocalisedText {
en: "The Dead Ends",
ja: "最終幻想 レムナント",
de: "Das Sternengrab",
fr: "L'Issue aux Impasses",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
793 => DutyInfo {
name: LocalisedText {
en: "In from the Cold",
ja: "寒夜のこと",
de: "In fremder Haut",
fr: "Le voleur de corps",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
794 => DutyInfo {
name: LocalisedText {
en: "Smileton",
ja: "楽園都市 スマイルトン",
de: "Smileton",
fr: "Risette-sur-lune",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
795 => DutyInfo {
name: LocalisedText {
en: "Worthy of His Back",
ja: "前代アゼムの手ほどき",
de: " Es reimt sich auf Gebell",
fr: "Le défi de l'ancienne Azem",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
796 => DutyInfo {
name: LocalisedText {
en: "The Final Day",
ja: "終焉の戦い",
de: "Prophetie - Endsängerin",
fr: "Le Répons final",
},
high_end: false,
content_kind: ContentKind::Trials,
},
797 => DutyInfo {
name: LocalisedText {
en: "The Phantoms' Feast",
ja: "道化饗宴 ホーンテッドフィースト",
de: "Lustiges Bankett",
fr: "Le banquet cauchemardesque",
},
high_end: false,
content_kind: ContentKind::Other(22),
},
798 => DutyInfo {
name: LocalisedText {
en: "Endwalker",
ja: "暁月のフィナーレ",
2021-12-27 05:30:40 +00:00
de: "Endschreiter",
2021-12-06 20:58:36 +00:00
fr: "Arpenteur des finitudes",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
799 => DutyInfo {
name: LocalisedText {
en: "To Calmer Seas",
ja: "融和への船出",
de: "Im Hafen des Friedens",
fr: "Cap sur la paix",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
2021-12-27 05:30:40 +00:00
800 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The Fourth Circle",
ja: "万魔殿パンデモニウム辺獄編4",
de: "Asphodelos - Vierter Kreis",
fr: "Les Limbes du Pandæmonium - Abîme",
},
high_end: false,
content_kind: ContentKind::Raids,
},
2022-01-04 22:12:00 +00:00
801 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The Fourth Circle (Savage)",
ja: "万魔殿パンデモニウム零式辺獄編4",
de: "Asphodelos - Vierter Kreis (episch)",
fr: "Les Limbes du Pandæmonium - Abîme (sadique)",
},
2022-08-25 21:05:41 +00:00
high_end: false,
2022-01-04 22:12:00 +00:00
content_kind: ContentKind::Raids,
},
2021-12-06 20:58:36 +00:00
802 => DutyInfo {
name: LocalisedText {
en: "The Dark Inside",
ja: "ゾディアーク討滅戦",
de: "Prophetie - Zodiark",
fr: "Le Cratère des Martyrs",
},
high_end: false,
content_kind: ContentKind::Trials,
},
803 => DutyInfo {
name: LocalisedText {
en: "The Minstrel's Ballad: Zodiark's Fall",
ja: "極ゾディアーク討滅戦",
de: "Eschatos - Zodiark",
fr: "Le Cratère des Martyrs (extrême)",
},
2022-05-03 20:49:51 +00:00
high_end: false,
2021-12-06 20:58:36 +00:00
content_kind: ContentKind::Trials,
},
804 => DutyInfo {
name: LocalisedText {
en: "As the Heavens Burn",
ja: "拡がる終末",
de: "Rote Himmel, roter Schnee",
fr: "L'arène des neiges",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
805 => DutyInfo {
name: LocalisedText {
en: "A Path Unveiled",
ja: "開かれた道の先へ",
de: "Offen für neue Wege",
fr: "Des esprits et des hommes",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
2021-12-27 05:30:40 +00:00
806 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The Third Circle",
ja: "万魔殿パンデモニウム辺獄編3",
de: "Asphodelos - Dritter Kreis",
fr: "Les Limbes du Pandæmonium - Fournaise",
},
high_end: false,
content_kind: ContentKind::Raids,
},
2022-01-04 22:12:00 +00:00
807 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The Third Circle (Savage)",
ja: "万魔殿パンデモニウム零式辺獄編3",
de: "Asphodelos - Dritter Kreis (episch)",
fr: "Les Limbes du Pandæmonium - Fournaise (sadique)",
},
2022-08-25 21:05:41 +00:00
high_end: false,
2022-01-04 22:12:00 +00:00
content_kind: ContentKind::Raids,
},
2021-12-27 05:30:40 +00:00
808 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The First Circle",
ja: "万魔殿パンデモニウム辺獄編1",
de: "Asphodelos - Erster Kreis",
fr: "Les Limbes du Pandæmonium - Parvis",
},
high_end: false,
content_kind: ContentKind::Raids,
},
2022-01-04 22:12:00 +00:00
809 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The First Circle (Savage)",
ja: "万魔殿パンデモニウム零式辺獄編1",
de: "Asphodelos - Erster Kreis (episch)",
fr: "Les Limbes du Pandæmonium - Parvis (sadique)",
},
2022-08-25 21:05:41 +00:00
high_end: false,
2022-01-04 22:12:00 +00:00
content_kind: ContentKind::Raids,
},
2021-12-27 05:30:40 +00:00
810 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The Second Circle",
ja: "万魔殿パンデモニウム辺獄編2",
de: "Asphodelos - Zweiter Kreis",
fr: "Les Limbes du Pandæmonium - Cloaque",
},
high_end: false,
content_kind: ContentKind::Raids,
},
2022-01-04 22:12:00 +00:00
811 => DutyInfo {
name: LocalisedText {
en: "Asphodelos: The Second Circle (Savage)",
ja: "万魔殿パンデモニウム零式辺獄編2",
de: "Asphodelos - Zweiter Kreis (episch)",
fr: "Les Limbes du Pandæmonium - Cloaque (sadique)",
},
2022-08-25 21:05:41 +00:00
high_end: false,
2022-01-04 22:12:00 +00:00
content_kind: ContentKind::Raids,
},
2021-12-06 20:58:36 +00:00
812 => DutyInfo {
name: LocalisedText {
en: "A Frosty Reception",
ja: "霜雪を踏みしめて",
de: "Ein frostiger Empfang",
fr: "Un accueil glacial",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
813 => DutyInfo {
name: LocalisedText {
en: "Sage's Focus",
ja: "賢者の短杖",
de: "Des Weisen wundersames Werkzeug",
fr: "Les armes du sage",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
814 => DutyInfo {
name: LocalisedText {
en: "The Harvest Begins",
ja: "大鎌の意味",
de: "Die Bedeutung der Sense",
fr: "La vraie puissance de la faux",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
815 => DutyInfo {
name: LocalisedText {
en: "Ever March Heavensward",
ja: "蒼天を仰ぎ、歩み続ける",
de: "Der Weg zur Erneuerung",
fr: "La voie du renouveau",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
816 => DutyInfo {
name: LocalisedText {
en: "The Killing Art",
ja: "暗殺道",
de: "Die Kunst des Tötens",
fr: "La voie du néant",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
817 => DutyInfo {
name: LocalisedText {
en: "Life Ephemeral, Path Eternal",
ja: "人命は儚く、術のみちは永久に",
de: "Das Leben ist kurz, die Kunst ist lang",
fr: "Existences éphémères et savoir éternel",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
818 => DutyInfo {
name: LocalisedText {
en: "Laid to Rest",
ja: "ドマの弔い",
de: "Domanisches Begräbnis",
fr: "Des adieux domiens",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
2022-01-04 22:12:00 +00:00
819 => DutyInfo {
name: LocalisedText {
en: "The Excitatron 6000",
ja: "宝物庫 エキサイトロン",
de: "Euphoratron",
fr: "Le Ludodrome",
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
2021-12-06 20:58:36 +00:00
820 => DutyInfo {
name: LocalisedText {
en: "The Gift of Mercy",
ja: "僕たちは還り、君を見送ろう",
de: "Trauer und Hoffnung",
fr: "Acceptation",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
2022-05-03 20:49:51 +00:00
830 => DutyInfo {
name: LocalisedText {
en: "The Porta Decumana",
ja: "アルテマウェポン破壊作戦",
de: "Porta Decumana",
fr: "Porta Decumana",
},
high_end: false,
content_kind: ContentKind::Trials,
},
835 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
836 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
837 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
838 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
839 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
840 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
841 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
842 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
843 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
844 => DutyInfo {
name: LocalisedText {
en: "Alzadaal's Legacy",
ja: "近東秘宝 アルザダール海底遺跡群",
de: "Alzadaals Vermächtnis",
fr: "Le legs d'Alzadaal",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
845 => DutyInfo {
name: LocalisedText {
en: "Forlorn Glory",
ja: "ネルウァの帝国",
de: "Nervas Reich",
fr: "Nerva, le patriote",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
846 => DutyInfo {
name: LocalisedText {
en: "The Minstrel's Ballad: Endsinger's Aria",
ja: "終極の戦い",
de: "Eschatos - Endsängerin",
fr: "Le Répons final (extrême)",
},
2022-08-25 21:05:41 +00:00
high_end: false,
2022-05-03 20:49:51 +00:00
content_kind: ContentKind::Trials,
},
847 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
848 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
849 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
850 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
851 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
852 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
853 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
854 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
855 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
856 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
857 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
858 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
859 => DutyInfo {
name: LocalisedText {
en: "The Palaistra",
ja: "パライストラ",
de: "Die Palästra",
fr: "Le Palestre",
},
high_end: false,
content_kind: ContentKind::PvP,
},
860 => DutyInfo {
name: LocalisedText {
en: "The Volcanic Heart",
ja: "ヴォルカニック・ハート",
de: "Das Herz des Vulkans",
fr: "Le Cœur volcanique",
},
high_end: false,
content_kind: ContentKind::PvP,
},
861 => DutyInfo {
name: LocalisedText {
en: "Cloud Nine",
ja: "クラウドナイン",
de: "Wolke Sieben",
fr: "Le Petit Nuage",
},
high_end: false,
content_kind: ContentKind::PvP,
},
862 => DutyInfo {
name: LocalisedText {
en: "Crystalline Conflict (Custom Match - The Palaistra)",
ja: "クリスタルコンフリクト(パライストラ:カスタムマッチ)",
de: "Crystalline Conflict: Die Palästra (Schaukampf)",
fr: "Crystalline Conflict (partie personnalisée - Le Palestre)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
863 => DutyInfo {
name: LocalisedText {
en: "Crystalline Conflict (Custom Match - The Volcanic Heart)",
ja: "クリスタルコンフリクト(ヴォルカニック・ハート:カスタムマッチ)",
de: "Crystalline Conflict: Das Herz des Vulkans (Schaukampf)",
fr: "Crystalline Conflict (partie personnalisée - Le Cœur volcanique)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
864 => DutyInfo {
name: LocalisedText {
en: "Crystalline Conflict (Custom Match - Cloud Nine)",
ja: "クリスタルコンフリクト(クラウドナイン:カスタムマッチ)",
de: "Crystalline Conflict: Wolke Sieben (Schaukampf)",
fr: "Crystalline Conflict (partie personnalisée - Le Petit Nuage)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
865 => DutyInfo {
name: LocalisedText {
en: "Cape Westwind",
ja: "リットアティン強襲戦",
de: "Kap Westwind",
fr: "Le Cap Vendouest",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
866 => DutyInfo {
name: LocalisedText {
en: "Aglaia",
ja: "輝ける神域 アグライア",
de: "Aglaia",
fr: "Domaine divin - Aglaé",
},
high_end: false,
content_kind: ContentKind::Raids,
},
867 => DutyInfo {
name: LocalisedText {
en: "Devastation",
ja: "アシエン・ラハブレア討伐戦",
de: "Das Antlitz der Kaltblütigkeit",
fr: "Le Praetorium en flammes",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
2023-01-15 18:25:56 +00:00
868 => DutyInfo {
name: LocalisedText {
en: "The Sil'dihn Subterrane",
ja: "ヴァリアントダンジョン シラディハ水道",
de: "Die Unterstadt von Sil'dih",
fr: "Les canalisations sildiennes - Donjon à embranchements",
},
high_end: false,
content_kind: ContentKind::V&CDungeonFinder,
},
2022-08-25 21:05:41 +00:00
869 => DutyInfo {
name: LocalisedText {
en: "The Fell Court of Troia",
ja: "異界孤城 トロイアコート",
de: "Der Schwarze Hof von Troia",
fr: "Le Château de Troïa",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
870 => DutyInfo {
name: LocalisedText {
en: "Storm's Crown",
ja: "バルバリシア討滅戦",
de: "Prophetie - Barbarizia",
fr: "La Toison des tempêtes",
},
high_end: false,
content_kind: ContentKind::Trials,
},
871 => DutyInfo {
name: LocalisedText {
en: "Storm's Crown (Extreme)",
ja: "極バルバリシア討滅戦",
de: "Eschatos - Barbarizia",
fr: "La Toison des tempêtes (extrême)",
},
2023-01-15 18:25:56 +00:00
high_end: false,
2022-08-25 21:05:41 +00:00
content_kind: ContentKind::Trials,
},
872 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Fifth Circle",
ja: "万魔殿パンデモニウム煉獄編1",
de: "Abyssos - Fünfter Kreis",
fr: "Le Purgatoire du Pandæmonium - Cages",
},
high_end: false,
content_kind: ContentKind::Raids,
},
873 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Fifth Circle (Savage)",
ja: "万魔殿パンデモニウム零式煉獄編1",
de: "Abyssos - Fünfter Kreis (episch)",
fr: "Le Purgatoire du Pandæmonium - Cages (sadique)",
},
high_end: true,
content_kind: ContentKind::Raids,
},
874 => DutyInfo {
name: LocalisedText {
en: "Where Everything Begins",
ja: "失われた力",
de: "Wo alles seinen Anfang nimmt",
fr: "Au commencement était Zero",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
876 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Seventh Circle",
ja: "万魔殿パンデモニウム煉獄編3",
de: "Abyssos - Siebter Kreis",
fr: "Le Purgatoire du Pandæmonium - Racines",
},
high_end: false,
content_kind: ContentKind::Raids,
},
877 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Seventh Circle (Savage)",
ja: "万魔殿パンデモニウム零式煉獄編3",
de: "Abyssos - Siebter Kreis (episch)",
fr: "Le Purgatoire du Pandæmonium - Racines (sadique)",
},
high_end: true,
content_kind: ContentKind::Raids,
},
2023-01-15 18:25:56 +00:00
878 => DutyInfo {
name: LocalisedText {
en: "Another Sil'dihn Subterrane",
ja: "アナザーダンジョン 異聞シラディハ水道",
de: "Die kuriose Unterstadt von Sil'dih",
fr: "Les canalisations sildiennes annexes - Donjon alternatif",
},
high_end: false,
content_kind: ContentKind::V&CDungeonFinder,
},
879 => DutyInfo {
name: LocalisedText {
en: "Another Sil'dihn Subterrane (Savage)",
ja: "アナザーダンジョン 異聞シラディハ水道 零式",
de: "Die kuriose Unterstadt von Sil'dih (episch)",
fr: "Les canalisations sildiennes annexes - Donjon alternatif (sadique)",
},
high_end: false,
content_kind: ContentKind::V&CDungeonFinder,
},
2022-08-25 21:05:41 +00:00
880 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Sixth Circle",
ja: "万魔殿パンデモニウム煉獄編2",
de: "Abyssos - Sechster Kreis",
fr: "Le Purgatoire du Pandæmonium - Croisements",
},
high_end: false,
content_kind: ContentKind::Raids,
},
881 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Sixth Circle (Savage)",
ja: "万魔殿パンデモニウム零式煉獄編2",
de: "Abyssos - Sechster Kreis (episch)",
fr: "Le Purgatoire du Pandæmonium - Croisements (sadique)",
},
high_end: true,
content_kind: ContentKind::Raids,
},
883 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Eighth Circle",
ja: "万魔殿パンデモニウム煉獄編4",
de: "Abyssos - Achter Kreis",
fr: "Le Purgatoire du Pandæmonium - Hérédité",
},
high_end: false,
content_kind: ContentKind::Raids,
},
884 => DutyInfo {
name: LocalisedText {
en: "Abyssos: The Eighth Circle (Savage)",
ja: "万魔殿パンデモニウム零式煉獄編4",
de: "Abyssos - Achter Kreis (episch)",
fr: "Le Purgatoire du Pandæmonium - Hérédité (sadique)",
},
high_end: true,
content_kind: ContentKind::Raids,
},
885 => DutyInfo {
name: LocalisedText {
en: "The Steps of Faith",
ja: "皇都イシュガルド防衛戦",
de: "Der Schicksalsweg",
fr: "Le Siège de la sainte Cité d'Ishgard",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
2023-01-15 18:25:56 +00:00
886 => DutyInfo {
name: LocalisedText {
en: "Mount Ordeals",
ja: "ルビカンテ討滅戦",
de: "Prophetie - Rubicante",
fr: "Le Mont du Supplice",
},
high_end: false,
content_kind: ContentKind::Trials,
},
896 => DutyInfo {
name: LocalisedText {
en: "Lapis Manalis",
ja: "雪山冥洞 ラピス・マナリス",
de: "Lapis Manalis",
fr: "Lapis Manalis",
},
high_end: false,
content_kind: ContentKind::Dungeons,
},
909 => DutyInfo {
name: LocalisedText {
en: "The Shifting Gymnasion Agonon",
ja: "宝物庫 エルピス・ギュムナシオン祭殿",
de: "Gymnasion Agonon",
fr: "Elpis Gymnasion",
},
high_end: false,
content_kind: ContentKind::TreasureHunt,
},
910 => DutyInfo {
name: LocalisedText {
en: "An Unforeseen Bargain",
ja: "パンひとつと引き換えに",
de: "Der Wert einer Buuds",
fr: "Pour une bouchée de pain",
},
high_end: false,
content_kind: ContentKind::QuestBattles,
},
911 => DutyInfo {
name: LocalisedText {
en: "Euphrosyne",
ja: "喜びの神域 エウプロシュネ",
de: "Euphrosyne",
fr: "Domaine divin - Euphrosyne",
},
high_end: false,
content_kind: ContentKind::Raids,
},
912 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
913 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
914 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
915 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
916 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
917 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
918 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
919 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
920 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
921 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
922 => DutyInfo {
name: LocalisedText {
en: "The Clockwork Castletown",
ja: "東方絡繰御殿",
de: "Die Mechanische Menagerie",
fr: "Le Traquenard oriental",
},
high_end: false,
content_kind: ContentKind::PvP,
},
923 => DutyInfo {
name: LocalisedText {
en: "Crystalline Conflict (Custom Match - The Clockwork Castletown)",
ja: "クリスタルコンフリクト(東方絡繰御殿:カスタムマッチ)",
de: "Crystalline Conflict: Die Mechanische Menagerie (Schaukampf)",
fr: "Crystalline Conflict (partie personnalisée - Le Traquenard oriental)",
},
high_end: false,
content_kind: ContentKind::PvP,
},
924 => DutyInfo {
name: LocalisedText {
en: "Mount Ordeals (Extreme)",
ja: "極ルビカンテ討滅戦",
de: "Eschatos - Rubicante",
fr: "Le Mont du Supplice (extrême)",
},
high_end: true,
content_kind: ContentKind::Trials,
},
926 => DutyInfo {
name: LocalisedText {
en: "Containment Bay P1T6 (Unreal)",
ja: "幻女神ソフィア討滅戦",
de: "Traumprüfung - Sophia",
fr: "Unité de contention P1P6 (irréel)",
},
high_end: true,
content_kind: ContentKind::Trials,
},
927 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
928 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
929 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
930 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
931 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
932 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
933 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
934 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
935 => DutyInfo {
name: LocalisedText {
en: "Leap of Faith",
ja: "挑戦! ジャンピングアスレチック",
de: "Kaktor-Kletterwand",
fr: "Haute voltige",
},
high_end: false,
content_kind: ContentKind::GoldSaucer,
},
2021-10-04 03:17:09 +00:00
};
}