(function () { const JOB_FROM_TYPE = { 'Paladin': 'PLD', 'Warrior': 'WAR', 'DarkKnight': 'DRK', 'Gunbreaker': 'GNB', 'WhiteMage': 'WHM', 'Scholar': 'SCH', 'Astrologian': 'AST', 'Sage': 'SGE', 'Monk': 'MNK', 'Dragoon': 'DRG', 'Ninja': 'NIN', 'Samurai': 'SAM', 'Reaper': 'RPR', 'Viper': 'VPR', 'Bard': 'BRD', 'Machinist': 'MCH', 'Dancer': 'DNC', 'BlackMage': 'BLM', 'Summoner': 'SMN', 'RedMage': 'RDM', 'Pictomancer': 'PCT', 'BlueMage': 'BLU', }; const JOB_ROLE = { 'PLD': 'tank', 'WAR': 'tank', 'DRK': 'tank', 'GNB': 'tank', 'WHM': 'healer', 'SCH': 'healer', 'AST': 'healer', 'SGE': 'healer', 'MNK': 'dps', 'DRG': 'dps', 'NIN': 'dps', 'SAM': 'dps', 'RPR': 'dps', 'VPR': 'dps', 'BRD': 'dps', 'MCH': 'dps', 'DNC': 'dps', 'BLM': 'dps', 'SMN': 'dps', 'RDM': 'dps', 'PCT': 'dps', 'BLU': 'dps', }; const ALL_JOBS = [ { group: 'Tank', jobs: ['PLD', 'WAR', 'DRK', 'GNB'] }, { group: 'Healer', jobs: ['WHM', 'SCH', 'AST', 'SGE'] }, { group: 'Melee', jobs: ['MNK', 'DRG', 'NIN', 'SAM', 'RPR', 'VPR'] }, { group: 'Ranged', jobs: ['BRD', 'MCH', 'DNC'] }, { group: 'Caster', jobs: ['BLM', 'SMN', 'RDM', 'PCT'] }, ]; const JOB_ABILITIES = { 'PLD': [ { name: 'Passage of Arms', buffType: 'buff' }, { name: 'Divine Veil', buffType: 'shield' }, { name: 'Rampart', buffType: 'buff', extraAbilityGameID: 7531, duration: 20 }, { name: 'Hallowed Ground', buffType: 'buff', extraAbilityGameID: 30, duration: 10 }, { name: 'Sentinel', buffType: 'buff', extraAbilityGameID: 17, duration: 15 }, { name: 'Guardian', buffType: 'shield', extraAbilityGameID: 36920, duration: 15 }, { name: 'Bulwark', buffType: 'buff', extraAbilityGameID: 22, duration: 10 }, { name: 'Holy Sheltron', buffType: 'buff', extraAbilityGameID: 25746, duration: 8 }, { name: 'Intervention', buffType: 'buff', extraAbilityGameID: 7382, duration: 8 }, { name: 'Reprisal', buffType: 'debuff' }, ], 'WAR': [ { name: 'Shake It Off', buffType: 'shield' }, { name: 'Rampart', buffType: 'buff', extraAbilityGameID: 7531, duration: 20 }, { name: 'Holmgang', buffType: 'buff', extraAbilityGameID: 43, duration: 10 }, { name: 'Vengeance', buffType: 'buff', extraAbilityGameID: 44, duration: 15 }, { name: 'Damnation', buffType: 'buff', extraAbilityGameID: 36923, duration: 15 }, { name: 'Thrill of Battle', buffType: 'buff', extraAbilityGameID: 40, duration: 10 }, { name: 'Raw Intuition', buffType: 'buff', extraAbilityGameID: 3551, duration: 6 }, { name: 'Bloodwhetting', buffType: 'shield', extraAbilityGameID: 25751, duration: 8 }, { name: 'Reprisal', buffType: 'debuff' }, ], 'DRK': [ { name: 'Dark Missionary', buffType: 'buff' }, { name: 'Rampart', buffType: 'buff', extraAbilityGameID: 7531, duration: 20 }, { name: 'Living Dead', buffType: 'buff', extraAbilityGameID: 3638, duration: 10 }, { name: 'Shadow Wall', buffType: 'buff', extraAbilityGameID: 3636, duration: 15 }, { name: 'Shadowed Vigil', buffType: 'buff', extraAbilityGameID: 36927, duration: 15 }, { name: 'Dark Mind', buffType: 'buff', extraAbilityGameID: 3634, duration: 10 }, { name: 'The Blackest Night', buffType: 'shield', extraAbilityGameID: 7393, duration: 7 }, { name: 'Oblation', buffType: 'buff', extraAbilityGameID: 25754, duration: 10 }, { name: 'Reprisal', buffType: 'debuff' }, ], 'GNB': [ { name: 'Heart of Light', buffType: 'buff' }, { name: 'Rampart', buffType: 'buff', extraAbilityGameID: 7531, duration: 20 }, { name: 'Superbolide', buffType: 'buff', extraAbilityGameID: 16152, duration: 10 }, { name: 'Nebula', buffType: 'buff', extraAbilityGameID: 16148, duration: 15 }, { name: 'Great Nebula', buffType: 'buff', extraAbilityGameID: 36935, duration: 15 }, { name: 'Camouflage', buffType: 'buff', extraAbilityGameID: 16140, duration: 20 }, { name: 'Heart of Stone', buffType: 'buff', extraAbilityGameID: 16161, duration: 7 }, { name: 'Heart of Corundum', buffType: 'buff', extraAbilityGameID: 25758, duration: 8 }, { name: 'Clarity of Corundum', buffType: 'buff', extraAbilityGameID: 25758, duration: 4 }, // Proc von HoC, geht auf beliebiges Partymitglied { name: 'Reprisal', buffType: 'debuff' }, ], 'WHM': [ { name: 'Temperance', buffType: 'buff' }, { name: 'Divine Benison', buffType: 'shield', extraAbilityGameID: 7432, duration: 15 }, { name: 'Divine Caress', buffType: 'shield' }, ], 'SCH': [ { name: 'Sacred Soil', buffType: 'buff' }, { name: 'Expedient', buffType: 'buff' }, { name: 'Fey Illumination', buffType: 'buff' }, { name: 'Galvanize', buffType: 'shield' }, { name: 'Seraphic Veil', buffType: 'shield', extraAbilityGameID: 16548, duration: 30 }, { name: 'Catalyze', buffType: 'shield' }, ], 'AST': [ { name: 'Collective Unconscious', buffType: 'buff' }, { name: 'Neutral Sect', buffType: 'shield' }, { name: 'Intersection', buffType: 'shield', extraAbilityGameID: 16556, duration: 30 }, { name: 'the Spire', buffType: 'shield', extraAbilityGameID: 37025, duration: 30 }, ], 'SGE': [ { name: 'Kerachole', buffType: 'buff' }, { name: 'Holos', buffType: 'buff' }, { name: 'Holosakos', buffType: 'shield' }, { name: 'Panhaima', buffType: 'shield' }, { name: 'Eukrasian Prognosis', buffType: 'shield' }, { name: 'Eukrasian Prognosis II', buffType: 'shield' }, { name: 'Eukrasian Diagnosis', buffType: 'shield', extraAbilityGameID: 24291, duration: 30 }, { name: 'Differential Diagnosis', buffType: 'shield', extraAbilityGameID: 24291, duration: 30 }, { name: 'Haima', buffType: 'shield', extraAbilityGameID: 24305, duration: 15 }, ], 'BRD': [{ name: 'Troubadour', buffType: 'buff' }], 'MCH': [{ name: 'Tactician', buffType: 'buff' }], 'DNC': [ { name: 'Shield Samba', buffType: 'buff' }, { name: 'Improvised Finish', buffType: 'shield' }, ], 'MNK': [ { name: 'Riddle of Earth', buffType: 'buff', extraAbilityGameID: 7394, duration: 10 }, { name: 'Feint', buffType: 'debuff' }, ], 'DRG': [{ name: 'Feint', buffType: 'debuff' }], 'NIN': [ { name: 'Shade Shift', buffType: 'shield', extraAbilityGameID: 2241, duration: 20 }, { name: 'Feint', buffType: 'debuff' }, ], 'SAM': [ { name: 'Third Eye', buffType: 'buff', extraAbilityGameID: 7498, duration: 4 }, { name: 'Feint', buffType: 'debuff' }, ], 'RPR': [ { name: 'Arcane Crest', buffType: 'shield', extraAbilityGameID: 24404, duration: 5 }, { name: 'Feint', buffType: 'debuff' }, ], 'VPR': [{ name: 'Feint', buffType: 'debuff' }], 'BLM': [ { name: 'Manaward', buffType: 'shield', extraAbilityGameID: 157, duration: 20 }, { name: 'Addle', buffType: 'debuff' }, ], 'SMN': [ { name: 'Addle', buffType: 'debuff' }, { name: 'Radiant Aegis', buffType: 'shield', extraAbilityGameID: 25799, duration: 30 }, ], 'RDM': [ { name: 'Addle', buffType: 'debuff' }, { name: 'Magick Barrier', buffType: 'buff' }, ], 'PCT': [ { name: 'Addle', buffType: 'debuff' }, { name: 'Tempera Coat', buffType: 'shield', extraAbilityGameID: 34685, duration: 10 }, { name: 'Tempera Grassa', buffType: 'shield' }, ], }; const ABILITY_JOB_MAP = { 'Passage of Arms': 'PLD', 'Divine Veil': 'PLD', 'Hallowed Ground': 'PLD', 'Sentinel': 'PLD', 'Guardian': 'PLD', 'Bulwark': 'PLD', 'Holy Sheltron': 'PLD', 'Intervention': 'PLD', 'Shake It Off': 'WAR', 'Holmgang': 'WAR', 'Vengeance': 'WAR', 'Damnation': 'WAR', 'Thrill of Battle': 'WAR', 'Raw Intuition': 'WAR', 'Bloodwhetting': 'WAR', 'Dark Missionary': 'DRK', 'Living Dead': 'DRK', 'Shadow Wall': 'DRK', 'Shadowed Vigil': 'DRK', 'Dark Mind': 'DRK', 'The Blackest Night': 'DRK', 'Oblation': 'DRK', 'Heart of Light': 'GNB', 'Superbolide': 'GNB', 'Nebula': 'GNB', 'Great Nebula': 'GNB', 'Camouflage': 'GNB', 'Heart of Stone': 'GNB', 'Heart of Corundum': 'GNB', 'Clarity of Corundum': 'GNB', 'Temperance': 'WHM', 'Divine Benison': 'WHM', 'Divine Caress': 'WHM', 'Sacred Soil': 'SCH', 'Expedient': 'SCH', 'Fey Illumination': 'SCH', 'Galvanize': 'SCH', 'Seraphic Veil': 'SCH', 'Catalyze': 'SCH', 'Collective Unconscious': 'AST', 'Neutral Sect': 'AST', 'Intersection': 'AST', 'the Spire': 'AST', 'Kerachole': 'SGE', 'Holos': 'SGE', 'Holosakos': 'SGE', 'Panhaima': 'SGE', 'Haima': 'SGE', 'Eukrasian Prognosis': 'SGE', 'Eukrasian Prognosis II': 'SGE', 'Eukrasian Diagnosis': 'SGE', 'Differential Diagnosis': 'SGE', 'Troubadour': 'BRD', 'Tactician': 'MCH', 'Shield Samba': 'DNC', 'Improvised Finish': 'DNC', 'Riddle of Earth': 'MNK', 'Shade Shift': 'NIN', 'Third Eye': 'SAM', 'Arcane Crest': 'RPR', 'Manaward': 'BLM', 'Radiant Aegis': 'SMN', 'Magick Barrier': 'RDM', 'Tempera Coat': 'PCT', 'Tempera Grassa': 'PCT', }; const MITIG_ICONS = { 'Passage of Arms': 'assets/icons/mitigation/passage-of-arms.png', 'Dark Missionary': 'assets/icons/mitigation/dark-missionary.png', 'Heart of Light': 'assets/icons/mitigation/heart-of-light.png', 'Temperance': 'assets/icons/mitigation/temperance.png', 'Sacred Soil': 'assets/icons/mitigation/sacred-soil.png', 'Expedient': 'assets/icons/mitigation/expedient.png', 'Fey Illumination': 'assets/icons/mitigation/fey-illumination.png', 'Collective Unconscious': 'assets/icons/mitigation/collective-unconscious.png', 'Holos': 'assets/icons/mitigation/holos.png', 'Kerachole': 'assets/icons/mitigation/kerachole.png', 'Troubadour': 'assets/icons/mitigation/troubadour.png', 'Tactician': 'assets/icons/mitigation/tactician.png', 'Shield Samba': 'assets/icons/mitigation/shield-samba.png', 'Magick Barrier': 'assets/icons/mitigation/magick-barrier.png', 'Reprisal': 'assets/icons/mitigation/reprisal.png', 'Feint': 'assets/icons/mitigation/feint.png', 'Addle': 'assets/icons/mitigation/addle.png', 'Divine Veil': 'assets/icons/mitigation/divine-veil.png', 'Guardian': 'assets/icons/mitigation/guardian.png', 'Shake It Off': 'assets/icons/mitigation/shake-it-off.png', 'Bloodwhetting': 'assets/icons/mitigation/bloodwhetting.png', 'Divine Benison': 'assets/icons/mitigation/divine-benison.png', 'Divine Caress': 'assets/icons/mitigation/divine-caress.png', 'Intersection': 'assets/icons/mitigation/intersection.png', 'Neutral Sect': 'assets/icons/mitigation/neutral-sect.png', 'the Spire': 'assets/icons/mitigation/the-spire.png', 'Panhaima': 'assets/icons/mitigation/panhaima.png', 'Holosakos': 'assets/icons/mitigation/holos.png', 'Eukrasian Prognosis': 'assets/icons/mitigation/eukrasian-prognosis.png', 'Eukrasian Prognosis II': 'assets/icons/mitigation/eukrasian-prognosis-ii.png', 'Eukrasian Diagnosis': 'assets/icons/mitigation/eukrasian-diagnosis.png', 'Differential Diagnosis': 'assets/icons/mitigation/eukrasian-diagnosis.png', 'Haima': 'assets/icons/mitigation/haima.png', 'Galvanize': 'assets/icons/mitigation/galvanize.png', 'Seraphic Veil': 'assets/icons/mitigation/seraphic-veil.png', 'Radiant Aegis': 'assets/icons/mitigation/radiant-aegis.png', 'Tempera Coat': 'assets/icons/mitigation/tempera-coat.png', 'Tempera Grassa': 'assets/icons/mitigation/tempera-grassa.png', 'Improvised Finish': 'assets/icons/mitigation/improvised-finish.png', 'Heart of Corundum': 'assets/icons/mitigation/heart-of-corundum.png', 'Clarity of Corundum': 'assets/icons/mitigation/clarity-of-corundum.png', 'Heart of Stone': 'assets/icons/mitigation/heart-of-stone.png', }; const ABILITY_DR = { 'Passage of Arms': 0.15, 'Troubadour': 0.15, 'Tactician': 0.15, 'Shield Samba': 0.15, 'Dark Missionary': 0.10, 'Heart of Light': 0.10, 'Temperance': 0.10, 'Sacred Soil': 0.10, 'Expedient': 0.10, 'Collective Unconscious': 0.10, 'Holos': 0.10, 'Kerachole': 0.10, 'Magick Barrier': 0.10, 'Fey Illumination': 0.05, 'Reprisal': 0.10, 'Feint': 0.05, 'Addle': 0.10, 'Rampart': 0.20, 'Hallowed Ground': 1.00, 'Sentinel': 0.30, 'Guardian': 0.40, 'Holy Sheltron': 0.15, 'Intervention': 0.10, 'Vengeance': 0.30, 'Damnation': 0.40, 'Raw Intuition': 0.10, 'Bloodwhetting': 0.10, 'Shadow Wall': 0.30, 'Shadowed Vigil': 0.40, 'Dark Mind': 0.20, 'Oblation': 0.10, 'Superbolide': 1.00, 'Nebula': 0.30, 'Great Nebula': 0.40, 'Camouflage': 0.10, 'Heart of Stone': 0.15, 'Heart of Corundum': 0.15, 'Clarity of Corundum': 0.15, 'Riddle of Earth': 0.20, 'Third Eye': 0.10, }; const ABILITY_JOBS = {}; Object.entries(JOB_ABILITIES).forEach(([job, abilities]) => { abilities.forEach(ability => { if (!ABILITY_JOBS[ability.name]) ABILITY_JOBS[ability.name] = []; ABILITY_JOBS[ability.name].push(job); }); }); window.FF14_DATA = { JOB_ABBR: JOB_FROM_TYPE, JOB_FROM_TYPE, JOB_ROLE, ALL_JOBS, JOB_ABILITIES, ABILITY_JOB_MAP, ABILITY_JOBS, ABILITY_DR, MITIG_ICONS, TANK_JOBS: new Set(['PLD', 'WAR', 'DRK', 'GNB']), MELEE_JOBS: new Set(['MNK', 'DRG', 'NIN', 'SAM', 'RPR', 'VPR']), CASTER_JOBS: new Set(['BLM', 'SMN', 'RDM', 'PCT']), }; })();