From d9e7e42a6d1946f8ff3636e60aff54d6c79a5042 Mon Sep 17 00:00:00 2001 From: Mordred Date: Sun, 2 Jan 2022 22:32:17 +0100 Subject: [PATCH] Basic actions are functional --- src/common/Common.h | 3 +- src/tools/CMakeLists.txt | 2 +- src/tools/action_parse/main.cpp | 46 +- src/world/Action/Action.cpp | 4 +- src/world/Action/ActionLutData.cpp | 10053 +++++++++++++--- src/world/Action/EffectBuilder.cpp | 1 + src/world/Actor/BNpc.cpp | 2 +- src/world/Actor/Player.cpp | 9 +- src/world/Actor/Player.h | 2 + src/world/Manager/ActionMgr.cpp | 1 + src/world/Math/CalcStats.cpp | 2 +- .../Network/PacketWrappers/EffectPacket.h | 2 + 12 files changed, 8578 insertions(+), 1549 deletions(-) diff --git a/src/common/Common.h b/src/common/Common.h index cf5eb548..88c1b363 100644 --- a/src/common/Common.h +++ b/src/common/Common.h @@ -784,7 +784,8 @@ namespace Sapphire::Common { None = 0, // ? MagicPoints = 3, - TacticsPoints = 6, + TacticsPoints = 5, + TacticsPoints1 = 6, // WARGauge = 22, // DRKGauge = 25, // AetherflowStack = 30, diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index f52bbe89..698fa34e 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -26,5 +26,5 @@ add_subdirectory( "pcb_reader" ) add_subdirectory( "nav_export" ) add_subdirectory( "BattleNpcParserPs3" ) #add_subdirectory( "event_object_parser" ) -#add_subdirectory( "action_parse" ) +add_subdirectory( "action_parse" ) #add_subdirectory( "questbattle_bruteforce" ) \ No newline at end of file diff --git a/src/tools/action_parse/main.cpp b/src/tools/action_parse/main.cpp index 9aacb0cd..af5341d2 100644 --- a/src/tools/action_parse/main.cpp +++ b/src/tools/action_parse/main.cpp @@ -9,7 +9,8 @@ #include #include #include -#include +#include +#include #include #include @@ -19,13 +20,12 @@ #include -Sapphire::Data::ExdDataGenerated g_exdData; - namespace fs = std::filesystem; using namespace Sapphire; +Sapphire::Data::ExdData g_exdDataGen; -std::string datLocation( "/home/mordred/sqpack" ); +std::string datLocation( "F:\\client3.0\\game\\sqpack" ); //const std::string datLocation( "/mnt/c/Program Files (x86)/Steam/steamapps/common/FINAL FANTASY XIV Online/game/sqpack" ); struct ActionEntry @@ -83,12 +83,12 @@ int main( int argc, char* argv[] ) } Logger::info( "Setting up EXD data" ); - if( !g_exdData.init( datLocation ) ) + if( !g_exdDataGen.init( datLocation ) ) { Logger::fatal( "Error setting up EXD data " ); return 0; } - auto idList = g_exdData.getActionIdList(); + auto idList = g_exdDataGen.getIdList< Component::Excel::Action >(); std::map< uint32_t, ActionEntry > actions; @@ -101,25 +101,31 @@ int main( int argc, char* argv[] ) if( cursor % 50 == 0 && cursor > 0 ) Logger::info( "Processing {} actions of {} ({:.2f}%)", cursor, total, done ); - auto action = g_exdData.get< Sapphire::Data::Action >( id ); - auto actionTransient = g_exdData.get< Sapphire::Data::ActionTransient >( id ); + auto action = g_exdDataGen.getRow< Component::Excel::Action >( id ); + + //auto actionTransient = g_exdData.get< Sapphire::Data::ActionTransient >( id ); if( action ) { - if( action->classJob == -1 || action->name.empty() ) + auto& actionData = action->data(); + + if( actionData.UseClassJob == -1 || action->getString( actionData.Text.Name ).empty() ) continue; - if( action->isPvP ) - continue; + //if( actionData.PvPOnly ) + // continue; - auto classJob = g_exdData.get< Sapphire::Data::ClassJob >( action->classJob ); - if( !classJob ) - continue; + // auto classJob = g_exdDataGen.getRow< Component::Excel::ClassJob >( actionData.UseClassJob ); + // if( !classJob ) + // continue; // exclude dol/doh - if( classJob->classJobCategory == 32 || classJob->classJobCategory == 33 ) - continue; + // if( classJob->data().CraftingClassIndex > 0 ) + // continue; - auto ac = static_cast< Common::ActionCategory >( action->actionCategory ); + if( id == 75 ) + int test = 1; + + auto ac = static_cast< Common::ActionCategory >( actionData.Category ); if( ac != Common::ActionCategory::Ability && ac != Common::ActionCategory::Autoattack && ac != Common::ActionCategory::Spell && @@ -129,11 +135,11 @@ int main( int argc, char* argv[] ) ActionEntry entry{}; - entry.name = action->name; + entry.name = action->getString( actionData.Text.Name ); entry.id = id; - Logger::info( " {0} - {1}", id, action->name ); - std::string desc = actionTransient->description; + Logger::info( " {0} - {1}", id, action->getString( actionData.Text.Name ) ); + std::string desc = action->getString( actionData.Text.Help ); stripUnicode( desc ); desc = std::regex_replace( desc, std::regex( "HI" ), "\n" ); desc = std::regex_replace( desc, std::regex( "IH" ), "" ); diff --git a/src/world/Action/Action.cpp b/src/world/Action/Action.cpp index f9bd2ff1..8fdb9f4b 100644 --- a/src/world/Action/Action.cpp +++ b/src/world/Action/Action.cpp @@ -4,6 +4,7 @@ #include #include +#include #include "Script/ScriptMgr.h" #include @@ -682,6 +683,7 @@ bool Action::Action::primaryCostCheck( bool subtractCosts ) switch( m_primaryCostType ) { case Common::ActionPrimaryCostType::TacticsPoints: + case Common::ActionPrimaryCostType::TacticsPoints1: { auto curTp = m_pSource->getTp(); @@ -716,7 +718,7 @@ bool Action::Action::primaryCostCheck( bool subtractCosts ) } default: - Logger::debug( "Unknown action cost type: {}", m_primaryCostType ); + Logger::debug( "Unknown action cost type: {}", static_cast< uint16_t >( m_primaryCostType ) ); return false; } } diff --git a/src/world/Action/ActionLutData.cpp b/src/world/Action/ActionLutData.cpp index 88b8a71a..8e9986f4 100644 --- a/src/world/Action/ActionLutData.cpp +++ b/src/world/Action/ActionLutData.cpp @@ -3,1525 +3,8534 @@ using namespace Sapphire::World::Action; ActionLut::Lut ActionLut::m_actionLut = -{ - // attack - { 7, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shot - { 8, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fast Blade - { 9, { 200, 0, 0, 0, 0, 0, 0 } }, - // Riot Blade - { 15, { 100, 300, 0, 0, 0, 0, 10 } }, - // Shield Bash - { 16, { 110, 0, 0, 0, 0, 0, 0 } }, - // Sentinel - { 17, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fight or Flight - { 20, { 0, 0, 0, 0, 0, 0, 0 } }, - // Rage of Halone - { 21, { 100, 350, 0, 0, 0, 0, 0 } }, - // Circle of Scorn - { 23, { 120, 0, 0, 0, 0, 0, 0 } }, - // Shield Lob - { 24, { 120, 0, 0, 0, 0, 0, 0 } }, - // Cover - { 27, { 0, 0, 0, 0, 0, 0, 0 } }, - // Iron Will - { 28, { 0, 0, 0, 0, 0, 0, 0 } }, - // Spirits Within - { 29, { 100, 0, 0, 0, 0, 0, 5 } }, - // Hallowed Ground - { 30, { 0, 0, 0, 0, 0, 0, 0 } }, - // Heavy Swing - { 31, { 200, 0, 0, 0, 0, 0, 0 } }, - // Maim - { 37, { 100, 300, 0, 0, 0, 0, 0 } }, - // Berserk - { 38, { 0, 0, 0, 0, 0, 0, 0 } }, - // Thrill of Battle - { 40, { 0, 0, 0, 0, 0, 0, 0 } }, - // Overpower - { 41, { 130, 0, 0, 0, 0, 0, 0 } }, - // Storm's Path - { 42, { 100, 380, 0, 0, 0, 250, 0 } }, - // Holmgang - { 43, { 0, 0, 0, 0, 0, 0, 0 } }, - // Vengeance - { 44, { 55, 0, 0, 0, 0, 0, 0 } }, - // Storm's Eye - { 45, { 100, 380, 0, 0, 0, 0, 0 } }, - // Tomahawk - { 46, { 140, 0, 0, 0, 0, 0, 0 } }, - // Defiance - { 48, { 0, 0, 0, 0, 0, 0, 0 } }, - // Inner Beast - { 49, { 350, 0, 0, 0, 0, 0, 0 } }, - // Steel Cyclone - { 51, { 220, 0, 0, 0, 0, 0, 0 } }, - // Infuriate - { 52, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bootshine - { 53, { 150, 0, 0, 0, 0, 0, 0 } }, - // True Strike - { 54, { 220, 0, 0, 0, 240, 0, 0 } }, - // Snap Punch - { 56, { 210, 0, 230, 0, 0, 0, 0 } }, - // Fists of Earth - { 60, { 0, 0, 0, 0, 0, 0, 0 } }, - // Twin Snakes - { 61, { 150, 0, 170, 0, 0, 0, 0 } }, - // Arm of the Destroyer - { 62, { 80, 0, 0, 0, 0, 0, 0 } }, - // Fists of Fire - { 63, { 0, 0, 0, 0, 0, 0, 0 } }, - // Mantra - { 65, { 0, 0, 0, 0, 0, 0, 0 } }, - // Demolish - { 66, { 70, 0, 0, 0, 90, 0, 0 } }, - // Perfect Balance - { 69, { 0, 0, 0, 0, 0, 0, 0 } }, - // Rockbreaker - { 70, { 120, 0, 0, 0, 0, 0, 0 } }, - // Shoulder Tackle - { 71, { 100, 0, 0, 0, 0, 0, 0 } }, - // Fists of Wind - { 73, { 0, 0, 0, 0, 0, 0, 0 } }, - // Dragon Kick - { 74, { 180, 0, 200, 0, 0, 0, 0 } }, - // True Thrust - { 75, { 0, 0, 0, 0, 0, 0, 0 } }, - // Vorpal Thrust - { 78, { 0, 0, 0, 0, 0, 0, 0 } }, - // Life Surge - { 83, { 0, 0, 0, 0, 0, 0, 0 } }, - // Full Thrust - { 84, { 100, 530, 0, 0, 0, 0, 0 } }, - // Lance Charge - { 85, { 0, 0, 0, 0, 0, 0, 0 } }, - // Doom Spike - { 86, { 170, 0, 0, 0, 0, 0, 0 } }, - // Disembowel - { 87, { 0, 0, 0, 0, 0, 0, 0 } }, - // Chaos Thrust - { 88, { 100, 290, 0, 0, 140, 0, 0 } }, - // Piercing Talon - { 90, { 150, 0, 0, 0, 0, 0, 0 } }, - // Jump - { 92, { 310, 0, 0, 0, 0, 0, 0 } }, - // Elusive Jump - { 94, { 0, 0, 0, 0, 0, 0, 0 } }, - // Spineshatter Dive - { 95, { 240, 0, 0, 0, 0, 0, 0 } }, - // Dragonfire Dive - { 96, { 380, 0, 0, 0, 0, 0, 0 } }, - // Heavy Shot - { 97, { 180, 0, 0, 0, 0, 0, 0 } }, - // Straight Shot - { 98, { 200, 0, 0, 0, 0, 0, 0 } }, - // Venomous Bite - { 100, { 100, 0, 0, 0, 0, 0, 0 } }, - // Raging Strikes - { 101, { 0, 0, 0, 0, 0, 0, 0 } }, - // Quick Nock - { 106, { 150, 0, 0, 0, 0, 0, 0 } }, - // Barrage - { 107, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bloodletter - { 110, { 150, 0, 0, 0, 0, 0, 0 } }, - // Repelling Shot - { 112, { 0, 0, 0, 0, 0, 0, 0 } }, - // Windbite - { 113, { 60, 0, 0, 0, 0, 0, 0 } }, - // Mage's Ballad - { 114, { 100, 0, 0, 0, 0, 0, 0 } }, - // Army's Paeon - { 116, { 100, 0, 0, 0, 0, 0, 0 } }, - // Rain of Death - { 117, { 130, 0, 0, 0, 0, 0, 0 } }, - // Battle Voice - { 118, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stone - { 119, { 140, 0, 0, 0, 0, 0, 0 } }, - // Cure - { 120, { 0, 0, 0, 0, 0, 450, 0 } }, - // Aero - { 121, { 50, 0, 0, 0, 0, 0, 0 } }, - // Medica - { 124, { 0, 0, 0, 0, 0, 300, 0 } }, - // Raise - { 125, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stone II - { 127, { 200, 0, 0, 0, 0, 0, 0 } }, - // Cure III - { 131, { 0, 0, 0, 0, 0, 550, 0 } }, - // Aero II - { 132, { 60, 0, 0, 0, 0, 0, 0 } }, - // Medica II - { 133, { 0, 0, 0, 0, 0, 200, 0 } }, - // Fluid Aura - { 134, { 0, 0, 0, 0, 0, 0, 0 } }, - // Cure II - { 135, { 0, 0, 0, 0, 0, 700, 0 } }, - // Presence of Mind - { 136, { 0, 0, 0, 0, 0, 0, 0 } }, - // Regen - { 137, { 0, 0, 0, 0, 0, 200, 0 } }, - // Holy - { 139, { 140, 0, 0, 0, 0, 0, 0 } }, - // Benediction - { 140, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fire - { 141, { 180, 0, 0, 0, 0, 0, 0 } }, - // Blizzard - { 142, { 180, 0, 0, 0, 0, 0, 0 } }, - // Thunder - { 144, { 30, 0, 0, 0, 0, 0, 0 } }, - // Sleep - { 145, { 0, 0, 0, 0, 0, 0, 0 } }, - // Blizzard II - { 146, { 50, 0, 0, 0, 0, 0, 0 } }, - // Fire II - { 147, { 80, 0, 0, 0, 0, 0, 0 } }, - // Transpose - { 149, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fire III - { 152, { 240, 0, 0, 0, 0, 0, 0 } }, - // Thunder III - { 153, { 70, 0, 0, 0, 0, 0, 0 } }, - // Blizzard III - { 154, { 240, 0, 0, 0, 0, 0, 0 } }, - // Aetherial Manipulation - { 155, { 0, 0, 0, 0, 0, 0, 0 } }, - // Scathe - { 156, { 100, 0, 0, 0, 0, 0, 0 } }, - // Manaward - { 157, { 0, 0, 0, 0, 0, 0, 0 } }, - // Manafont - { 158, { 0, 0, 0, 0, 0, 0, 30 } }, - // Freeze - { 159, { 100, 0, 0, 0, 0, 0, 0 } }, - // Flare - { 162, { 260, 0, 0, 0, 0, 0, 0 } }, - // Ruin - { 163, { 180, 0, 0, 0, 0, 0, 0 } }, - // Bio - { 164, { 0, 0, 0, 0, 0, 0, 0 } }, - // Summon - { 165, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aetherflow - { 166, { 0, 0, 0, 0, 0, 0, 10 } }, - // Energy Drain - { 167, { 150, 0, 0, 0, 0, 0, 5 } }, - // Miasma - { 168, { 20, 0, 0, 0, 0, 0, 0 } }, - // Summon II - { 170, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ruin II - { 172, { 160, 0, 0, 0, 0, 0, 0 } }, - // Resurrection - { 173, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bane - { 174, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bio II - { 178, { 0, 0, 0, 0, 0, 0, 0 } }, - // Summon III - { 180, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fester - { 181, { 100, 0, 0, 0, 0, 0, 0 } }, - // Enkindle - { 184, { 0, 0, 0, 0, 0, 0, 0 } }, - // Adloquium - { 185, { 0, 0, 0, 0, 0, 300, 0 } }, - // Succor - { 186, { 0, 0, 0, 0, 0, 180, 0 } }, - // Sacred Soil - { 188, { 0, 0, 0, 0, 0, 100, 0 } }, - // Lustrate - { 189, { 0, 0, 0, 0, 0, 600, 0 } }, - // Physick - { 190, { 0, 0, 0, 0, 0, 400, 0 } }, - // Shield Wall - { 197, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stronghold - { 198, { 0, 0, 0, 0, 0, 0, 0 } }, - // Last Bastion - { 199, { 0, 0, 0, 0, 0, 0, 0 } }, - // Braver - { 200, { 2400, 0, 0, 0, 0, 0, 0 } }, - // Bladedance - { 201, { 5250, 0, 0, 0, 0, 0, 0 } }, - // Final Heaven - { 202, { 9000, 0, 0, 0, 0, 0, 0 } }, - // Skyshard - { 203, { 1650, 0, 0, 0, 0, 0, 0 } }, - // Starstorm - { 204, { 3600, 0, 0, 0, 0, 0, 0 } }, - // Meteor - { 205, { 6150, 0, 0, 0, 0, 0, 0 } }, - // Healing Wind - { 206, { 0, 0, 0, 0, 0, 0, 0 } }, - // Breath of the Earth - { 207, { 0, 0, 0, 0, 0, 0, 0 } }, - // Pulse of Life - { 208, { 0, 0, 0, 0, 0, 0, 0 } }, - // Magitek Cannon - { 1128, { 0, 0, 0, 0, 0, 0, 0 } }, - // Photon Stream - { 1129, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 1533, { 0, 0, 0, 0, 0, 0, 0 } }, - // Spinning Edge - { 2240, { 220, 0, 0, 0, 0, 0, 0 } }, - // Shade Shift - { 2241, { 0, 0, 0, 0, 0, 0, 0 } }, - // Gust Slash - { 2242, { 100, 330, 0, 0, 0, 0, 0 } }, - // Hide - { 2245, { 0, 0, 0, 0, 0, 0, 0 } }, - // Assassinate - { 2246, { 200, 0, 0, 0, 0, 0, 0 } }, - // Throwing Dagger - { 2247, { 120, 0, 0, 0, 0, 0, 0 } }, - // Mug - { 2248, { 150, 0, 0, 0, 0, 0, 0 } }, - // Death Blossom - { 2254, { 120, 0, 0, 0, 0, 0, 0 } }, - // Aeolian Edge - { 2255, { 100, 420, 0, 0, 160, 0, 0 } }, - // Shadow Fang - { 2257, { 200, 0, 0, 0, 0, 0, 0 } }, - // Trick Attack - { 2258, { 350, 0, 0, 0, 500, 0, 0 } }, - // Ten - { 2259, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ninjutsu - { 2260, { 0, 0, 0, 0, 0, 0, 0 } }, - // Chi - { 2261, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shukuchi - { 2262, { 0, 0, 0, 0, 0, 0, 0 } }, - // Jin - { 2263, { 0, 0, 0, 0, 0, 0, 0 } }, - // Kassatsu - { 2264, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fuma Shuriken - { 2265, { 500, 0, 0, 0, 0, 0, 0 } }, - // Katon - { 2266, { 500, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 2267, { 800, 0, 0, 0, 0, 0, 0 } }, - // Hyoton - { 2268, { 400, 0, 0, 0, 0, 0, 0 } }, - // Huton - { 2269, { 0, 0, 0, 0, 0, 0, 0 } }, - // Doton - { 2270, { 100, 0, 0, 0, 0, 0, 0 } }, - // Suiton - { 2271, { 600, 0, 0, 0, 0, 0, 0 } }, - // Rabbit Medium - { 2272, { 0, 0, 0, 0, 0, 0, 0 } }, - // Rook Autoturret - { 2864, { 80, 0, 0, 0, 0, 0, 0 } }, - // Split Shot - { 2866, { 180, 0, 0, 0, 0, 0, 0 } }, - // Slug Shot - { 2868, { 100, 260, 0, 0, 0, 0, 0 } }, - // Spread Shot - { 2870, { 180, 0, 0, 0, 0, 0, 0 } }, - // Hot Shot - { 2872, { 300, 0, 0, 0, 0, 0, 0 } }, - // Clean Shot - { 2873, { 100, 340, 0, 0, 0, 0, 0 } }, - // Gauss Round - { 2874, { 150, 0, 0, 0, 0, 0, 0 } }, - // Reassemble - { 2876, { 0, 0, 0, 0, 0, 0, 0 } }, - // Wildfire - { 2878, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ricochet - { 2890, { 150, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 3203, { 0, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 3204, { 0, 0, 0, 0, 0, 0, 0 } }, - // Kanashibari - { 3207, { 0, 0, 0, 0, 0, 0, 0 } }, - // Goring Blade - { 3538, { 100, 390, 0, 0, 0, 0, 0 } }, - // Royal Authority - { 3539, { 100, 550, 0, 0, 0, 0, 0 } }, - // Divine Veil - { 3540, { 0, 0, 0, 0, 0, 0, 0 } }, - // Clemency - { 3541, { 0, 0, 0, 0, 0, 1200, 0 } }, - // Sheltron - { 3542, { 0, 0, 0, 0, 0, 0, 0 } }, - // Tornado Kick - { 3543, { 430, 0, 0, 0, 0, 0, 0 } }, - // Elixir Field - { 3545, { 200, 0, 0, 0, 0, 0, 0 } }, - // Meditation - { 3546, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Forbidden Chakra - { 3547, { 370, 0, 0, 0, 0, 0, 0 } }, - // Fell Cleave - { 3549, { 590, 0, 0, 0, 0, 0, 0 } }, - // Decimate - { 3550, { 250, 0, 0, 0, 0, 0, 0 } }, - // Raw Intuition - { 3551, { 0, 0, 0, 0, 0, 0, 0 } }, - // Equilibrium - { 3552, { 0, 0, 0, 0, 0, 1200, 0 } }, - // Blood of the Dragon - { 3553, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fang and Claw - { 3554, { 320, 0, 360, 0, 0, 0, 0 } }, - // Geirskogul - { 3555, { 300, 0, 0, 0, 0, 0, 0 } }, - // Wheeling Thrust - { 3556, { 320, 0, 0, 0, 360, 0, 0 } }, - // Battle Litany - { 3557, { 0, 0, 0, 0, 0, 0, 0 } }, - // Empyreal Arrow - { 3558, { 230, 0, 0, 0, 0, 0, 0 } }, - // the Wanderer's Minuet - { 3559, { 100, 0, 0, 0, 0, 0, 0 } }, - // Iron Jaws - { 3560, { 100, 0, 0, 0, 0, 0, 0 } }, - // the Warden's Paean - { 3561, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sidewinder - { 3562, { 100, 0, 0, 0, 0, 0, 0 } }, - // Armor Crush - { 3563, { 100, 400, 160, 0, 0, 0, 0 } }, - // Dream Within a Dream - { 3566, { 200, 0, 0, 0, 0, 0, 0 } }, - // Stone III - { 3568, { 240, 0, 0, 0, 0, 0, 0 } }, - // Asylum - { 3569, { 0, 0, 0, 0, 0, 100, 0 } }, - // Tetragrammaton - { 3570, { 0, 0, 0, 0, 0, 700, 0 } }, - // Assize - { 3571, { 400, 0, 0, 0, 0, 400, 5 } }, - // Ley Lines - { 3573, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sharpcast - { 3574, { 0, 0, 0, 0, 0, 0, 0 } }, - // Enochian - { 3575, { 0, 0, 0, 0, 0, 0, 0 } }, - // Blizzard IV - { 3576, { 300, 0, 0, 0, 0, 0, 0 } }, - // Fire IV - { 3577, { 300, 0, 0, 0, 0, 0, 0 } }, - // Painflare - { 3578, { 130, 0, 0, 0, 0, 0, 0 } }, - // Ruin III - { 3579, { 200, 0, 0, 0, 0, 0, 0 } }, - // Tri-disaster - { 3580, { 300, 0, 0, 0, 0, 0, 0 } }, - // Dreadwyrm Trance - { 3581, { 0, 0, 0, 0, 0, 0, 0 } }, - // Deathflare - { 3582, { 400, 0, 0, 0, 0, 0, 0 } }, - // Indomitability - { 3583, { 0, 0, 0, 0, 0, 400, 0 } }, - // Broil - { 3584, { 240, 0, 0, 0, 0, 0, 0 } }, - // Deployment Tactics - { 3585, { 0, 0, 0, 0, 0, 0, 0 } }, - // Emergency Tactics - { 3586, { 0, 0, 0, 0, 0, 0, 0 } }, - // Dissipation - { 3587, { 0, 0, 0, 0, 0, 0, 0 } }, - // Draw - { 3590, { 0, 0, 0, 0, 0, 0, 0 } }, - // Redraw - { 3593, { 0, 0, 0, 0, 0, 0, 0 } }, - // Benefic - { 3594, { 0, 0, 0, 0, 0, 400, 0 } }, - // Aspected Benefic - { 3595, { 0, 0, 0, 0, 0, 200, 0 } }, - // Malefic - { 3596, { 150, 0, 0, 0, 0, 0, 0 } }, - // Malefic II - { 3598, { 170, 0, 0, 0, 0, 0, 0 } }, - // Combust - { 3599, { 0, 0, 0, 0, 0, 0, 0 } }, - // Helios - { 3600, { 0, 0, 0, 0, 0, 330, 0 } }, - // Aspected Helios - { 3601, { 0, 0, 0, 0, 0, 200, 0 } }, - // Ascend - { 3603, { 0, 0, 0, 0, 0, 0, 0 } }, - // Diurnal Sect - { 3604, { 0, 0, 0, 0, 0, 0, 0 } }, - // Nocturnal Sect - { 3605, { 0, 0, 0, 0, 0, 0, 0 } }, - // Lightspeed - { 3606, { 0, 0, 0, 0, 0, 0, 0 } }, - // Combust II - { 3608, { 0, 0, 0, 0, 0, 0, 0 } }, - // Benefic II - { 3610, { 0, 0, 0, 0, 0, 700, 0 } }, - // Synastry - { 3612, { 0, 0, 0, 0, 0, 0, 0 } }, - // Collective Unconscious - { 3613, { 0, 0, 0, 0, 0, 100, 0 } }, - // Essential Dignity - { 3614, { 0, 0, 0, 0, 0, 400, 0 } }, - // Gravity - { 3615, { 140, 0, 0, 0, 0, 0, 0 } }, - // Hard Slash - { 3617, { 200, 0, 0, 0, 0, 0, 0 } }, - // Unleash - { 3621, { 150, 0, 0, 0, 0, 0, 0 } }, - // Syphon Strike - { 3623, { 100, 300, 0, 0, 0, 0, 6 } }, - // Unmend - { 3624, { 150, 0, 0, 0, 0, 0, 0 } }, - // Blood Weapon - { 3625, { 0, 0, 0, 0, 0, 0, 0 } }, - // Grit - { 3629, { 0, 0, 0, 0, 0, 0, 0 } }, - // Souleater - { 3632, { 100, 400, 0, 0, 0, 300, 0 } }, - // Dark Mind - { 3634, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shadow Wall - { 3636, { 0, 0, 0, 0, 0, 0, 0 } }, - // Living Dead - { 3638, { 0, 0, 0, 0, 0, 0, 0 } }, - // Salted Earth - { 3639, { 60, 0, 0, 0, 0, 0, 0 } }, - // Plunge - { 3640, { 200, 0, 0, 0, 0, 0, 0 } }, - // Abyssal Drain - { 3641, { 200, 0, 0, 0, 0, 200, 0 } }, - // Carve and Spit - { 3643, { 450, 0, 0, 0, 0, 0, 6 } }, - // Big Shot - { 4238, { 0, 0, 0, 0, 0, 0, 0 } }, - // Desperado - { 4239, { 0, 0, 0, 0, 0, 0, 0 } }, - // Land Waker - { 4240, { 0, 0, 0, 0, 0, 0, 0 } }, - // Dark Force - { 4241, { 0, 0, 0, 0, 0, 0, 0 } }, - // Dragonsong Dive - { 4242, { 0, 0, 0, 0, 0, 0, 0 } }, - // Chimatsuri - { 4243, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sagittarius Arrow - { 4244, { 0, 0, 0, 0, 0, 0, 0 } }, - // Satellite Beam - { 4245, { 0, 0, 0, 0, 0, 0, 0 } }, - // Teraflare - { 4246, { 0, 0, 0, 0, 0, 0, 0 } }, - // Angel Feathers - { 4247, { 0, 0, 0, 0, 0, 0, 0 } }, - // Astral Stasis - { 4248, { 0, 0, 0, 0, 0, 0, 0 } }, - // Form Shift - { 4262, { 0, 0, 0, 0, 0, 0, 0 } }, - // Cannonfire - { 4271, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Balance - { 4401, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Arrow - { 4402, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Spear - { 4403, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Bole - { 4404, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Ewer - { 4405, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Spire - { 4406, { 0, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 4977, { 0, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 5069, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 5199, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 5846, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stickyloom - { 5874, { 0, 0, 0, 0, 0, 0, 0 } }, - // Void Fire II - { 6274, { 0, 0, 0, 0, 0, 0, 0 } }, - // Total Eclipse - { 7381, { 120, 0, 0, 0, 0, 0, 0 } }, - // Intervention - { 7382, { 0, 0, 0, 0, 0, 0, 0 } }, - // Requiescat - { 7383, { 150, 0, 0, 0, 0, 0, 0 } }, - // Holy Spirit - { 7384, { 350, 0, 0, 0, 0, 0, 0 } }, - // Passage of Arms - { 7385, { 0, 0, 0, 0, 0, 0, 0 } }, - // Onslaught - { 7386, { 100, 0, 0, 0, 0, 0, 0 } }, - // Upheaval - { 7387, { 450, 0, 0, 0, 0, 0, 0 } }, - // Shake It Off - { 7388, { 0, 0, 0, 0, 0, 0, 0 } }, - // Inner Release - { 7389, { 0, 0, 0, 0, 0, 0, 0 } }, - // Delirium - { 7390, { 0, 0, 0, 0, 0, 0, 0 } }, - // Quietus - { 7391, { 210, 0, 0, 0, 0, 0, 6 } }, - // Bloodspiller - { 7392, { 600, 0, 0, 0, 0, 0, 0 } }, - // The Blackest Night - { 7393, { 0, 0, 0, 0, 0, 0, 0 } }, - // Riddle of Earth - { 7394, { 0, 0, 0, 0, 0, 0, 0 } }, - // Riddle of Fire - { 7395, { 0, 0, 0, 0, 0, 0, 0 } }, - // Brotherhood - { 7396, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sonic Thrust - { 7397, { 100, 200, 0, 0, 0, 0, 0 } }, - // Dragon Sight - { 7398, { 0, 0, 0, 0, 0, 0, 0 } }, - // Mirage Dive - { 7399, { 300, 0, 0, 0, 0, 0, 0 } }, - // Nastrond - { 7400, { 400, 0, 0, 0, 0, 0, 0 } }, - // Hellfrog Medium - { 7401, { 200, 0, 0, 0, 0, 0, 0 } }, - // Bhavacakra - { 7402, { 300, 0, 0, 0, 0, 0, 0 } }, - // Ten Chi Jin - { 7403, { 0, 0, 0, 0, 0, 0, 0 } }, - // Pitch Perfect - { 7404, { 100, 0, 0, 0, 0, 0, 0 } }, - // Troubadour - { 7405, { 0, 0, 0, 0, 0, 0, 0 } }, - // Caustic Bite - { 7406, { 150, 0, 0, 0, 0, 0, 0 } }, - // Stormbite - { 7407, { 100, 0, 0, 0, 0, 0, 0 } }, - // Nature's Minne - { 7408, { 0, 0, 0, 0, 0, 0, 0 } }, - // Refulgent Arrow - { 7409, { 330, 0, 0, 0, 0, 0, 0 } }, - // Heat Blast - { 7410, { 220, 0, 0, 0, 0, 0, 0 } }, - // Heated Split Shot - { 7411, { 220, 0, 0, 0, 0, 0, 0 } }, - // Heated Slug Shot - { 7412, { 100, 330, 0, 0, 0, 0, 0 } }, - // Heated Clean Shot - { 7413, { 100, 440, 0, 0, 0, 0, 0 } }, - // Barrel Stabilizer - { 7414, { 0, 0, 0, 0, 0, 0, 0 } }, - // Rook Overdrive - { 7415, { 0, 0, 0, 0, 0, 0, 0 } }, - // Flamethrower - { 7418, { 0, 0, 0, 0, 0, 0, 0 } }, - // Between the Lines - { 7419, { 0, 0, 0, 0, 0, 0, 0 } }, - // Thunder IV - { 7420, { 50, 0, 0, 0, 0, 0, 0 } }, - // Triplecast - { 7421, { 0, 0, 0, 0, 0, 0, 0 } }, - // Foul - { 7422, { 650, 0, 0, 0, 0, 0, 0 } }, - // Aetherpact - { 7423, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bio III - { 7424, { 0, 0, 0, 0, 0, 0, 0 } }, - // Miasma III - { 7425, { 50, 0, 0, 0, 0, 0, 0 } }, - // Ruin IV - { 7426, { 300, 0, 0, 0, 0, 0, 0 } }, - // Summon Bahamut - { 7427, { 0, 0, 0, 0, 0, 0, 0 } }, - // Enkindle Bahamut - { 7429, { 650, 0, 0, 0, 0, 0, 0 } }, - // Thin Air - { 7430, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stone IV - { 7431, { 280, 0, 0, 0, 0, 0, 0 } }, - // Divine Benison - { 7432, { 0, 0, 0, 0, 0, 0, 0 } }, - // Plenary Indulgence - { 7433, { 0, 0, 0, 0, 0, 200, 0 } }, - // Excogitation - { 7434, { 0, 0, 0, 0, 0, 800, 0 } }, - // Broil II - { 7435, { 260, 0, 0, 0, 0, 0, 0 } }, - // Chain Stratagem - { 7436, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aetherpact - { 7437, { 0, 0, 0, 0, 0, 0, 0 } }, - // Earthly Star - { 7439, { 100, 0, 0, 0, 0, 540, 0 } }, - // Malefic III - { 7442, { 210, 0, 0, 0, 0, 0, 0 } }, - // Minor Arcana - { 7443, { 0, 0, 0, 0, 0, 0, 0 } }, - // Lord of Crowns - { 7444, { 0, 0, 0, 0, 0, 0, 0 } }, - // Lady of Crowns - { 7445, { 0, 0, 0, 0, 0, 0, 0 } }, - // Thunder II - { 7447, { 30, 0, 0, 0, 0, 0, 0 } }, - // Sleeve Draw - { 7448, { 0, 0, 0, 0, 0, 0, 0 } }, - // Hakaze - { 7477, { 200, 0, 0, 0, 0, 0, 0 } }, - // Jinpu - { 7478, { 100, 320, 0, 0, 0, 0, 0 } }, - // Shifu - { 7479, { 100, 320, 0, 0, 0, 0, 0 } }, - // Yukikaze - { 7480, { 100, 360, 0, 0, 0, 0, 0 } }, - // Gekko - { 7481, { 100, 480, 0, 0, 0, 0, 0 } }, - // Kasha - { 7482, { 100, 480, 0, 0, 0, 0, 0 } }, - // Fuga - { 7483, { 100, 0, 0, 0, 0, 0, 0 } }, - // Mangetsu - { 7484, { 100, 160, 0, 0, 0, 0, 0 } }, - // Oka - { 7485, { 100, 160, 0, 0, 0, 0, 0 } }, - // Enpi - { 7486, { 100, 0, 0, 0, 0, 0, 0 } }, - // Midare Setsugekka - { 7487, { 800, 0, 0, 0, 0, 0, 0 } }, - // Tenka Goken - { 7488, { 360, 0, 0, 0, 0, 0, 0 } }, - // Higanbana - { 7489, { 250, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Shinten - { 7490, { 320, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Kyuten - { 7491, { 150, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Gyoten - { 7492, { 100, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Yaten - { 7493, { 100, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Kaiten - { 7494, { 0, 0, 0, 0, 0, 0, 0 } }, - // Hagakure - { 7495, { 0, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Guren - { 7496, { 850, 0, 0, 0, 0, 0, 0 } }, - // Meditate - { 7497, { 0, 0, 0, 0, 0, 0, 0 } }, - // Third Eye - { 7498, { 0, 0, 0, 0, 0, 0, 0 } }, - // Meikyo Shisui - { 7499, { 0, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Seigan - { 7501, { 220, 0, 0, 0, 0, 0, 0 } }, - // Merciful Eyes - { 7502, { 0, 0, 0, 0, 0, 200, 0 } }, - // Jolt - { 7503, { 180, 0, 0, 0, 0, 0, 0 } }, - // Riposte - { 7504, { 130, 0, 0, 0, 0, 0, 0 } }, - // Verthunder - { 7505, { 0, 0, 0, 0, 0, 0, 0 } }, - // Corps-a-corps - { 7506, { 130, 0, 0, 0, 0, 0, 0 } }, - // Veraero - { 7507, { 0, 0, 0, 0, 0, 0, 0 } }, - // Scatter - { 7509, { 120, 0, 0, 0, 0, 0, 0 } }, - // Verfire - { 7510, { 0, 0, 0, 0, 0, 0, 0 } }, - // Verstone - { 7511, { 0, 0, 0, 0, 0, 0, 0 } }, - // Zwerchhau - { 7512, { 100, 150, 0, 0, 0, 0, 0 } }, - // Moulinet - { 7513, { 60, 0, 0, 0, 0, 0, 0 } }, - // Vercure - { 7514, { 0, 0, 0, 0, 0, 350, 0 } }, - // Displacement - { 7515, { 0, 0, 0, 0, 0, 0, 0 } }, - // Redoublement - { 7516, { 100, 230, 0, 0, 0, 0, 0 } }, - // Fleche - { 7517, { 420, 0, 0, 0, 0, 0, 0 } }, - // Acceleration - { 7518, { 0, 0, 0, 0, 0, 0, 0 } }, - // Contre Sixte - { 7519, { 380, 0, 0, 0, 0, 0, 0 } }, - // Embolden - { 7520, { 0, 0, 0, 0, 0, 0, 0 } }, - // Manafication - { 7521, { 0, 0, 0, 0, 0, 0, 0 } }, - // Verraise - { 7523, { 0, 0, 0, 0, 0, 0, 0 } }, - // Jolt II - { 7524, { 280, 0, 0, 0, 0, 0, 0 } }, - // Verflare - { 7525, { 600, 0, 0, 0, 0, 0, 0 } }, - // Verholy - { 7526, { 600, 0, 0, 0, 0, 0, 0 } }, - // Enchanted Riposte - { 7527, { 210, 0, 0, 0, 0, 0, 0 } }, - // Enchanted Zwerchhau - { 7528, { 100, 290, 0, 0, 0, 0, 0 } }, - // Enchanted Redoublement - { 7529, { 100, 470, 0, 0, 0, 0, 0 } }, - // Enchanted Moulinet - { 7530, { 200, 0, 0, 0, 0, 0, 0 } }, - // Magitek Cannon - { 7619, { 0, 0, 0, 0, 0, 0, 0 } }, - // Photon Stream - { 7620, { 0, 0, 0, 0, 0, 0, 0 } }, - // Diffractive Magitek Cannon - { 7621, { 0, 0, 0, 0, 0, 0, 0 } }, - // High-powered Magitek Cannon - { 7622, { 0, 0, 0, 0, 0, 0, 0 } }, - // Doom of the Living - { 7861, { 0, 0, 0, 0, 0, 0, 0 } }, - // Vermilion Scourge - { 7862, { 0, 0, 0, 0, 0, 0, 0 } }, - // Iaijutsu - { 7867, { 0, 0, 0, 0, 0, 0, 0 } }, - // Dissolve Union - { 7869, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stellar Detonation - { 8324, { 100, 0, 0, 0, 0, 540, 0 } }, - // Broken Ridge - { 8395, { 0, 0, 0, 0, 0, 0, 0 } }, - // Magitek Pulse - { 8624, { 0, 0, 0, 0, 0, 0, 0 } }, - // Magitek Thunder - { 8625, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 8687, { 0, 0, 0, 0, 0, 0, 0 } }, - // Katon - { 9012, { 0, 0, 0, 0, 0, 0, 0 } }, - // Remove Barrel - { 9015, { 0, 0, 0, 0, 0, 0, 0 } }, - // Tenka Goken - { 9143, { 0, 0, 0, 0, 0, 0, 0 } }, - // Thunderous Force - { 9294, { 0, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 9301, { 0, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 9302, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bishop Overdrive - { 9372, { 0, 0, 0, 0, 0, 0, 0 } }, - // Undraw - { 9629, { 0, 0, 0, 0, 0, 0, 0 } }, - // Self-detonate - { 9775, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shatterstone - { 9823, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 9996, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ungarmax - { 10001, { 0, 0, 0, 0, 0, 0, 0 } }, - // Starstorm - { 10894, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 10946, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 10947, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ruin III - { 11191, { 200, 0, 0, 0, 0, 0, 0 } }, - // Physick - { 11192, { 0, 0, 0, 0, 0, 400, 0 } }, - // Starstorm - { 11193, { 3600, 0, 0, 0, 0, 0, 0 } }, - // Snort - { 11383, { 0, 0, 0, 0, 0, 0, 0 } }, - // 4-tonze Weight - { 11384, { 200, 0, 0, 0, 0, 0, 0 } }, - // Water Cannon - { 11385, { 200, 0, 0, 0, 0, 0, 0 } }, - // Song of Torment - { 11386, { 50, 0, 0, 0, 0, 0, 0 } }, - // High Voltage - { 11387, { 180, 0, 0, 0, 0, 0, 0 } }, - // Bad Breath - { 11388, { 0, 0, 0, 0, 0, 0, 0 } }, - // Flying Frenzy - { 11389, { 150, 0, 0, 0, 0, 0, 0 } }, - // Aqua Breath - { 11390, { 140, 0, 0, 0, 0, 0, 0 } }, - // Plaincracker - { 11391, { 220, 0, 0, 0, 0, 0, 0 } }, - // Acorn Bomb - { 11392, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bristle - { 11393, { 0, 0, 0, 0, 0, 0, 0 } }, - // Mind Blast - { 11394, { 200, 0, 0, 0, 0, 0, 0 } }, - // Blood Drain - { 11395, { 50, 0, 0, 0, 0, 0, 0 } }, - // Bomb Toss - { 11396, { 200, 0, 0, 0, 0, 0, 0 } }, - // 1000 Needles - { 11397, { 0, 0, 0, 0, 0, 0, 0 } }, - // Drill Cannons - { 11398, { 200, 0, 0, 0, 0, 0, 0 } }, - // the Look - { 11399, { 220, 0, 0, 0, 0, 0, 0 } }, - // Sharpened Knife - { 11400, { 220, 0, 0, 0, 0, 0, 0 } }, - // Loom - { 11401, { 0, 0, 0, 0, 0, 0, 0 } }, - // Flame Thrower - { 11402, { 220, 0, 0, 0, 0, 0, 0 } }, - // Faze - { 11403, { 0, 0, 0, 0, 0, 0, 0 } }, - // Glower - { 11404, { 220, 0, 0, 0, 0, 0, 0 } }, - // Missile - { 11405, { 0, 0, 0, 0, 0, 0, 0 } }, - // White Wind - { 11406, { 0, 0, 0, 0, 0, 0, 0 } }, - // Final Sting - { 11407, { 2000, 0, 0, 0, 0, 0, 0 } }, - // Self-destruct - { 11408, { 1500, 0, 0, 0, 0, 0, 0 } }, - // Transfusion - { 11409, { 0, 0, 0, 0, 0, 0, 0 } }, - // Toad Oil - { 11410, { 0, 0, 0, 0, 0, 0, 0 } }, - // Off-guard - { 11411, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sticky Tongue - { 11412, { 0, 0, 0, 0, 0, 0, 0 } }, - // Tail Screw - { 11413, { 0, 0, 0, 0, 0, 0, 0 } }, - // Level 5 Petrify - { 11414, { 0, 0, 0, 0, 0, 0, 0 } }, - // Moon Flute - { 11415, { 0, 0, 0, 0, 0, 0, 0 } }, - // Doom - { 11416, { 0, 0, 0, 0, 0, 0, 0 } }, - // Mighty Guard - { 11417, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ice Spikes - { 11418, { 0, 0, 0, 0, 0, 0, 0 } }, - // the Ram's Voice - { 11419, { 220, 0, 0, 0, 0, 0, 0 } }, - // the Dragon's Voice - { 11420, { 200, 0, 0, 0, 0, 0, 0 } }, - // Peculiar Light - { 11421, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ink Jet - { 11422, { 200, 0, 0, 0, 0, 0, 0 } }, - // Flying Sardine - { 11423, { 10, 0, 0, 0, 0, 0, 0 } }, - // Diamondback - { 11424, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fire Angon - { 11425, { 200, 0, 0, 0, 0, 0, 0 } }, - // Feather Rain - { 11426, { 220, 0, 0, 0, 0, 0, 0 } }, - // Eruption - { 11427, { 300, 0, 0, 0, 0, 0, 0 } }, - // Mountain Buster - { 11428, { 400, 0, 0, 0, 0, 0, 0 } }, - // Shock Strike - { 11429, { 400, 0, 0, 0, 0, 0, 0 } }, - // Glass Dance - { 11430, { 350, 0, 0, 0, 0, 0, 0 } }, - // Veil of the Whorl - { 11431, { 0, 0, 0, 0, 0, 0, 0 } }, - // Tri-shackle - { 11482, { 30, 0, 0, 0, 0, 0, 0 } }, - // attack - { 11784, { 0, 0, 0, 0, 0, 0, 0 } }, - // Stone IV of the Seventh Dawn - { 13423, { 140, 0, 0, 0, 0, 0, 0 } }, - // Aero II of the Seventh Dawn - { 13424, { 50, 0, 0, 0, 0, 0, 0 } }, - // Cure II of the Seventh Dawn - { 13425, { 0, 0, 0, 0, 0, 700, 0 } }, - // Aetherwell - { 13426, { 0, 0, 0, 0, 0, 0, 0 } }, - // Thunderous Force - { 14587, { 0, 0, 0, 0, 0, 0, 0 } }, - // Kyokufu - { 14840, { 180, 0, 0, 0, 0, 0, 0 } }, - // Ajisai - { 14841, { 100, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Gyoten - { 14842, { 100, 0, 0, 0, 0, 0, 0 } }, - // 冥界恐叫打 - { 14843, { 0, 0, 0, 0, 0, 0, 0 } }, - // Second Wind - { 15375, { 0, 0, 0, 0, 0, 500, 0 } }, - // Interject - { 15537, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fight or Flight - { 15870, { 0, 0, 0, 0, 0, 0, 0 } }, - // Cascade - { 15989, { 250, 0, 0, 0, 0, 0, 0 } }, - // Fountain - { 15990, { 100, 300, 0, 0, 0, 0, 0 } }, - // Reverse Cascade - { 15991, { 300, 0, 0, 0, 0, 0, 0 } }, - // Fountainfall - { 15992, { 350, 0, 0, 0, 0, 0, 0 } }, - // Windmill - { 15993, { 150, 0, 0, 0, 0, 0, 0 } }, - // Bladeshower - { 15994, { 100, 200, 0, 0, 0, 0, 0 } }, - // Rising Windmill - { 15995, { 300, 0, 0, 0, 0, 0, 0 } }, - // Bloodshower - { 15996, { 350, 0, 0, 0, 0, 0, 0 } }, - // Standard Step - { 15997, { 0, 0, 0, 0, 0, 0, 0 } }, - // Technical Step - { 15998, { 0, 0, 0, 0, 0, 0, 0 } }, - // Emboite - { 15999, { 0, 0, 0, 0, 0, 0, 0 } }, - // Entrechat - { 16000, { 0, 0, 0, 0, 0, 0, 0 } }, - // Jete - { 16001, { 0, 0, 0, 0, 0, 0, 0 } }, - // Pirouette - { 16002, { 0, 0, 0, 0, 0, 0, 0 } }, - // Standard Finish - { 16003, { 0, 0, 0, 0, 0, 0, 0 } }, - // Technical Finish - { 16004, { 0, 0, 0, 0, 0, 0, 0 } }, - // Saber Dance - { 16005, { 600, 0, 0, 0, 0, 0, 0 } }, - // Closed Position - { 16006, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fan Dance - { 16007, { 150, 0, 0, 0, 0, 0, 0 } }, - // Fan Dance II - { 16008, { 100, 0, 0, 0, 0, 0, 0 } }, - // Fan Dance III - { 16009, { 200, 0, 0, 0, 0, 0, 0 } }, - // En Avant - { 16010, { 0, 0, 0, 0, 0, 0, 0 } }, - // Devilment - { 16011, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shield Samba - { 16012, { 0, 0, 0, 0, 0, 0, 0 } }, - // Flourish - { 16013, { 0, 0, 0, 0, 0, 0, 0 } }, - // Improvisation - { 16014, { 0, 0, 0, 0, 0, 0, 0 } }, - // Curing Waltz - { 16015, { 0, 0, 0, 0, 0, 300, 0 } }, - // Keen Edge - { 16137, { 200, 0, 0, 0, 0, 0, 0 } }, - // No Mercy - { 16138, { 0, 0, 0, 0, 0, 0, 0 } }, - // Brutal Shell - { 16139, { 100, 300, 0, 0, 0, 150, 0 } }, - // Camouflage - { 16140, { 0, 0, 0, 0, 0, 0, 0 } }, - // Demon Slice - { 16141, { 150, 0, 0, 0, 0, 0, 0 } }, - // Royal Guard - { 16142, { 0, 0, 0, 0, 0, 0, 0 } }, - // Lightning Shot - { 16143, { 150, 0, 0, 0, 0, 0, 0 } }, - // Danger Zone - { 16144, { 350, 0, 0, 0, 0, 0, 0 } }, - // Solid Barrel - { 16145, { 100, 400, 0, 0, 0, 0, 0 } }, - // Gnashing Fang - { 16146, { 450, 0, 0, 0, 0, 0, 0 } }, - // Savage Claw - { 16147, { 550, 0, 0, 0, 0, 0, 0 } }, - // Nebula - { 16148, { 0, 0, 0, 0, 0, 0, 0 } }, - // Demon Slaughter - { 16149, { 100, 250, 0, 0, 0, 0, 0 } }, - // Wicked Talon - { 16150, { 650, 0, 0, 0, 0, 0, 0 } }, - // Aurora - { 16151, { 0, 0, 0, 0, 0, 200, 0 } }, - // Superbolide - { 16152, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sonic Break - { 16153, { 300, 0, 0, 0, 0, 0, 0 } }, - // Rough Divide - { 16154, { 200, 0, 0, 0, 0, 0, 0 } }, - // Continuation - { 16155, { 0, 0, 0, 0, 0, 0, 0 } }, - // Jugular Rip - { 16156, { 260, 0, 0, 0, 0, 0, 0 } }, - // Abdomen Tear - { 16157, { 280, 0, 0, 0, 0, 0, 0 } }, - // Eye Gouge - { 16158, { 300, 0, 0, 0, 0, 0, 0 } }, - // Bow Shock - { 16159, { 200, 0, 0, 0, 0, 0, 0 } }, - // Heart of Light - { 16160, { 0, 0, 0, 0, 0, 0, 0 } }, - // Heart of Stone - { 16161, { 0, 0, 0, 0, 0, 0, 0 } }, - // Burst Strike - { 16162, { 500, 0, 0, 0, 0, 0, 0 } }, - // Fated Circle - { 16163, { 320, 0, 0, 0, 0, 0, 0 } }, - // Bloodfest - { 16164, { 0, 0, 0, 0, 0, 0, 0 } }, - // Blasting Zone - { 16165, { 800, 0, 0, 0, 0, 0, 0 } }, - // Single Standard Finish - { 16191, { 0, 0, 0, 0, 0, 0, 0 } }, - // Double Standard Finish - { 16192, { 0, 0, 0, 0, 0, 0, 0 } }, - // Single Technical Finish - { 16193, { 0, 0, 0, 0, 0, 0, 0 } }, - // Double Technical Finish - { 16194, { 0, 0, 0, 0, 0, 0, 0 } }, - // Triple Technical Finish - { 16195, { 0, 0, 0, 0, 0, 0, 0 } }, - // Quadruple Technical Finish - { 16196, { 0, 0, 0, 0, 0, 0, 0 } }, - // Physick - { 16230, { 0, 0, 0, 0, 0, 400, 0 } }, - // Rightful Sword - { 16269, { 0, 0, 0, 0, 0, 0, 0 } }, - // Brutal Shell - { 16418, { 0, 0, 0, 0, 0, 0, 0 } }, - // Keen Edge - { 16434, { 0, 0, 0, 0, 0, 0, 0 } }, - // Solid Barrel - { 16435, { 0, 0, 0, 0, 0, 0, 0 } }, - // Soothing Potion - { 16436, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shining Blade - { 16437, { 0, 0, 0, 0, 0, 0, 0 } }, - // Perfect Deception - { 16438, { 0, 0, 0, 0, 0, 0, 0 } }, - // Leap of Faith - { 16439, { 0, 0, 0, 0, 0, 0, 0 } }, - // Prominence - { 16457, { 100, 220, 0, 0, 0, 0, 5 } }, - // Holy Circle - { 16458, { 250, 0, 0, 0, 0, 0, 0 } }, - // Confiteor - { 16459, { 800, 0, 0, 0, 0, 0, 0 } }, - // Atonement - { 16460, { 550, 0, 0, 0, 0, 0, 0 } }, - // Intervene - { 16461, { 200, 0, 0, 0, 0, 0, 0 } }, - // Mythril Tempest - { 16462, { 100, 200, 0, 0, 0, 0, 0 } }, - // Chaotic Cyclone - { 16463, { 400, 0, 0, 0, 0, 0, 0 } }, - // Nascent Flash - { 16464, { 0, 0, 0, 0, 0, 0, 0 } }, - // Inner Chaos - { 16465, { 920, 0, 0, 0, 0, 0, 0 } }, - // Flood of Darkness - { 16466, { 250, 0, 0, 0, 0, 0, 0 } }, - // Edge of Darkness - { 16467, { 350, 0, 0, 0, 0, 0, 0 } }, - // Stalwart Soul - { 16468, { 100, 160, 0, 0, 0, 0, 6 } }, - // Flood of Shadow - { 16469, { 300, 0, 0, 0, 0, 0, 0 } }, - // Edge of Shadow - { 16470, { 500, 0, 0, 0, 0, 0, 0 } }, - // Dark Missionary - { 16471, { 0, 0, 0, 0, 0, 0, 0 } }, - // Living Shadow - { 16472, { 0, 0, 0, 0, 0, 0, 0 } }, - // Four-point Fury - { 16473, { 120, 0, 0, 0, 0, 0, 0 } }, - // Enlightenment - { 16474, { 220, 0, 0, 0, 0, 0, 0 } }, - // Anatman - { 16475, { 0, 0, 0, 0, 0, 0, 0 } }, - // Six-sided Star - { 16476, { 400, 0, 0, 0, 0, 0, 0 } }, - // Coerthan Torment - { 16477, { 100, 230, 0, 0, 0, 0, 0 } }, - // High Jump - { 16478, { 400, 0, 0, 0, 0, 0, 0 } }, - // Raiden Thrust - { 16479, { 330, 0, 0, 0, 0, 0, 0 } }, - // Stardiver - { 16480, { 600, 0, 0, 0, 0, 0, 0 } }, - // Hissatsu: Senei - { 16481, { 1100, 0, 0, 0, 0, 0, 0 } }, - // Ikishoten - { 16482, { 0, 0, 0, 0, 0, 0, 0 } }, - // Tsubame-gaeshi - { 16483, { 0, 0, 0, 0, 0, 0, 0 } }, - // Kaeshi: Higanbana - { 16484, { 375, 0, 0, 0, 0, 0, 0 } }, - // Kaeshi: Goken - { 16485, { 540, 0, 0, 0, 0, 0, 0 } }, - // Kaeshi: Setsugekka - { 16486, { 1200, 0, 0, 0, 0, 0, 0 } }, - // Shoha - { 16487, { 400, 0, 0, 0, 0, 0, 0 } }, - // Hakke Mujinsatsu - { 16488, { 100, 140, 0, 0, 0, 0, 0 } }, - // Meisui - { 16489, { 0, 0, 0, 0, 0, 0, 0 } }, - // Goka Mekkyaku - { 16491, { 750, 0, 0, 0, 0, 0, 0 } }, - // Hyosho Ranryu - { 16492, { 1200, 0, 0, 0, 0, 0, 0 } }, - // Bunshin - { 16493, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shadowbite - { 16494, { 100, 0, 0, 0, 0, 0, 0 } }, - // Burst Shot - { 16495, { 230, 0, 0, 0, 0, 0, 0 } }, - // Apex Arrow - { 16496, { 120, 0, 0, 0, 0, 0, 0 } }, - // Auto Crossbow - { 16497, { 180, 0, 0, 0, 0, 0, 0 } }, - // Drill - { 16498, { 700, 0, 0, 0, 0, 0, 0 } }, - // Bioblaster - { 16499, { 60, 0, 0, 0, 0, 0, 0 } }, - // Air Anchor - { 16500, { 700, 0, 0, 0, 0, 0, 0 } }, - // Automaton Queen - { 16501, { 0, 0, 0, 0, 0, 0, 0 } }, - // Queen Overdrive - { 16502, { 0, 0, 0, 0, 0, 0, 0 } }, - // Despair - { 16505, { 380, 0, 0, 0, 0, 0, 0 } }, - // Umbral Soul - { 16506, { 0, 0, 0, 0, 0, 0, 0 } }, - // Xenoglossy - { 16507, { 750, 0, 0, 0, 0, 0, 0 } }, - // Energy Drain - { 16508, { 100, 0, 0, 0, 0, 0, 0 } }, - // Egi Assault - { 16509, { 0, 0, 0, 0, 0, 0, 0 } }, - // Energy Siphon - { 16510, { 40, 0, 0, 0, 0, 0, 0 } }, - // Outburst - { 16511, { 0, 0, 0, 0, 0, 0, 0 } }, - // Egi Assault II - { 16512, { 0, 0, 0, 0, 0, 0, 0 } }, - // Firebird Trance - { 16513, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fountain of Fire - { 16514, { 250, 0, 0, 0, 0, 0, 0 } }, - // Brand of Purgatory - { 16515, { 350, 0, 0, 0, 0, 0, 0 } }, - // Enkindle Phoenix - { 16516, { 650, 0, 0, 0, 0, 0, 0 } }, - // Verthunder II - { 16524, { 0, 0, 0, 0, 0, 0, 0 } }, - // Veraero II - { 16525, { 0, 0, 0, 0, 0, 0, 0 } }, - // Impact - { 16526, { 220, 0, 0, 0, 0, 0, 0 } }, - // Engagement - { 16527, { 150, 0, 0, 0, 0, 0, 0 } }, - // Enchanted Reprise - { 16528, { 300, 0, 0, 0, 0, 0, 0 } }, - // Reprise - { 16529, { 100, 0, 0, 0, 0, 0, 0 } }, - // Scorch - { 16530, { 700, 0, 0, 0, 0, 0, 0 } }, - // Afflatus Solace - { 16531, { 0, 0, 0, 0, 0, 700, 0 } }, - // Dia - { 16532, { 120, 0, 0, 0, 0, 0, 0 } }, - // Glare - { 16533, { 300, 0, 0, 0, 0, 0, 0 } }, - // Afflatus Rapture - { 16534, { 0, 0, 0, 0, 0, 300, 0 } }, - // Afflatus Misery - { 16535, { 900, 0, 0, 0, 0, 0, 0 } }, - // Temperance - { 16536, { 0, 0, 0, 0, 0, 0, 0 } }, - // Whispering Dawn - { 16537, { 0, 0, 0, 0, 0, 120, 0 } }, - // Fey Illumination - { 16538, { 0, 0, 0, 0, 0, 0, 0 } }, - // Art of War - { 16539, { 0, 0, 0, 0, 0, 0, 0 } }, - // Biolysis - { 16540, { 0, 0, 0, 0, 0, 0, 0 } }, - // Broil III - { 16541, { 280, 0, 0, 0, 0, 0, 0 } }, - // Recitation - { 16542, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fey Blessing - { 16543, { 0, 0, 0, 0, 0, 350, 0 } }, - // Summon Seraph - { 16545, { 0, 0, 0, 0, 0, 0, 0 } }, - // Consolation - { 16546, { 0, 0, 0, 0, 0, 300, 0 } }, - // Firebird Trance - { 16549, { 0, 0, 0, 0, 0, 0, 0 } }, - // Divination - { 16552, { 0, 0, 0, 0, 0, 0, 0 } }, - // Celestial Opposition - { 16553, { 0, 0, 0, 0, 0, 200, 0 } }, - // Combust III - { 16554, { 0, 0, 0, 0, 0, 0, 0 } }, - // Malefic IV - { 16555, { 250, 0, 0, 0, 0, 0, 0 } }, - // Celestial Intersection - { 16556, { 0, 0, 0, 0, 0, 200, 0 } }, - // Horoscope - { 16557, { 0, 0, 0, 0, 0, 200, 0 } }, - // Horoscope - { 16558, { 0, 0, 0, 0, 0, 0, 0 } }, - // Neutral Sect - { 16559, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Fire III - { 16574, { 430, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Blizzard III - { 16575, { 240, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Thunder III - { 16576, { 200, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Flare - { 16577, { 460, 0, 0, 0, 0, 0, 0 } }, - // Falling Star - { 16578, { 1500, 0, 0, 0, 0, 0, 0 } }, - // Detonator - { 16766, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fast Blade - { 16788, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sunshadow - { 16789, { 0, 0, 0, 0, 0, 0, 0 } }, - // Assault I: Glittering Topaz - { 16791, { 0, 0, 0, 0, 0, 0, 0 } }, - // Assault II: Shining Topaz - { 16792, { 200, 0, 0, 0, 0, 0, 0 } }, - // Assault I: Downburst - { 16793, { 100, 0, 0, 0, 0, 0, 0 } }, - // Assault II: Glittering Emerald - { 16794, { 30, 0, 0, 0, 0, 0, 0 } }, - // Assault I: Earthen Armor - { 16795, { 0, 0, 0, 0, 0, 0, 0 } }, - // Assault II: Mountain Buster - { 16796, { 250, 0, 0, 0, 0, 0, 0 } }, - // Assault I: Aerial Slash - { 16797, { 150, 0, 0, 0, 0, 0, 0 } }, - // Assault II: Slipstream - { 16798, { 50, 0, 0, 0, 0, 0, 0 } }, - // Assault I: Crimson Cyclone - { 16799, { 250, 0, 0, 0, 0, 0, 0 } }, - // Assault II: Flaming Crush - { 16800, { 250, 0, 0, 0, 0, 0, 0 } }, - // Enkindle: Earthen Fury - { 16801, { 300, 0, 0, 0, 0, 0, 0 } }, - // Enkindle: Aerial Blast - { 16802, { 350, 0, 0, 0, 0, 0, 0 } }, - // Enkindle: Inferno - { 16803, { 300, 0, 0, 0, 0, 0, 0 } }, - // Rough Divide - { 16804, { 200, 0, 0, 0, 0, 0, 0 } }, - // Tactician - { 16889, { 0, 0, 0, 0, 0, 0, 0 } }, - // Swashbuckler - { 16984, { 0, 0, 0, 0, 0, 0, 0 } }, - // Greatest Eclipse - { 16985, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Cure II - { 17000, { 0, 0, 0, 0, 0, 1300, 0 } }, - // Ronkan Medica - { 17001, { 0, 0, 0, 0, 0, 500, 0 } }, - // Ronkan Esuna - { 17002, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Stone II - { 17003, { 200, 0, 0, 0, 0, 0, 0 } }, - // Ronkan Renew - { 17004, { 0, 0, 0, 0, 0, 0, 0 } }, - // Play - { 17055, { 0, 0, 0, 0, 0, 0, 0 } }, - // Gunmetal Soul - { 17105, { 0, 0, 0, 0, 0, 0, 0 } }, - // Crimson Lotus - { 17106, { 0, 0, 0, 0, 0, 0, 0 } }, - // Acidic Bite - { 17122, { 300, 0, 0, 0, 0, 0, 0 } }, - // Heavy Shot - { 17123, { 550, 0, 0, 0, 0, 0, 0 } }, - // Radiant Arrow - { 17124, { 1100, 0, 0, 0, 0, 0, 0 } }, - // Dulling Arrow - { 17125, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aspected Benefic - { 17151, { 0, 0, 0, 0, 0, 200, 0 } }, - // Aspected Helios - { 17152, { 0, 0, 0, 0, 0, 200, 0 } }, - // Hypercharge - { 17209, { 0, 0, 0, 0, 0, 0, 0 } }, - // Summon Eos - { 17215, { 0, 0, 0, 0, 0, 0, 0 } }, - // Summon Selene - { 17216, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 17222, { 0, 0, 0, 0, 0, 0, 0 } }, - // Chivalrous Spirit - { 17236, { 0, 0, 0, 0, 0, 1200, 0 } }, - // Souldeep Invisibility - { 17291, { 0, 0, 0, 0, 0, 0, 0 } }, - // Spinning Edge - { 17413, { 0, 0, 0, 0, 0, 0, 0 } }, - // Gust Slash - { 17414, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aeolian Edge - { 17415, { 0, 0, 0, 0, 0, 0, 0 } }, - // Shadow Fang - { 17416, { 0, 0, 0, 0, 0, 0, 0 } }, - // Armor Crush - { 17417, { 0, 0, 0, 0, 0, 0, 0 } }, - // Throwing Dagger - { 17418, { 0, 0, 0, 0, 0, 0, 0 } }, - // Death Blossom - { 17419, { 0, 0, 0, 0, 0, 0, 0 } }, - // Hakke Mujinsatsu - { 17420, { 0, 0, 0, 0, 0, 0, 0 } }, - // Hunter's Prudence - { 17596, { 0, 0, 0, 0, 0, 1000, 0 } }, - // Nebula - { 17839, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bio - { 17864, { 0, 0, 0, 0, 0, 0, 0 } }, - // Bio II - { 17865, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ruin - { 17869, { 160, 0, 0, 0, 0, 0, 0 } }, - // Ruin II - { 17870, { 0, 0, 0, 0, 0, 0, 0 } }, - // Smackdown - { 17901, { 0, 0, 0, 0, 0, 0, 0 } }, - // 攻撃 - { 18034, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ending - { 18073, { 0, 0, 0, 0, 0, 0, 0 } }, - // Alpine Draft - { 18295, { 220, 0, 0, 0, 0, 0, 0 } }, - // Protean Wave - { 18296, { 220, 0, 0, 0, 0, 0, 0 } }, - // Northerlies - { 18297, { 220, 0, 0, 0, 0, 0, 0 } }, - // Electrogenesis - { 18298, { 220, 0, 0, 0, 0, 0, 0 } }, - // Kaltstrahl - { 18299, { 220, 0, 0, 0, 0, 0, 0 } }, - // Abyssal Transfixion - { 18300, { 220, 0, 0, 0, 0, 0, 0 } }, - // Chirp - { 18301, { 0, 0, 0, 0, 0, 0, 0 } }, - // Eerie Soundwave - { 18302, { 0, 0, 0, 0, 0, 0, 0 } }, - // Pom Cure - { 18303, { 0, 0, 0, 0, 0, 100, 0 } }, - // Gobskin - { 18304, { 0, 0, 0, 0, 0, 0, 0 } }, - // Magic Hammer - { 18305, { 250, 0, 0, 0, 0, 0, 0 } }, - // Avail - { 18306, { 0, 0, 0, 0, 0, 0, 0 } }, - // Frog Legs - { 18307, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sonic Boom - { 18308, { 210, 0, 0, 0, 0, 0, 0 } }, - // Whistle - { 18309, { 0, 0, 0, 0, 0, 0, 0 } }, - // White Knight's Tour - { 18310, { 200, 0, 0, 0, 0, 0, 0 } }, - // Black Knight's Tour - { 18311, { 200, 0, 0, 0, 0, 0, 0 } }, - // Level 5 Death - { 18312, { 0, 0, 0, 0, 0, 0, 0 } }, - // Launcher - { 18313, { 0, 0, 0, 0, 0, 0, 0 } }, - // Perpetual Ray - { 18314, { 220, 0, 0, 0, 0, 0, 0 } }, - // Cactguard - { 18315, { 0, 0, 0, 0, 0, 0, 0 } }, - // Revenge Blast - { 18316, { 50, 0, 0, 0, 0, 0, 0 } }, - // Angel Whisper - { 18317, { 0, 0, 0, 0, 0, 0, 0 } }, - // Exuviation - { 18318, { 0, 0, 0, 0, 0, 50, 0 } }, - // Reflux - { 18319, { 220, 0, 0, 0, 0, 0, 0 } }, - // Devour - { 18320, { 250, 0, 0, 0, 0, 0, 0 } }, - // Condensed Libra - { 18321, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aetherial Mimicry - { 18322, { 0, 0, 0, 0, 0, 0, 0 } }, - // Surpanakha - { 18323, { 200, 0, 0, 0, 0, 0, 0 } }, - // Quasar - { 18324, { 300, 0, 0, 0, 0, 0, 0 } }, - // J Kick - { 18325, { 300, 0, 0, 0, 0, 0, 0 } }, - // Doom Spike - { 18772, { 0, 0, 0, 0, 0, 0, 0 } }, - // Sonic Thrust - { 18773, { 0, 0, 0, 0, 0, 0, 0 } }, - // Coerthan Torment - { 18774, { 0, 0, 0, 0, 0, 0, 0 } }, - // Skydragon Dive - { 18775, { 800, 0, 0, 0, 0, 0, 0 } }, - // Ala Morn - { 18776, { 3000, 0, 0, 0, 0, 0, 0 } }, - // Drachenlance - { 18777, { 500, 0, 0, 0, 0, 0, 0 } }, - // Horrid Roar - { 18778, { 600, 0, 0, 0, 0, 0, 0 } }, - // Stardiver - { 18780, { 1500, 0, 0, 0, 0, 0, 0 } }, - // Dragonshadow Dive - { 18781, { 0, 0, 0, 0, 0, 0, 0 } }, - // Dragonshadow Dive - { 18782, { 0, 0, 0, 0, 0, 0, 0 } }, - // Ten - { 18805, { 0, 0, 0, 0, 0, 0, 0 } }, - // Chi - { 18806, { 0, 0, 0, 0, 0, 0, 0 } }, - // Jin - { 18807, { 0, 0, 0, 0, 0, 0, 0 } }, - // Fuma Shuriken - { 18873, { 500, 0, 0, 0, 0, 0, 0 } }, - // Fuma Shuriken - { 18874, { 500, 0, 0, 0, 0, 0, 0 } }, - // Fuma Shuriken - { 18875, { 500, 0, 0, 0, 0, 0, 0 } }, - // Katon - { 18876, { 500, 0, 0, 0, 0, 0, 0 } }, - // Raiton - { 18877, { 800, 0, 0, 0, 0, 0, 0 } }, - // Hyoton - { 18878, { 400, 0, 0, 0, 0, 0, 0 } }, - // Huton - { 18879, { 0, 0, 0, 0, 0, 0, 0 } }, - // Doton - { 18880, { 100, 0, 0, 0, 0, 0, 0 } }, - // Suiton - { 18881, { 600, 0, 0, 0, 0, 0, 0 } }, - // Gofu - { 19046, { 0, 0, 0, 0, 0, 0, 0 } }, - // Yagetsu - { 19047, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aqua Vitae - { 19218, { 0, 0, 0, 0, 0, 0, 0 } }, - // attack - { 19221, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aetherial Mimicry - { 19238, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aetherial Mimicry - { 19239, { 0, 0, 0, 0, 0, 0, 0 } }, - // Aetherial Mimicry - { 19240, { 0, 0, 0, 0, 0, 0, 0 } }, -}; \ No newline at end of file + { + // Attack + { 7, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shot + { 8, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fast Blade + { 9, { 150, 0, 0, 0, 0, 0, 0 } }, + // Rampart + { 10, { 0, 0, 0, 0, 0, 0, 0 } }, + // Savage Blade + { 11, { 100, 200, 0, 0, 0, 0, 0 } }, + // Convalescence + { 12, { 0, 0, 0, 0, 0, 0, 0 } }, + // Awareness + { 13, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flash + { 14, { 0, 0, 0, 0, 0, 0, 0 } }, + // Riot Blade + { 15, { 100, 230, 0, 0, 0, 0, 0 } }, + // Shield Bash + { 16, { 110, 0, 0, 0, 0, 0, 0 } }, + // Sentinel + { 17, { 0, 0, 0, 0, 0, 0, 0 } }, + // Provoke + { 18, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tempered Will + { 19, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fight or Flight + { 20, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rage of Halone + { 21, { 100, 260, 0, 0, 0, 0, 0 } }, + // Bulwark + { 22, { 0, 0, 0, 0, 0, 0, 0 } }, + // Circle of Scorn + { 23, { 100, 0, 0, 0, 0, 0, 0 } }, + // Shield Lob + { 24, { 120, 0, 0, 0, 0, 0, 0 } }, + // Shield Swipe + { 25, { 210, 0, 0, 0, 0, 0, 0 } }, + // Sword Oath + { 26, { 50, 0, 0, 0, 0, 0, 0 } }, + // Cover + { 27, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shield Oath + { 28, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spirits Within + { 29, { 300, 0, 0, 0, 0, 0, 0 } }, + // Hallowed Ground + { 30, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Swing + { 31, { 150, 0, 0, 0, 0, 0, 0 } }, + // Foresight + { 32, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fracture + { 33, { 100, 0, 0, 0, 0, 0, 0 } }, + // Bloodbath + { 34, { 0, 0, 0, 0, 0, 0, 0 } }, + // Skull Sunder + { 35, { 100, 200, 0, 0, 0, 0, 0 } }, + // Mercy Stroke + { 36, { 200, 0, 0, 0, 0, 0, 0 } }, + // Maim + { 37, { 100, 190, 0, 0, 0, 0, 0 } }, + // Berserk + { 38, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brutal Swing + { 39, { 100, 0, 0, 0, 0, 0, 0 } }, + // Thrill of Battle + { 40, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overpower + { 41, { 120, 0, 0, 0, 0, 0, 0 } }, + // Storm's Path + { 42, { 100, 250, 0, 0, 0, 0, 0 } }, + // Holmgang + { 43, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vengeance + { 44, { 50, 0, 0, 0, 0, 0, 0 } }, + // Storm's Eye + { 45, { 100, 270, 0, 0, 0, 0, 0 } }, + // Tomahawk + { 46, { 130, 0, 0, 0, 0, 0, 0 } }, + // Butcher's Block + { 47, { 100, 280, 0, 0, 0, 0, 0 } }, + // Defiance + { 48, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inner Beast + { 49, { 300, 0, 0, 0, 0, 0, 0 } }, + // Unchained + { 50, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steel Cyclone + { 51, { 200, 0, 0, 0, 0, 0, 0 } }, + // Infuriate + { 52, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bootshine + { 53, { 150, 0, 0, 0, 0, 0, 0 } }, + // True Strike + { 54, { 150, 0, 0, 0, 0, 0, 0 } }, + // Featherfoot + { 55, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snap Punch + { 56, { 140, 0, 180, 0, 0, 0, 0 } }, + // Second Wind + { 57, { 0, 0, 0, 0, 0, 0, 0 } }, + // Haymaker + { 58, { 170, 0, 0, 0, 0, 0, 0 } }, + // Internal Release + { 59, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fists of Earth + { 60, { 0, 0, 0, 0, 0, 0, 0 } }, + // Twin Snakes + { 61, { 100, 0, 140, 0, 0, 0, 0 } }, + // Arm of the Destroyer + { 62, { 50, 0, 0, 0, 0, 0, 0 } }, + // Fists of Fire + { 63, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steel Peak + { 64, { 150, 0, 0, 0, 0, 0, 0 } }, + // Mantra + { 65, { 0, 0, 0, 0, 0, 0, 0 } }, + // Demolish + { 66, { 30, 0, 0, 0, 0, 0, 0 } }, + // Howling Fist + { 67, { 170, 0, 0, 0, 0, 0, 0 } }, + // Touch of Death + { 68, { 20, 0, 0, 0, 0, 0, 0 } }, + // Perfect Balance + { 69, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockbreaker + { 70, { 130, 0, 0, 0, 0, 0, 0 } }, + // Shoulder Tackle + { 71, { 100, 0, 0, 0, 0, 0, 0 } }, + // One Ilm Punch + { 72, { 120, 0, 0, 0, 0, 0, 0 } }, + // Fists of Wind + { 73, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon Kick + { 74, { 100, 0, 150, 0, 0, 0, 0 } }, + // True Thrust + { 75, { 150, 0, 0, 0, 0, 0, 0 } }, + // Feint + { 76, { 120, 0, 0, 0, 0, 0, 0 } }, + // Keen Flurry + { 77, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vorpal Thrust + { 78, { 100, 200, 0, 0, 0, 0, 0 } }, + // Heavy Thrust + { 79, { 100, 0, 170, 0, 0, 0, 0 } }, + // Invigorate + { 80, { 0, 0, 0, 0, 0, 0, 0 } }, + // Impulse Drive + { 81, { 180, 0, 0, 0, 0, 0, 0 } }, + // Leg Sweep + { 82, { 130, 0, 0, 0, 0, 0, 0 } }, + // Life Surge + { 83, { 0, 0, 0, 0, 0, 0, 0 } }, + // Full Thrust + { 84, { 100, 360, 0, 0, 0, 0, 0 } }, + // Blood for Blood + { 85, { 0, 0, 0, 0, 0, 0, 0 } }, + // Doom Spike + { 86, { 160, 0, 0, 0, 0, 0, 0 } }, + // Disembowel + { 87, { 100, 220, 0, 0, 0, 0, 0 } }, + // Chaos Thrust + { 88, { 100, 200, 0, 0, 0, 0, 0 } }, + // Ring of Thorns + { 89, { 100, 150, 0, 0, 0, 0, 0 } }, + // Piercing Talon + { 90, { 120, 0, 0, 0, 0, 0, 0 } }, + // Phlebotomize + { 91, { 170, 0, 0, 0, 0, 0, 0 } }, + // Jump + { 92, { 200, 0, 0, 0, 0, 0, 0 } }, + // Power Surge + { 93, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elusive Jump + { 94, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spineshatter Dive + { 95, { 170, 0, 0, 0, 0, 0, 0 } }, + // Dragonfire Dive + { 96, { 250, 0, 0, 0, 0, 0, 0 } }, + // Heavy Shot + { 97, { 150, 0, 0, 0, 0, 0, 0 } }, + // Straight Shot + { 98, { 140, 0, 0, 0, 0, 0, 0 } }, + // Hawk's Eye + { 99, { 0, 0, 0, 0, 0, 0, 0 } }, + // Venomous Bite + { 100, { 100, 0, 0, 0, 0, 0, 0 } }, + // Raging Strikes + { 101, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flaming Arrow + { 102, { 35, 0, 0, 0, 0, 0, 0 } }, + // Misery's End + { 103, { 190, 0, 0, 0, 0, 0, 0 } }, + // Quelling Strikes + { 104, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swiftsong + { 105, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quick Nock + { 106, { 110, 0, 0, 0, 0, 0, 0 } }, + // Barrage + { 107, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadowbind + { 108, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blunt Arrow + { 109, { 50, 0, 0, 0, 0, 0, 0 } }, + // Bloodletter + { 110, { 150, 0, 0, 0, 0, 0, 0 } }, + // Wide Volley + { 111, { 110, 0, 0, 0, 0, 0, 0 } }, + // Repelling Shot + { 112, { 80, 0, 0, 0, 0, 0, 0 } }, + // Windbite + { 113, { 60, 0, 0, 0, 0, 0, 0 } }, + // Mage's Ballad + { 114, { 0, 0, 0, 0, 0, 0, 0 } }, + // Foe Requiem + { 115, { 0, 0, 0, 0, 0, 0, 0 } }, + // Army's Paeon + { 116, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rain of Death + { 117, { 100, 0, 0, 0, 0, 0, 0 } }, + // Battle Voice + { 118, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone + { 119, { 140, 0, 0, 0, 0, 0, 0 } }, + // Cure + { 120, { 0, 0, 0, 0, 0, 400, 0 } }, + // Aero + { 121, { 50, 0, 0, 0, 0, 0, 0 } }, + // Cleric Stance + { 122, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protect + { 123, { 0, 0, 0, 0, 0, 0, 0 } }, + // Medica + { 124, { 0, 0, 0, 0, 0, 300, 0 } }, + // Raise + { 125, { 0, 0, 0, 0, 0, 0, 0 } }, + // Esuna + { 126, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone II + { 127, { 170, 0, 0, 0, 0, 0, 0 } }, + // Repose + { 128, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stoneskin + { 129, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shroud of Saints + { 130, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cure III + { 131, { 0, 0, 0, 0, 0, 550, 0 } }, + // Aero II + { 132, { 50, 0, 0, 0, 0, 0, 0 } }, + // Medica II + { 133, { 0, 0, 0, 0, 0, 200, 0 } }, + // Fluid Aura + { 134, { 150, 0, 0, 0, 0, 0, 0 } }, + // Cure II + { 135, { 0, 0, 0, 0, 0, 650, 0 } }, + // Presence of Mind + { 136, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regen + { 137, { 0, 0, 0, 0, 0, 150, 0 } }, + // Divine Seal + { 138, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy + { 139, { 200, 0, 0, 0, 0, 0, 0 } }, + // Benediction + { 140, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 141, { 180, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 142, { 180, 0, 0, 0, 0, 0, 0 } }, + // Surecast + { 143, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunder + { 144, { 30, 0, 0, 0, 0, 0, 0 } }, + // Sleep + { 145, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard II + { 146, { 50, 0, 0, 0, 0, 0, 0 } }, + // Fire II + { 147, { 100, 0, 0, 0, 0, 0, 0 } }, + // Thunder II + { 148, { 50, 0, 0, 0, 0, 0, 0 } }, + // Transpose + { 149, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swiftcast + { 150, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lethargy + { 151, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire III + { 152, { 240, 0, 0, 0, 0, 0, 0 } }, + // Thunder III + { 153, { 70, 0, 0, 0, 0, 0, 0 } }, + // Blizzard III + { 154, { 240, 0, 0, 0, 0, 0, 0 } }, + // Aetherial Manipulation + { 155, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scathe + { 156, { 100, 0, 0, 0, 0, 0, 0 } }, + // Manaward + { 157, { 0, 0, 0, 0, 0, 0, 0 } }, + // Convert + { 158, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freeze + { 159, { 100, 0, 0, 0, 0, 0, 0 } }, + // Apocatastasis + { 160, { 0, 0, 0, 0, 0, 0, 0 } }, + // Manawall + { 161, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flare + { 162, { 260, 0, 0, 0, 0, 0, 0 } }, + // Ruin + { 163, { 80, 0, 0, 0, 0, 0, 0 } }, + // Bio + { 164, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summon + { 165, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherflow + { 166, { 0, 0, 0, 0, 0, 0, 0 } }, + // Energy Drain + { 167, { 150, 0, 0, 0, 0, 0, 0 } }, + // Miasma + { 168, { 20, 0, 0, 0, 0, 0, 0 } }, + // Virus + { 169, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summon II + { 170, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sustain + { 171, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ruin II + { 172, { 80, 0, 0, 0, 0, 0, 0 } }, + // Resurrection + { 173, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bane + { 174, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye for an Eye + { 175, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rouse + { 176, { 0, 0, 0, 0, 0, 0, 0 } }, + // Miasma II + { 177, { 20, 0, 0, 0, 0, 0, 0 } }, + // Bio II + { 178, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Flare + { 179, { 25, 0, 0, 0, 0, 0, 0 } }, + // Summon III + { 180, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fester + { 181, { 100, 0, 0, 0, 0, 0, 0 } }, + // Tri-bind + { 182, { 30, 0, 0, 0, 0, 0, 0 } }, + // Spur + { 183, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enkindle + { 184, { 0, 0, 0, 0, 0, 0, 0 } }, + // Adloquium + { 185, { 0, 0, 0, 0, 0, 300, 0 } }, + // Succor + { 186, { 0, 0, 0, 0, 0, 150, 0 } }, + // Leeches + { 187, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Soil + { 188, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lustrate + { 189, { 0, 0, 0, 0, 0, 600, 0 } }, + // Physick + { 190, { 0, 0, 0, 0, 0, 400, 0 } }, + // Stoneskin II + { 191, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shield Wall + { 197, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mighty Guard + { 198, { 0, 0, 0, 0, 0, 0, 0 } }, + // Last Bastion + { 199, { 0, 0, 0, 0, 0, 0, 0 } }, + // Braver + { 200, { 2400, 0, 0, 0, 0, 0, 0 } }, + // Bladedance + { 201, { 5250, 0, 0, 0, 0, 0, 0 } }, + // Final Heaven + { 202, { 9000, 0, 0, 0, 0, 0, 0 } }, + // Skyshard + { 203, { 1650, 0, 0, 0, 0, 0, 0 } }, + // Starstorm + { 204, { 3600, 0, 0, 0, 0, 0, 0 } }, + // Meteor + { 205, { 6150, 0, 0, 0, 0, 0, 0 } }, + // Healing Wind + { 206, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath of the Earth + { 207, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulse of Life + { 208, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triangulate + { 210, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arbor Call + { 211, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stealth + { 212, { 0, 0, 0, 0, 0, 0, 0 } }, + // Truth of Forests + { 221, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prospect + { 227, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lay of the Land + { 228, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stealth + { 229, { 0, 0, 0, 0, 0, 0, 0 } }, + // Truth of Mountains + { 238, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arbor Call II + { 290, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lay of the Land II + { 291, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stealth + { 298, { 0, 0, 0, 0, 0, 0, 0 } }, + // Silence + { 307, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paralyze + { 308, { 0, 0, 0, 0, 0, 0, 0 } }, + // Haste + { 309, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slow + { 310, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blaze Spikes + { 311, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ice Spikes + { 312, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock Spikes + { 313, { 0, 0, 0, 0, 0, 0, 0 } }, + // 物理ストンスキン + { 314, { 0, 0, 0, 0, 0, 0, 0 } }, + // 魔法ストンスキン + { 315, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stoneskin + { 316, { 0, 0, 0, 0, 0, 0, 0 } }, + // Foul Breath + { 317, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Breath + { 318, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hoofkick + { 319, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stampede + { 320, { 0, 0, 0, 0, 0, 0, 0 } }, + // Big Horn + { 321, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Throw + { 322, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soil Smear + { 323, { 0, 0, 0, 0, 0, 0, 0 } }, + // Greedy Grab + { 324, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstrike + { 325, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 326, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Web + { 327, { 0, 0, 0, 0, 0, 0, 0 } }, + // Caustic Spray + { 328, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 329, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 330, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wing Cutter + { 331, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloodcurdling Caw + { 332, { 0, 0, 0, 0, 0, 0, 0 } }, + // Yolk Shower + { 333, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reckless Charge + { 334, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bristle + { 335, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bellowing Grunt + { 336, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 337, { 0, 0, 0, 0, 0, 0, 0 } }, + // Combustion + { 338, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deflagration + { 339, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortify + { 340, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hell Slash + { 341, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Drain + { 342, { 0, 0, 0, 0, 0, 0, 0 } }, + // Doom + { 343, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seedvolley + { 344, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sour Sough + { 345, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Sough + { 346, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Tongue + { 347, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slimy Secretion + { 348, { 0, 0, 0, 0, 0, 0, 0 } }, + // Languid Lap + { 349, { 0, 0, 0, 0, 0, 0, 0 } }, + // Microblaster + { 350, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charged Whisker + { 351, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaotic Eye + { 352, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blaster + { 353, { 0, 0, 0, 0, 0, 0, 0 } }, + // Curiosity + { 354, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megablaster + { 355, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Justice + { 356, { 0, 0, 0, 0, 0, 0, 0 } }, + // King's Will + { 357, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blade of Suffering + { 358, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blade of Absolution + { 359, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blade of Repentance + { 360, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flat Blade + { 361, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mind Blast + { 362, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drain Touch + { 363, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 364, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 365, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 366, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 367, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mudslinger + { 368, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Throw + { 369, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombardier + { 370, { 0, 0, 0, 0, 0, 0, 0 } }, + // Infestation + { 371, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spoil + { 372, { 0, 0, 0, 0, 0, 0, 0 } }, + // Somersault Slash + { 373, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nutshell + { 374, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nutshell + { 375, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nutshell + { 376, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scamper + { 377, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Drain + { 378, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultrasonics + { 379, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultrasonics + { 380, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqueous Discharge + { 381, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscous Discharge + { 382, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mucous Discharge + { 383, { 0, 0, 0, 0, 0, 0, 0 } }, + // Agitation + { 384, { 0, 0, 0, 0, 0, 0, 0 } }, + // Agitation + { 385, { 0, 0, 0, 0, 0, 0, 0 } }, + // Agitation + { 386, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snap Jaw + { 387, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrosive Spit + { 388, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrosive Spit + { 389, { 0, 0, 0, 0, 0, 0, 0 } }, + // Proboscis + { 390, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Drain + { 391, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Drain + { 392, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blinding Burst + { 393, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lulling Light + { 394, { 0, 0, 0, 0, 0, 0, 0 } }, + // Limbs of Lead + { 395, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypha Whip + { 396, { 0, 0, 0, 0, 0, 0, 0 } }, + // Queasy Cloud + { 397, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slumber Cloud + { 398, { 0, 0, 0, 0, 0, 0, 0 } }, + // Romp + { 399, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jittering Jig + { 400, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frenetic Flurry + { 401, { 0, 0, 0, 0, 0, 0, 0 } }, + // Haste + { 402, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fortis + { 403, { 0, 0, 0, 0, 0, 0, 0 } }, + // Celeris + { 404, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Toss + { 405, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Toss + { 406, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firecracker Shower + { 407, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Rattle + { 408, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dripping Fang + { 409, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Gaze + { 410, { 0, 0, 0, 0, 0, 0, 0 } }, + // Backflip + { 411, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Chase + { 412, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 413, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombination + { 414, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whipcrack + { 415, { 0, 0, 0, 0, 0, 0, 0 } }, + // Golden Tongue + { 416, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tortoise Stomp + { 417, { 0, 0, 0, 0, 0, 0, 0 } }, + // Harden Shell + { 418, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lateral Slash + { 419, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whetstone + { 420, { 0, 0, 0, 0, 0, 0, 0 } }, + // Smite of Rage + { 421, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Slam + { 422, { 0, 0, 0, 0, 0, 0, 0 } }, + // Coming Storm + { 423, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Gust + { 424, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reflect + { 425, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enfire + { 426, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enblizzard + { 427, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enaero + { 428, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enstone + { 429, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enthunder + { 430, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enwater + { 431, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drain + { 432, { 0, 0, 0, 0, 0, 0, 0 } }, + // Canopy + { 440, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arboreal Storm + { 441, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acorn Bomb + { 442, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Skull + { 443, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Clap + { 444, { 0, 0, 0, 0, 0, 0, 0 } }, + // True Grit + { 445, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Breath + { 446, { 0, 0, 0, 0, 0, 0, 0 } }, + // 登場 + { 447, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stagnant Spray + { 448, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eerie Light + { 449, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peculiar Light + { 450, { 0, 0, 0, 0, 0, 0, 0 } }, + // 攻撃 + { 451, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sear + { 452, { 0, 0, 0, 0, 0, 0, 0 } }, + // Incinerate + { 453, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcan Burst + { 454, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 455, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 456, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crimson Cyclone + { 457, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellfire + { 458, { 0, 0, 0, 0, 0, 0, 0 } }, + // イフリート:角復活 + { 462, { 0, 0, 0, 0, 0, 0, 0 } }, + // Barbaric Surge + { 474, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triple Threat + { 475, { 0, 0, 0, 0, 0, 0, 0 } }, + // Footwork + { 476, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gut Rip + { 477, { 0, 0, 0, 0, 0, 0, 0 } }, + // Backhand Blow + { 478, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rise and Fall + { 479, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plaincracker + { 482, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockslide + { 483, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:詩人技:回避アップ歌 + { 485, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:詩人技:攻撃アップ歌 + { 486, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:詩人技:防御アップ歌 + { 487, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Caress + { 488, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sweet Steel + { 489, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devastate + { 490, { 0, 0, 0, 0, 0, 0, 0 } }, + // Infuriate + { 491, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:巴術技:単体スロウ + { 493, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:巴術技:単体防御DOWN + { 494, { 0, 0, 0, 0, 0, 0, 0 } }, + // Faze + { 495, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sandslinger + { 496, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 497, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Gaze + { 498, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Gaze + { 499, { 0, 0, 0, 0, 0, 0, 0 } }, + // Run Amok + { 500, { 0, 0, 0, 0, 0, 0, 0 } }, + // 50 Needles + { 501, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100 Needles + { 502, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1000 Needles + { 503, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hammer Beak + { 504, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petribreath + { 505, { 0, 0, 0, 0, 0, 0, 0 } }, + // Numbing Breath + { 506, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 507, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slumber Breath + { 508, { 0, 0, 0, 0, 0, 0, 0 } }, + // Howl + { 509, { 0, 0, 0, 0, 0, 0, 0 } }, + // Foul Bite + { 510, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanguine Bite + { 511, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cursed Gaze + { 512, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Gaze + { 513, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 5 Petrify + { 514, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcanize + { 515, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shatter + { 516, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Cyclone + { 517, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinshower + { 518, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinfang + { 519, { 0, 0, 0, 0, 0, 0, 0 } }, + // Head Butt + { 520, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Scream + { 521, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lanolin + { 522, { 0, 0, 0, 0, 0, 0, 0 } }, + // Trap Jaws + { 523, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Spray + { 524, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drill Cannons + { 525, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cermet Drill + { 526, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overcharge + { 527, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Breath + { 528, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sandstorm + { 529, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 530, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthbreak + { 531, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthquake + { 532, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 533, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 534, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Strike + { 535, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disruptor + { 536, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 537, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overheat + { 538, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 539, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Field + { 540, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gnaw + { 541, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seaspray + { 542, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sandspray + { 543, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feeding Frenzy + { 544, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulverizing Pound + { 545, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Rift + { 546, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Rift + { 547, { 0, 0, 0, 0, 0, 0, 0 } }, + // Khoomii + { 548, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonorous Blast + { 549, { 0, 0, 0, 0, 0, 0, 0 } }, + // Encierro + { 550, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soil Coat + { 551, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spine Stream + { 552, { 0, 0, 0, 0, 0, 0, 0 } }, + // Titan's Boon + { 553, { 0, 0, 0, 0, 0, 0, 0 } }, + // Titan's Anger + { 554, { 0, 0, 0, 0, 0, 0, 0 } }, + // Water Cannon + { 555, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydroball + { 556, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lacerate + { 557, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 558, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon Breath + { 559, { 0, 0, 0, 0, 0, 0, 0 } }, + // Granite Rain + { 560, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Kick + { 561, { 0, 0, 0, 0, 0, 0, 0 } }, + // Groundburst + { 562, { 0, 0, 0, 0, 0, 0, 0 } }, + // Toxic Vomit + { 563, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touchdown + { 564, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Shower + { 566, { 0, 0, 0, 0, 0, 0, 0 } }, + // Big Scissors + { 567, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Bath + { 568, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crab Dribble + { 569, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peck + { 570, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fowl Stench + { 571, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rancid Belch + { 572, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flying Sardine + { 573, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regurgitate + { 574, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beatdown + { 575, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inhale + { 576, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moldy Sneeze + { 579, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sickly Sneeze + { 580, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Hole + { 581, { 0, 0, 0, 0, 0, 0, 0 } }, + // Worm Hole + { 582, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Look + { 583, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Breath + { 584, { 0, 0, 0, 0, 0, 0, 0 } }, + // Curse + { 585, { 0, 0, 0, 0, 0, 0, 0 } }, + // Malice + { 586, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pervasion + { 587, { 0, 0, 0, 0, 0, 0, 0 } }, + // Numbing Tendrils + { 588, { 0, 0, 0, 0, 0, 0, 0 } }, + // Irritating Tendrils + { 589, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bleat + { 590, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fleece Butt + { 591, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lullaby + { 592, { 0, 0, 0, 0, 0, 0, 0 } }, + // Floral Bouquet + { 593, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scream + { 594, { 0, 0, 0, 0, 0, 0, 0 } }, + // Catapult + { 595, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bestial Bay + { 596, { 0, 0, 0, 0, 0, 0, 0 } }, + // ドラゴン毒沼:発生ループ + { 597, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Vitae + { 599, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bone Powder + { 600, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beak Snap + { 601, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overtone Shriek + { 602, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shriek + { 603, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bad Breath + { 604, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sweet Breath + { 605, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vine Probe + { 606, { 0, 0, 0, 0, 0, 0, 0 } }, + // Defensive Manuevers + { 607, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shred + { 608, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Hand + { 609, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Grip + { 610, { 0, 0, 0, 0, 0, 0, 0 } }, + // Straight Punch + { 612, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elbow Drop + { 613, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heartburn + { 614, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Smash + { 618, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrupted Tail + { 619, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Cleaver + { 620, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Halo + { 621, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desolation + { 622, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellssend + { 623, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Fate + { 624, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swipe + { 625, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swing + { 626, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swipe + { 627, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swing + { 628, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glower + { 629, { 0, 0, 0, 0, 0, 0, 0 } }, + // Animal Instinct + { 630, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Beholder + { 631, { 0, 0, 0, 0, 0, 0, 0 } }, + // Smoldering Scales + { 632, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gouge + { 633, { 70, 0, 0, 0, 0, 0, 0 } }, + // Shining Topaz + { 634, { 60, 0, 0, 0, 0, 0, 0 } }, + // Curl + { 635, { 0, 0, 0, 0, 0, 0, 0 } }, + // Storm + { 636, { 60, 0, 0, 0, 0, 0, 0 } }, + // Gust + { 637, { 90, 0, 0, 0, 0, 0, 0 } }, + // Backdraft + { 638, { 80, 0, 0, 0, 0, 0, 0 } }, + // Downburst + { 639, { 80, 0, 0, 0, 0, 0, 0 } }, + // Shining Emerald + { 640, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Buster + { 641, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tumult + { 642, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mountain Buster + { 643, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 644, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Throw + { 645, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Throw + { 646, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Cleaver + { 647, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Fate + { 648, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desolation + { 649, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 650, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 651, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 652, { 0, 0, 0, 0, 0, 0, 0 } }, + // Friction + { 656, { 0, 0, 0, 0, 0, 0, 0 } }, + // Downburst + { 657, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wicked Wheel + { 658, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slipstream + { 659, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 660, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Shriek + { 661, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 662, { 0, 0, 0, 0, 0, 0, 0 } }, + // Great Whirlwind + { 663, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Storm + { 664, { 0, 0, 0, 0, 0, 0, 0 } }, + // Featherlance + { 665, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thermal Tumult + { 666, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 667, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Rattle + { 669, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquid Hell + { 670, { 0, 0, 0, 0, 0, 0, 0 } }, + // Twister + { 671, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrupted Tail + { 672, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electromagnetism + { 673, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firestream + { 675, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flame Breath + { 676, { 0, 0, 0, 0, 0, 0, 0 } }, + // self-destruct + { 677, { 0, 0, 0, 0, 0, 0, 0 } }, + // self-destruct + { 678, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mana Cannon + { 679, { 0, 0, 0, 0, 0, 0, 0 } }, + // Obliterate + { 680, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eyes on Me + { 681, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 682, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Breath + { 683, { 0, 0, 0, 0, 0, 0, 0 } }, + // ヒュドラ:首再生 + { 684, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Fire + { 685, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Fire + { 686, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Ice + { 687, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Ice + { 688, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Breath + { 689, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thrashing Star + { 690, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cannibalize + { 691, { 0, 0, 0, 0, 0, 0, 0 } }, + // Colossal Slam + { 692, { 0, 0, 0, 0, 0, 0, 0 } }, + // ヘカトンケイルリーダー:壁殴り + { 693, { 0, 0, 0, 0, 0, 0, 0 } }, + // Immortalize + { 694, { 0, 0, 0, 0, 0, 0, 0 } }, + // ヘカトンケイルメイジ:壁殴り + { 695, { 0, 0, 0, 0, 0, 0, 0 } }, + // Realm Shaker + { 697, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Web + { 698, { 0, 0, 0, 0, 0, 0, 0 } }, + // 蜘蛛:コチュー落下予兆 + { 699, { 0, 0, 0, 0, 0, 0, 0 } }, + // 蜘蛛:コチュー落下 + { 700, { 0, 0, 0, 0, 0, 0, 0 } }, + // Silkscreen + { 701, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 702, { 0, 0, 0, 0, 0, 0, 0 } }, + // 蜘蛛:毒エリア + { 703, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Mist + { 705, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raging Arrow + { 716, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fast Blade + { 717, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shield Bash + { 718, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sentinel + { 719, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overpower + { 720, { 0, 0, 0, 0, 0, 0, 0 } }, + // Featherfoot + { 721, { 0, 0, 0, 0, 0, 0, 0 } }, + // True Thrust + { 722, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wide Volley + { 723, { 0, 0, 0, 0, 0, 0, 0 } }, + // Digest + { 724, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Spread + { 725, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Spread + { 726, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Spread + { 727, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Spread + { 728, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:詩人技:ヘヴィショット + { 729, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pod Burst + { 730, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bile Drain + { 731, { 0, 0, 0, 0, 0, 0, 0 } }, + // Silken Fingers + { 732, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 733, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 734, { 0, 0, 0, 0, 0, 0, 0 } }, + // Miasma Breath + { 735, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Wave + { 736, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lunge + { 737, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Velitation + { 738, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Claw + { 739, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Eye + { 740, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triumphant Roar + { 741, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Revel + { 742, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mudslinger + { 743, { 0, 0, 0, 0, 0, 0, 0 } }, + // Haste + { 744, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Thorn + { 745, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Douse + { 746, { 0, 0, 0, 0, 0, 0, 0 } }, + // Apocalypse + { 749, { 0, 0, 0, 0, 0, 0, 0 } }, + // Evil Eye + { 750, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaos Breath + { 751, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Cloud + { 758, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blighted Gloom + { 759, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cloudscourge + { 760, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crepuscule Blade + { 762, { 0, 0, 0, 0, 0, 0, 0 } }, + // Knout + { 763, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 764, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fulmination + { 765, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock + { 766, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock + { 767, { 0, 0, 0, 0, 0, 0, 0 } }, + // Comet + { 768, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cosmic Shrapnel + { 769, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 770, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charybdis + { 772, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Horn + { 773, { 0, 0, 0, 0, 0, 0, 0 } }, + // Trounce + { 775, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ecliptic Meteor + { 776, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 777, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gungnir + { 778, { 0, 0, 0, 0, 0, 0, 0 } }, + // Darksteel Reins + { 779, { 0, 0, 0, 0, 0, 0, 0 } }, + // Zantetsuken + { 780, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Stone + { 781, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Sorrow + { 782, { 0, 0, 0, 0, 0, 0, 0 } }, + // Valknut + { 783, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Lead + { 784, { 0, 0, 0, 0, 0, 0, 0 } }, + // Einherjar + { 785, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hopelessness + { 786, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Buster + { 787, { 85, 0, 0, 0, 0, 0, 0 } }, + // Mountain Buster + { 788, { 70, 0, 0, 0, 0, 0, 0 } }, + // Earthen Ward + { 789, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 790, { 70, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 791, { 200, 0, 0, 0, 0, 0, 0 } }, + // Wind Blade + { 792, { 100, 0, 0, 0, 0, 0, 0 } }, + // Shockwave + { 793, { 90, 0, 0, 0, 0, 0, 0 } }, + // Aerial Slash + { 794, { 90, 0, 0, 0, 0, 0, 0 } }, + // Contagion + { 795, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 796, { 250, 0, 0, 0, 0, 0, 0 } }, + // Crimson Cyclone + { 797, { 110, 0, 0, 0, 0, 0, 0 } }, + // Burning Strike + { 798, { 120, 0, 0, 0, 0, 0, 0 } }, + // Radiant Shield + { 799, { 50, 0, 0, 0, 0, 0, 0 } }, + // Flaming Crush + { 800, { 110, 0, 0, 0, 0, 0, 0 } }, + // Inferno + { 801, { 200, 0, 0, 0, 0, 0, 0 } }, + // Embrace + { 802, { 0, 0, 0, 0, 0, 300, 0 } }, + // Whispering Dawn + { 803, { 0, 0, 0, 0, 0, 100, 0 } }, + // Fey Covenant + { 804, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fey Illumination + { 805, { 0, 0, 0, 0, 0, 0, 0 } }, + // Embrace + { 806, { 0, 0, 0, 0, 0, 300, 0 } }, + // Silent Dusk + { 807, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fey Glow + { 808, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fey Light + { 809, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fey Caress + { 810, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fey Wind + { 811, { 0, 0, 0, 0, 0, 0, 0 } }, + // Choco Strike + { 817, { 150, 0, 0, 0, 0, 0, 0 } }, + // Choco Guard + { 818, { 0, 0, 0, 0, 0, 0, 0 } }, + // Choco Kick + { 819, { 130, 0, 0, 0, 0, 0, 0 } }, + // Choco Drop + { 820, { 150, 0, 0, 0, 0, 0, 0 } }, + // Choco Blast + { 821, { 170, 0, 0, 0, 0, 0, 0 } }, + // Choco Rush + { 822, { 130, 0, 0, 0, 0, 0, 0 } }, + // Choco Beak + { 823, { 130, 0, 0, 0, 0, 0, 0 } }, + // Choco Slash + { 824, { 150, 0, 0, 0, 0, 0, 0 } }, + // Choco Medica + { 825, { 0, 0, 0, 0, 0, 150, 0 } }, + // Choco Surge + { 826, { 0, 0, 0, 0, 0, 0, 0 } }, + // Choco Cure + { 827, { 0, 0, 0, 0, 0, 300, 0 } }, + // Choco Regen + { 828, { 0, 0, 0, 0, 0, 25, 0 } }, + // Hundred Fists + { 829, { 0, 0, 0, 0, 0, 0, 0 } }, + // 汎用:絶対回避 + { 830, { 0, 0, 0, 0, 0, 0, 0 } }, + // コボルド:大型爆弾 + { 831, { 0, 0, 0, 0, 0, 0, 0 } }, + // コボルド:範囲被ダメージカット + { 832, { 0, 0, 0, 0, 0, 0, 0 } }, + // コボルド:範囲被ダメージカット強 + { 833, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jumping Thrust + { 834, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ambuscade + { 835, { 0, 0, 0, 0, 0, 0, 0 } }, + // Detonation + { 839, { 0, 0, 0, 0, 0, 0, 0 } }, + // Massive Detonation + { 840, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire III + { 854, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 855, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder III + { 856, { 0, 0, 0, 0, 0, 0, 0 } }, + // Phlebotomize + { 858, { 170, 0, 0, 0, 0, 0, 0 } }, + // Ice Spikes + { 859, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Drain + { 860, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drunken Fists + { 861, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mini Detonation + { 862, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acorn Armageddon + { 863, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flaming Crush + { 864, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gutripper + { 865, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heartstopper + { 866, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Call + { 867, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seduce + { 868, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Mist + { 869, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 870, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 871, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 872, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 873, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 874, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 875, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 876, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 877, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 878, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 879, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 880, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 881, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 882, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 883, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 884, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 885, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 886, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 887, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 888, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 889, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 890, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 891, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 892, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 893, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 894, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 895, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 896, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 897, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 898, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 899, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tornado + { 900, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rake + { 901, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 902, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swinge + { 903, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sprout Smack + { 904, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sprout Spin + { 905, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stolon + { 906, { 0, 0, 0, 0, 0, 0, 0 } }, + // Small Claw + { 907, { 0, 0, 0, 0, 0, 0, 0 } }, + // FF11クラブ:泡ブレス + { 908, { 0, 0, 0, 0, 0, 0, 0 } }, + // Screwdriver + { 909, { 0, 0, 0, 0, 0, 0, 0 } }, + // Water Wall + { 910, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Orb + { 911, { 0, 0, 0, 0, 0, 0, 0 } }, + // Condemnation + { 912, { 0, 0, 0, 0, 0, 0, 0 } }, + // Painful Whip + { 913, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gas Shell + { 914, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bearclaw + { 915, { 0, 0, 0, 0, 0, 0, 0 } }, + // Filoplumage + { 916, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gust + { 917, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Sting + { 918, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Sting + { 919, { 0, 0, 0, 0, 0, 0, 0 } }, + // Foreburst + { 920, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wind Shear + { 921, { 0, 0, 0, 0, 0, 0, 0 } }, + // Zephyr Mantle + { 922, { 0, 0, 0, 0, 0, 0, 0 } }, + // Loop + { 923, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slowcall + { 924, { 0, 0, 0, 0, 0, 0, 0 } }, + // FF12ミリアムガード:マップOBJ召喚武器投げ + { 925, { 0, 0, 0, 0, 0, 0, 0 } }, + // FF12ミリアムガード:マップOBJ召喚4つ同時 + { 926, { 0, 0, 0, 0, 0, 0, 0 } }, + // Creeping Darkness + { 927, { 0, 0, 0, 0, 0, 0, 0 } }, + // Darkness + { 928, { 0, 0, 0, 0, 0, 0, 0 } }, + // Verge Line + { 929, { 0, 0, 0, 0, 0, 0, 0 } }, + // Verge Pulse + { 930, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mow + { 931, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triclip + { 932, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frightful Roar + { 933, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Ray + { 934, { 0, 0, 0, 0, 0, 0, 0 } }, + // Caudal Swipe + { 935, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crushing Fangs + { 936, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flatten + { 937, { 0, 0, 0, 0, 0, 0, 0 } }, + // Threaten + { 938, { 0, 0, 0, 0, 0, 0, 0 } }, + // Standing Chine + { 939, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kneeling Snath + { 940, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moldy Phlegm + { 941, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goobbue's Grief + { 942, { 0, 0, 0, 0, 0, 0, 0 } }, + // Amorphic Flail + { 943, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharpened Knife + { 945, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scourge of Nym + { 946, { 0, 0, 0, 0, 0, 0, 0 } }, + // Everybody's Grudge + { 947, { 0, 0, 0, 0, 0, 0, 0 } }, + // Throat Stab + { 948, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inhale + { 950, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eyes on Me + { 951, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ceruleum Pillar + { 953, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firewater + { 954, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulderdash + { 955, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 956, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 957, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desolation + { 958, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 959, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 960, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 962, { 0, 0, 0, 0, 0, 0, 0 } }, + // Barbaric Surge + { 963, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Vitae + { 964, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peck + { 965, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 966, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 967, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunder + { 968, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero + { 969, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone + { 970, { 0, 0, 0, 0, 0, 0, 0 } }, + // Water + { 971, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scathe + { 972, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 973, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Sever + { 974, { 0, 0, 0, 0, 0, 0, 0 } }, + // Neck Rip + { 975, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lap + { 976, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cap Bump + { 977, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bog Bomb + { 978, { 0, 0, 0, 0, 0, 0, 0 } }, + // Effluvium + { 979, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bog Bubble + { 980, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stagnant Spray + { 981, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eerie Light + { 982, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whistle + { 983, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Cyclone + { 984, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinshower + { 985, { 0, 0, 0, 0, 0, 0, 0 } }, + // Screwdriver + { 986, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mind Blast + { 987, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drain Touch + { 988, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Slam + { 989, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bang Toss + { 990, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bravado + { 991, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goblin Attack + { 992, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scorched Earth + { 993, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrify + { 995, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Burst + { 996, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Dome + { 998, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Sever + { 999, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sandslinger + { 1000, { 0, 0, 0, 0, 0, 0, 0 } }, + // Telega + { 1001, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clamor + { 1002, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Tempest + { 1003, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 1004, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overpower + { 1005, { 0, 0, 0, 0, 0, 0, 0 } }, + // Labored Leap + { 1006, { 0, 0, 0, 0, 0, 0, 0 } }, + // Detonator + { 1007, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stoneskin + { 1008, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cure + { 1009, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 1010, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinshower + { 1011, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Smash + { 1012, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 1014, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wing Cutter + { 1015, { 0, 0, 0, 0, 0, 0, 0 } }, + // Water II + { 1016, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collapse + { 1017, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiked Tail + { 1018, { 0, 0, 0, 0, 0, 0, 0 } }, + // Typhoon + { 1019, { 0, 0, 0, 0, 0, 0, 0 } }, + // Typhoon + { 1020, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 1021, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Breath + { 1022, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 1023, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 1024, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rime Wreath + { 1025, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cauterize + { 1026, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touchdown + { 1027, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snowfall + { 1028, { 0, 0, 0, 0, 0, 0, 0 } }, + // 大砲:発射:成功 + { 1029, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 1030, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hundred Lashings + { 1031, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gold Rush + { 1032, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gold Dust + { 1033, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swipe + { 1034, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swipe + { 1035, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bad Breath + { 1036, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vine Probe + { 1037, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burr Burrow + { 1038, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hooked Burrs + { 1039, { 0, 0, 0, 0, 0, 0, 0 } }, + // Germinate + { 1040, { 0, 0, 0, 0, 0, 0, 0 } }, + // ベビーモルボル専用:AA/モルボル菌つき + { 1041, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gold Bile Plume + { 1042, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gold Bile Plume + { 1043, { 0, 0, 0, 0, 0, 0, 0 } }, + // Murder Hole + { 1044, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquefy + { 1045, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquefy + { 1046, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repel + { 1047, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 1048, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstrike + { 1049, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 1050, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bury + { 1051, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1052, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inspirit + { 1056, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vasoconstrictor + { 1057, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 5 Death + { 1059, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oiled Arrow + { 1060, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nascent Flash + { 1061, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nascent End + { 1062, { 0, 0, 0, 0, 0, 0, 0 } }, + // Skydragon Dive + { 1064, { 0, 0, 0, 0, 0, 0, 0 } }, + // Voice of Valor + { 1065, { 0, 0, 0, 0, 0, 0, 0 } }, + // 堅忍の誉れ + { 1066, { 0, 0, 0, 0, 0, 0, 0 } }, + // 無敵の進撃マーチ(仮) + { 1067, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blast Wave + { 1068, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Burst + { 1069, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soothing Song + { 1070, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Release + { 1071, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Look + { 1072, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Drive + { 1073, { 0, 0, 0, 0, 0, 0, 0 } }, + // Imminent Catastrophe + { 1074, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plague Dance + { 1075, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubonic Cloud + { 1076, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Eye + { 1077, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mind Melt + { 1078, { 0, 0, 0, 0, 0, 0, 0 } }, + // Canker + { 1079, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reanimate + { 1080, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sow + { 1081, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Call + { 1082, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire III + { 1083, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 1084, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder III + { 1085, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockslide + { 1086, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plaincracker + { 1087, { 0, 0, 0, 0, 0, 0, 0 } }, + // Obliterate + { 1088, { 0, 0, 0, 0, 0, 0, 0 } }, + // potent blinding potion + { 1089, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moldy Sneeze + { 1090, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubo Burst + { 1091, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteor Strike + { 1092, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulse Wave + { 1093, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spirit Pulse + { 1094, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultimate Focus + { 1095, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultimate Focus + { 1096, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstrike + { 1097, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spirits Without + { 1098, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloodstain + { 1099, { 0, 0, 0, 0, 0, 0, 0 } }, + // Condemnation + { 1100, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 1101, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Breath + { 1102, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Breath + { 1103, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Voice + { 1104, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Voice + { 1105, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Keeper + { 1106, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cacophony + { 1107, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaotic Chorus + { 1108, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mandible Bite + { 1109, { 0, 0, 0, 0, 0, 0, 0 } }, + // Formic Pheromones + { 1110, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Cyclone + { 1111, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bottomless Desert + { 1112, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 1113, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eyes on Me + { 1114, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firewater + { 1115, { 0, 0, 0, 0, 0, 0, 0 } }, + // Star Map + { 1116, { 0, 0, 0, 0, 0, 0, 0 } }, + // Silence + { 1117, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paralyze + { 1118, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slow + { 1119, { 0, 0, 0, 0, 0, 0, 0 } }, + // Water + { 1120, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulderdash + { 1121, { 0, 0, 0, 0, 0, 0, 0 } }, + // Straight Punch + { 1122, { 0, 0, 0, 0, 0, 0, 0 } }, + // Straight Punch + { 1123, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elbow Drop + { 1124, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Smash + { 1125, { 0, 0, 0, 0, 0, 0, 0 } }, + // Telega + { 1126, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ravage + { 1127, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Cannon + { 1128, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Stream + { 1129, { 0, 0, 0, 0, 0, 0, 0 } }, + // Labored Leap + { 1130, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hot Hands + { 1131, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellssend + { 1132, { 0, 0, 0, 0, 0, 0, 0 } }, + // Last Resort + { 1133, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rive + { 1135, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collapse + { 1136, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shield Skewer + { 1137, { 0, 0, 0, 0, 0, 0, 0 } }, + // Winds of Tartarus + { 1138, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gate of Tartarus + { 1139, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shrapnel Shell + { 1140, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drill Shot + { 1141, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firebomb + { 1142, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Missiles + { 1144, { 0, 0, 0, 0, 0, 0, 0 } }, + // Delta Trance + { 1145, { 0, 0, 0, 0, 0, 0, 0 } }, + // Roundhouse + { 1146, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stunning Sweep + { 1147, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aglaia Bite + { 1148, { 0, 0, 0, 0, 0, 0, 0 } }, + // Angry Salamander + { 1149, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aglaia Climb + { 1150, { 0, 0, 0, 0, 0, 0, 0 } }, + // Order to Attack + { 1151, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sideswing + { 1152, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spine Shatter + { 1153, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wheel of Suffering + { 1154, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Uprising + { 1155, { 0, 0, 0, 0, 0, 0, 0 } }, + // Augmented Suffering + { 1156, { 0, 0, 0, 0, 0, 0, 0 } }, + // Augmented Uprising + { 1157, { 0, 0, 0, 0, 0, 0, 0 } }, + // Augmented Shatter + { 1158, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye for an Eye + { 1159, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rouse + { 1160, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Gaze + { 1161, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon's Blood + { 1162, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Meat + { 1163, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spirit Dart + { 1164, { 0, 0, 0, 0, 0, 0, 0 } }, + // Throat Stab + { 1165, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscous Discharge + { 1166, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherial Surge + { 1167, { 0, 0, 0, 0, 0, 0, 0 } }, + // Equalizer + { 1170, { 0, 0, 0, 0, 0, 0, 0 } }, + // Neutralizer + { 1171, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Stream + { 1172, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheroplasm + { 1174, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diffractive Laser + { 1175, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forward Laser + { 1176, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forward Laser + { 1177, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forward Laser + { 1178, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ceruleum Vent + { 1179, { 0, 0, 0, 0, 0, 0, 0 } }, + // Homing Lasers + { 1180, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcan Burst + { 1182, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 1183, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 1184, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 1187, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellfire + { 1189, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tank Purge + { 1190, { 0, 0, 0, 0, 0, 0, 0 } }, + // Assault Cannon + { 1191, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freefire + { 1192, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultima + { 1193, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultima + { 1194, { 0, 0, 0, 0, 0, 0, 0 } }, + // Innocence + { 1195, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heirsbane + { 1196, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hand of the Empire + { 1197, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminus Est + { 1198, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sentence + { 1199, { 0, 0, 0, 0, 0, 0, 0 } }, + // 人型:黒将軍/魔導火フィールド + { 1200, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment + { 1201, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminus Est + { 1202, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment + { 1203, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Cannon + { 1204, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 1205, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 1206, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1207, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hood Swing + { 1208, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whip Back + { 1209, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regorge + { 1210, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steel Scales + { 1211, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disseminate + { 1212, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rupture + { 1213, { 0, 0, 0, 0, 0, 0, 0 } }, + // Syrup + { 1214, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1215, { 0, 0, 0, 0, 0, 0, 0 } }, + // High Voltage + { 1216, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repelling Cannons + { 1217, { 0, 0, 0, 0, 0, 0, 0 } }, + // Allagan Rot + { 1218, { 0, 0, 0, 0, 0, 0, 0 } }, + // Allagan Rot + { 1219, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity Field + { 1220, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballast + { 1221, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballast + { 1222, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballast + { 1223, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Wave + { 1224, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chain Lightning + { 1225, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firestream + { 1226, { 0, 0, 0, 0, 0, 0, 0 } }, + // Piercing Laser + { 1227, { 0, 0, 0, 0, 0, 0, 0 } }, + // Object 199 + { 1229, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leech + { 1230, { 0, 0, 0, 0, 0, 0, 0 } }, + // Headspin + { 1231, { 0, 0, 0, 0, 0, 0, 0 } }, + // Headspin + { 1233, { 0, 0, 0, 0, 0, 0, 0 } }, + // Countershot + { 1235, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity Thrust + { 1236, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pox + { 1237, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotoswipe + { 1238, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bot Retrieval + { 1239, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plummet + { 1240, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Sentence + { 1241, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Sentence + { 1242, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquid Hell + { 1243, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firestorm + { 1244, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firestorm + { 1245, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 1246, { 0, 0, 0, 0, 0, 0, 0 } }, + // Divebomb + { 1247, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheric Profusion + { 1248, { 0, 0, 0, 0, 0, 0, 0 } }, + // Twister + { 1249, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unwoven Will + { 1251, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sustained Blast + { 1252, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 1254, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hatch + { 1255, { 0, 0, 0, 0, 0, 0, 0 } }, + // Caber Toss + { 1257, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spellsword + { 1259, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death's Door + { 1260, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heave + { 1261, { 0, 0, 0, 0, 0, 0, 0 } }, + // Phantom Orb + { 1262, { 0, 0, 0, 0, 0, 0, 0 } }, + // Incinerate + { 1263, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steam Clean + { 1264, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wrecking Ball + { 1265, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inferno + { 1266, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirlwind + { 1267, { 0, 0, 0, 0, 0, 0, 0 } }, + // Umbral Vise + { 1268, { 0, 0, 0, 0, 0, 0, 0 } }, + // Skyward Swing + { 1269, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunder II + { 1270, { 0, 0, 0, 0, 0, 0, 0 } }, + // Army of One + { 1271, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1272, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1273, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1274, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 1275, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 1277, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triumvirate + { 1278, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mean Thrash + { 1279, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fear Itself + { 1280, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bravery + { 1281, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scorpion's Sting + { 1282, { 0, 0, 0, 0, 0, 0, 0 } }, + // Static Charge + { 1283, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gelid Charge + { 1284, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Voice + { 1285, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overclock + { 1286, { 0, 0, 0, 0, 0, 0, 0 } }, + // Light Succor + { 1287, { 0, 0, 0, 0, 0, 0, 0 } }, + // Benight + { 1288, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity Force + { 1289, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stop + { 1290, { 0, 0, 0, 0, 0, 0, 0 } }, + // Backstep + { 1291, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sidestep + { 1292, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sidestep + { 1293, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Shadow + { 1294, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pain Flare + { 1295, { 0, 0, 0, 0, 0, 0, 0 } }, + // Telega + { 1296, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Tendrils + { 1297, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Tendrils + { 1298, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rive + { 1299, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tackle + { 1300, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pluto + { 1301, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regeneration + { 1302, { 0, 0, 0, 0, 0, 0, 0 } }, + // Duplicity + { 1303, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard III + { 1304, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 1305, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summon I + { 1306, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summon II + { 1307, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 1308, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiked Tail + { 1309, { 0, 0, 0, 0, 0, 0, 0 } }, + // Web of Lightning + { 1311, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stoneskin + { 1312, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inner Beastman + { 1313, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aggravate + { 1314, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chain Lightning + { 1315, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ring of Frost + { 1316, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Traders' Spurn + { 1317, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jump + { 1318, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Curse + { 1319, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Curse + { 1320, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Curse + { 1321, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Shield + { 1323, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inferno + { 1324, { 0, 0, 0, 0, 0, 0, 0 } }, + // Embrace + { 1325, { 0, 0, 0, 0, 0, 0, 0 } }, + // Everybody's Grudge + { 1327, { 0, 0, 0, 0, 0, 0, 0 } }, + // Somebody's Grudge + { 1328, { 0, 0, 0, 0, 0, 0, 0 } }, + // Siren Song + { 1329, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hell Slash + { 1330, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone + { 1331, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 1332, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Clap + { 1333, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shockwave + { 1334, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 1335, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Breath + { 1336, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Breath + { 1337, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Voice + { 1338, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Keeper + { 1339, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cacophony + { 1340, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elemental Angst + { 1341, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 1342, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballast + { 1343, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1344, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1346, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1347, { 0, 0, 0, 0, 0, 0, 0 } }, + // Last Supper + { 1348, { 0, 0, 0, 0, 0, 0, 0 } }, + // Armageddon + { 1349, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1350, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1352, { 0, 0, 0, 0, 0, 0, 0 } }, + // Incinerate + { 1353, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcan Burst + { 1354, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1355, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 1356, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellfire + { 1357, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1358, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 1359, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Buster + { 1360, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tumult + { 1361, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1362, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1363, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 1364, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 1365, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 1366, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 1367, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Strike + { 1368, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disruptor + { 1369, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1370, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overheat + { 1371, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 1372, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Field + { 1373, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Orb + { 1374, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 1375, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Night + { 1376, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Flare + { 1377, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dirty Cannons + { 1378, { 0, 0, 0, 0, 0, 0, 0 } }, + // Friction + { 1379, { 0, 0, 0, 0, 0, 0, 0 } }, + // Downburst + { 1380, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wicked Wheel + { 1381, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slipstream + { 1382, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 1383, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Shriek + { 1384, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 1385, { 0, 0, 0, 0, 0, 0, 0 } }, + // Great Whirlwind + { 1386, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Storm + { 1387, { 0, 0, 0, 0, 0, 0, 0 } }, + // Featherlance + { 1388, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thermal Tumult + { 1389, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 1390, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 1391, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scourge of Nym + { 1392, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 1393, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 1394, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 1395, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunder + { 1396, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero + { 1397, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone + { 1398, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1399, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1400, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1401, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1402, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 1403, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crimson Cyclone + { 1404, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellfire + { 1405, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1406, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 1407, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 1408, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 1409, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Storm + { 1410, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 1411, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1412, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mow + { 1413, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triclip + { 1414, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1415, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Skull + { 1416, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Clap + { 1417, { 0, 0, 0, 0, 0, 0, 0 } }, + // True Grit + { 1418, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockslide + { 1419, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1420, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1421, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1422, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1423, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1424, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 1425, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1426, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 1427, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Strike + { 1428, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Stream + { 1429, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Cannon + { 1430, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Stream + { 1431, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Cannon + { 1432, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drill Cannons + { 1433, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cermet Drill + { 1434, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overcharge + { 1435, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Stream + { 1438, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Cannon + { 1439, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard III + { 1440, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 1441, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Voice + { 1442, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blast Wave + { 1443, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Vitae + { 1444, { 0, 0, 0, 0, 0, 0, 0 } }, + // Obliterate + { 1445, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Clap + { 1446, { 0, 0, 0, 0, 0, 0, 0 } }, + // High Voltage + { 1447, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repelling Cannons + { 1448, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chain Lightning + { 1449, { 0, 0, 0, 0, 0, 0, 0 } }, + // Piercing Laser + { 1450, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Hand + { 1455, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquid Hell + { 1457, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Sentence + { 1458, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1459, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1460, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1461, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Buster + { 1463, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mountain Buster + { 1464, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tumult + { 1465, { 0, 0, 0, 0, 0, 0, 0 } }, + // Upheaval + { 1466, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 1467, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 1468, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1469, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1470, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1471, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 1472, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 1473, { 0, 0, 0, 0, 0, 0, 0 } }, + // Upheaval + { 1474, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 1475, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tumult + { 1476, { 0, 0, 0, 0, 0, 0, 0 } }, + // Granite Sepulchre + { 1477, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1482, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathly Verse + { 1483, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feral Lunge + { 1484, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lunatic Voice + { 1485, { 0, 0, 0, 0, 0, 0, 0 } }, + // Song of Torment + { 1486, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathly Cadenza + { 1487, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1488, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flying Frenzy + { 1489, { 0, 0, 0, 0, 0, 0, 0 } }, + // Caustic Vomit + { 1490, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath Wing + { 1491, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotoswipe + { 1492, { 0, 0, 0, 0, 0, 0, 0 } }, + // Climb + { 1493, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonic Storm + { 1494, { 0, 0, 0, 0, 0, 0, 0 } }, + // Alight + { 1495, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1496, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonic Boom + { 1497, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrupting Shot + { 1498, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrupting Spit + { 1499, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrupting Burst + { 1500, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crystalline Shot + { 1501, { 0, 0, 0, 0, 0, 0, 0 } }, + // Giga Slash + { 1502, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscous Aetheroplasm + { 1503, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ceruleum Vent + { 1504, { 0, 0, 0, 0, 0, 0, 0 } }, + // Homing Lasers + { 1505, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diffractive Laser + { 1506, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1507, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1508, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1509, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheroplasm + { 1510, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheric Boom + { 1511, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheroplasm + { 1512, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fusion Burst + { 1513, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tank Purge + { 1514, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freefire + { 1515, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultima + { 1516, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 1517, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcan Burst + { 1518, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Storm + { 1519, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 1520, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 1521, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1522, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1523, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1524, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crimson Cyclone + { 1525, { 0, 0, 0, 0, 0, 0, 0 } }, + // Assault Cannon + { 1526, { 0, 0, 0, 0, 0, 0, 0 } }, + // Piercing Thrust + { 1527, { 0, 0, 0, 0, 0, 0, 0 } }, + // Incinerate + { 1528, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inferno Howl + { 1529, { 0, 0, 0, 0, 0, 0, 0 } }, + // Searing Wind + { 1530, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcan Burst + { 1531, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crimson Cyclone + { 1532, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1533, { 0, 0, 0, 0, 0, 0, 0 } }, + // Infernal Fetters + { 1534, { 0, 0, 0, 0, 0, 0, 0 } }, + // Infernal Surge + { 1535, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hellfire + { 1536, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Throes + { 1539, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crystalline Shower + { 1542, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath Wing + { 1543, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brood Rage + { 1544, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hatch + { 1545, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscous Aetheroplasm + { 1546, { 0, 0, 0, 0, 0, 0, 0 } }, + // Predatory Swoop + { 1547, { 0, 0, 0, 0, 0, 0, 0 } }, + // Friction + { 1548, { 0, 0, 0, 0, 0, 0, 0 } }, + // Friction + { 1549, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feather Rain + { 1550, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thermal Tumult + { 1551, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wicked Wheel + { 1552, { 0, 0, 0, 0, 0, 0, 0 } }, + // Downburst + { 1553, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aerial Blast + { 1554, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gigastorm + { 1555, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cyclone + { 1556, { 0, 0, 0, 0, 0, 0, 0 } }, + // Super Cyclone + { 1557, { 0, 0, 0, 0, 0, 0, 0 } }, + // Testudo + { 1558, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glory Slash + { 1559, { 170, 0, 0, 0, 0, 0, 0 } }, + // Mythril Tempest + { 1560, { 170, 0, 0, 0, 0, 0, 0 } }, + // Thrill of War + { 1561, { 0, 0, 0, 0, 0, 0, 0 } }, + // Full Swing + { 1562, { 150, 0, 0, 0, 0, 0, 0 } }, + // Axe Kick + { 1563, { 170, 0, 0, 0, 0, 0, 0 } }, + // Somersault + { 1564, { 180, 0, 0, 0, 0, 0, 0 } }, + // Fetter Ward + { 1565, { 0, 0, 0, 0, 0, 0, 0 } }, + // Impulse Rush + { 1566, { 240, 0, 0, 0, 0, 0, 0 } }, + // Skewer + { 1567, { 220, 0, 0, 0, 0, 0, 0 } }, + // Manasong + { 1568, { 0, 0, 0, 0, 0, 0, 0 } }, + // Farshot + { 1569, { 170, 0, 0, 0, 0, 0, 0 } }, + // Blast Shot + { 1570, { 150, 0, 0, 0, 0, 0, 0 } }, + // Sacred Prism + { 1571, { 0, 0, 0, 0, 0, 70, 0 } }, + // Divine Breath + { 1572, { 0, 0, 0, 0, 0, 0, 0 } }, + // Night Wing + { 1573, { 0, 0, 0, 0, 0, 0, 0 } }, + // Phantom Dart + { 1574, { 150, 0, 0, 0, 0, 0, 0 } }, + // Misty Veil + { 1575, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wither + { 1576, { 170, 0, 0, 0, 0, 0, 0 } }, + // Aura Blast + { 1577, { 150, 0, 0, 0, 0, 0, 0 } }, + // Focalization + { 1578, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weapon Throw + { 1579, { 50, 0, 0, 0, 0, 0, 0 } }, + // Enliven + { 1580, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheric Burst + { 1581, { 170, 0, 0, 0, 0, 0, 0 } }, + // Equanimity + { 1582, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mana Draw + { 1583, { 0, 0, 0, 0, 0, 0, 0 } }, + // Purify + { 1584, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attunement + { 1585, { 0, 0, 0, 0, 0, 0, 0 } }, + // Detect + { 1586, { 0, 0, 0, 0, 0, 0, 0 } }, + // Malmsight + { 1587, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overwhelm + { 1588, { 150, 0, 0, 0, 0, 0, 0 } }, + // Ill Wind + { 1589, { 170, 0, 0, 0, 0, 0, 0 } }, + // Recouperate + { 1590, { 0, 0, 0, 0, 0, 0, 0 } }, + // Between the Eyes + { 1591, { 150, 0, 0, 0, 0, 0, 0 } }, + // Stun Gun + { 1592, { 150, 0, 0, 0, 0, 0, 0 } }, + // Report + { 1593, { 0, 0, 0, 0, 0, 0, 0 } }, + // Retrogradation + { 1594, { 80, 0, 0, 0, 0, 100, 0 } }, + // Tar Pit + { 1595, { 150, 0, 0, 0, 0, 0, 0 } }, + // Carnal Chill + { 1596, { 150, 0, 0, 0, 0, 0, 0 } }, + // Push Back + { 1597, { 150, 0, 0, 0, 0, 0, 0 } }, + // Blood Sword + { 1610, { 0, 0, 0, 0, 0, 0, 0 } }, + // 透明:合体引き寄せ/ハウケタハード + { 1611, { 0, 0, 0, 0, 0, 0, 0 } }, + // Danse Macabre + { 1612, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-kuponze Swipe + { 1613, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle-Go-Round + { 1614, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Mogshield + { 1615, { 0, 0, 0, 0, 0, 0, 0 } }, + // Come at Me Kupo + { 1616, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Flare + { 1617, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Meteor + { 1618, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Cure + { 1619, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Holy + { 1620, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle Eye Shot + { 1621, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mograin of Death + { 1622, { 0, 0, 0, 0, 0, 0, 0 } }, + // March of the Moogles + { 1623, { 0, 0, 0, 0, 0, 0, 0 } }, + // March of the Moogles + { 1624, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle Thrust + { 1625, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1000-kuponze Charge + { 1626, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mog Creation + { 1627, { 0, 0, 0, 0, 0, 0, 0 } }, + // Memento Moogle + { 1628, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle-Go-Round + { 1629, { 0, 0, 0, 0, 0, 0, 0 } }, + // Come at Me Kupo + { 1630, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Meteor + { 1631, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Holy + { 1632, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mograin of Death + { 1633, { 0, 0, 0, 0, 0, 0, 0 } }, + // March of the Moogles + { 1634, { 0, 0, 0, 0, 0, 0, 0 } }, + // Guardian Aura + { 1638, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charge Up + { 1639, { 0, 0, 0, 0, 0, 0, 0 } }, + // Critical Swing + { 1640, { 0, 0, 0, 0, 0, 0, 0 } }, + // Critical Sweep + { 1641, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulverizing Punch + { 1642, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thwack + { 1643, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzaga V + { 1644, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire V + { 1645, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity II + { 1646, { 0, 0, 0, 0, 0, 0, 0 } }, + // Play Rough + { 1647, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tornado II + { 1648, { 0, 0, 0, 0, 0, 0, 0 } }, + // Warp + { 1649, { 0, 0, 0, 0, 0, 0, 0 } }, + // タイタン・エギ:タイタンハード/AA + { 1651, { 0, 0, 0, 0, 0, 0, 0 } }, + // Suction + { 1653, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 1654, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gas Shell + { 1655, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flash Flood + { 1656, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Shower + { 1657, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 1658, { 0, 0, 0, 0, 0, 0, 0 } }, + // Putrid Cloud + { 1659, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peel + { 1660, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Touch + { 1661, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paralyze III + { 1662, { 0, 0, 0, 0, 0, 0, 0 } }, + // Banish + { 1663, { 0, 0, 0, 0, 0, 0, 0 } }, + // Banish III + { 1664, { 0, 0, 0, 0, 0, 0, 0 } }, + // Banish + { 1665, { 0, 0, 0, 0, 0, 0, 0 } }, + // Divide + { 1666, { 0, 0, 0, 0, 0, 0, 0 } }, + // Screwdriver + { 1667, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aether Detonation + { 1668, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aether Detonation + { 1669, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 1670, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Storm + { 1671, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero Blast + { 1672, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whipcrack + { 1673, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombination + { 1674, { 0, 0, 0, 0, 0, 0, 0 } }, + // Zombify + { 1675, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1676, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1677, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire II + { 1678, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 1679, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 1680, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockslide + { 1681, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plaincracker + { 1682, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Heart + { 1683, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 1684, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 1685, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mercurial Strike + { 1686, { 0, 0, 0, 0, 0, 0, 0 } }, + // Power Attack + { 1687, { 0, 0, 0, 0, 0, 0, 0 } }, + // Impact Roar + { 1688, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 1689, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fast Boulder + { 1690, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1691, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dust Explosion + { 1692, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 1693, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard III + { 1696, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard + { 1697, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icefall + { 1698, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nether Burst + { 1699, { 0, 0, 0, 0, 0, 0, 0 } }, + // アークデーモン:AA + { 1700, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Swing + { 1701, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Transfixion + { 1702, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Charge + { 1703, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tenebrous Missile + { 1704, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prime Guillotine + { 1705, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Charge + { 1706, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Scythe + { 1707, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dismember + { 1708, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Miasma + { 1709, { 0, 0, 0, 0, 0, 0, 0 } }, + // Danse Macabre + { 1710, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hell Slash + { 1711, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mow + { 1712, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frightful Roar + { 1713, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 1714, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder III + { 1715, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Mist + { 1716, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire IV + { 1717, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder IV + { 1718, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beguiling Mist + { 1719, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Rain + { 1720, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Rain + { 1721, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Rain + { 1722, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 1723, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Mist + { 1724, { 0, 0, 0, 0, 0, 0, 0 } }, + // Great Divide + { 1725, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimension Zero + { 1726, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Flare + { 1730, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Flare + { 1731, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quake III + { 1732, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Slash + { 1733, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Slash + { 1734, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megiddo Flame + { 1735, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Slash + { 1736, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Slash + { 1737, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Slash + { 1738, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Slash + { 1739, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Slash + { 1740, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megiddo Flame + { 1741, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megiddo Flame + { 1742, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megiddo Flame + { 1743, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megiddo Flame + { 1744, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quake + { 1745, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hundred Cuts + { 1746, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hundred Cuts + { 1747, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Flare + { 1748, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire + { 1749, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 1750, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charybdis + { 1751, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charybdis + { 1752, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Horn + { 1753, { 0, 0, 0, 0, 0, 0, 0 } }, + // Trounce + { 1755, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ecliptic Meteor + { 1756, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aim + { 1757, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flame Burst + { 1758, { 0, 0, 0, 0, 0, 0, 0 } }, + // Astral Light + { 1759, { 0, 0, 0, 0, 0, 0, 0 } }, + // Demonize + { 1760, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 1761, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fatal Allure + { 1762, { 0, 0, 0, 0, 0, 0, 0 } }, + // Featherlance + { 1763, { 0, 0, 0, 0, 0, 0, 0 } }, + // Condemnation + { 1770, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrupted Tail + { 1771, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Cleaver + { 1772, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Halo + { 1773, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desolation + { 1774, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grim Fate + { 1775, { 0, 0, 0, 0, 0, 0, 0 } }, + // Great Whirlwind + { 1777, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moonfall Slash + { 1780, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dust Diffusion + { 1781, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Flame + { 1783, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Spore + { 1784, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 1785, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Strike + { 1786, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1787, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 1788, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 1789, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Breath + { 1790, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Look + { 1791, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Drive + { 1792, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Buster + { 1794, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tumult + { 1795, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1796, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock Throw + { 1797, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landslide + { 1798, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 1799, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Fury + { 1800, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1801, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscous Aetheroplasm + { 1802, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ceruleum Vent + { 1803, { 0, 0, 0, 0, 0, 0, 0 } }, + // Homing Lasers + { 1804, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diffractive Laser + { 1805, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1806, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1807, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 1808, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheroplasm + { 1809, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheric Boom + { 1810, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheroplasm + { 1811, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fusion Burst + { 1812, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tank Purge + { 1813, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freefire + { 1814, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultima + { 1815, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mistral Song + { 1816, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vulcan Burst + { 1817, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Storm + { 1818, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geocrush + { 1819, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiant Plume + { 1820, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weight of the Land + { 1821, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1822, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eruption + { 1823, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crimson Cyclone + { 1824, { 0, 0, 0, 0, 0, 0, 0 } }, + // Assault Cannon + { 1825, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscous Aetheroplasm + { 1826, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 5 Petrify + { 1828, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 1829, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard + { 1830, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sweet Steel + { 1831, { 0, 0, 0, 0, 0, 0, 0 } }, + // Detonator + { 1832, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Mist + { 1833, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Caress + { 1834, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthbreak + { 1835, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bravery + { 1836, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthquake + { 1837, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bottomless Desert + { 1838, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthbreak + { 1839, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Cyclone + { 1840, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 1841, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder III + { 1842, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Drive + { 1844, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attractant + { 1845, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devour + { 1846, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dirty Sneeze + { 1847, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beatdown + { 1848, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spore Cloud + { 1849, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 1850, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spore Burst + { 1851, { 0, 0, 0, 0, 0, 0, 0 } }, + // Purulent Ooze + { 1852, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 1853, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inhale + { 1854, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Breath + { 1855, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Whip + { 1856, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Darts + { 1857, { 0, 0, 0, 0, 0, 0, 0 } }, + // Waterspout + { 1858, { 0, 0, 0, 0, 0, 0, 0 } }, + // Waterspout + { 1859, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 1860, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 1861, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stun Shot + { 1862, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bilgestorm + { 1863, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydro Shot + { 1864, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dreadstorm + { 1865, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dreadwash + { 1866, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Roar + { 1867, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Roar + { 1868, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 1869, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aether Draw + { 1870, { 0, 0, 0, 0, 0, 0, 0 } }, + // Splash + { 1871, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Wave + { 1872, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Fall + { 1873, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ruin + { 1874, { 0, 0, 0, 0, 0, 0, 0 } }, + // Darkness + { 1875, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 1876, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 1877, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 1878, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 1879, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diabolic Curse + { 1880, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pavor Nocturnus + { 1881, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 1882, { 0, 0, 0, 0, 0, 0, 0 } }, + // Camisado + { 1883, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nightmare + { 1884, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scurvy + { 1885, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathtrap + { 1886, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unlock + { 1887, { 0, 0, 0, 0, 0, 0, 0 } }, + // 透明:悪魔の扉:吸い込み + { 1888, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diabolic Curse + { 1889, { 0, 0, 0, 0, 0, 0, 0 } }, + // Graviball + { 1890, { 0, 0, 0, 0, 0, 0, 0 } }, + // Critical Gravity + { 1891, { 0, 0, 0, 0, 0, 0, 0 } }, + // Noctoshield + { 1892, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ruinous Omen + { 1893, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultimate Terror + { 1894, { 0, 0, 0, 0, 0, 0, 0 } }, + // Night Terror + { 1895, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Flakes + { 1896, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exuviation + { 1897, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Dust + { 1898, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swoop + { 1899, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stormwind + { 1900, { 0, 0, 0, 0, 0, 0, 0 } }, + // Climb + { 1901, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eerie Soundwave + { 1902, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plague Swipe + { 1903, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrosive Gale + { 1904, { 0, 0, 0, 0, 0, 0, 0 } }, + // Erosion Darts + { 1905, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cannonball + { 1906, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 1907, { 0, 0, 0, 0, 0, 0, 0 } }, + // Claw + { 1908, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bad-mouth + { 1909, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kick and Scream + { 1910, { 0, 0, 0, 0, 0, 0, 0 } }, + // Venom + { 1911, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cursed Sphere + { 1912, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Ray + { 1913, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hex Eye + { 1914, { 0, 0, 0, 0, 0, 0, 0 } }, + // Loom + { 1915, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paralyze III + { 1916, { 0, 0, 0, 0, 0, 0, 0 } }, + // Briny Veil + { 1917, { 0, 0, 0, 0, 0, 0, 0 } }, + // Career + { 1918, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glider Ram + { 1919, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goblin Rush + { 1920, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Toss + { 1921, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sniper Shot + { 1922, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1923, { 0, 0, 0, 0, 0, 0, 0 } }, + // Needle Burst + { 1924, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ceruleum Explosion + { 1927, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glider Ram + { 1929, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 1930, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flamethrower + { 1931, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombardment + { 1932, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 1935, { 0, 0, 0, 0, 0, 0, 0 } }, + // Big Burst + { 1936, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cermet Drill + { 1939, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drill Cannons + { 1940, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overcharge + { 1941, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hit and Run + { 1942, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 1943, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thorn Whip + { 1944, { 0, 0, 0, 0, 0, 0, 0 } }, + // Floral Trap + { 1945, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devour + { 1946, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 1947, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscid Emission + { 1948, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blighted Bouquet + { 1949, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 1950, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 1951, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swarm + { 1952, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Rain + { 1953, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Stench + { 1954, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Sting + { 1955, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminal Sting + { 1956, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Spray + { 1957, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Cloud + { 1958, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Ooze + { 1959, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 1984, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 1985, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1000-kuponze Swipe + { 2050, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle-Go-Round + { 2051, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stifling Mogdark + { 2052, { 0, 0, 0, 0, 0, 0, 0 } }, + // Come at Me Kupo + { 2053, { 0, 0, 0, 0, 0, 0, 0 } }, + // Searing Moglight + { 2054, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Flare + { 2055, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Meteor + { 2056, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mog Malison + { 2057, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Cure + { 2058, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Holy + { 2059, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mog Anthem + { 2060, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle Eye Shot + { 2061, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mograin of Death + { 2062, { 0, 0, 0, 0, 0, 0, 0 } }, + // Delta Mog Attack + { 2063, { 0, 0, 0, 0, 0, 0, 0 } }, + // Delta Mog Attack + { 2064, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hair Splitter + { 2065, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluff Ruffler + { 2066, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1000-kuponze Charge + { 2067, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mog Creation + { 2068, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mooglesse Oblige + { 2069, { 0, 0, 0, 0, 0, 0, 0 } }, + // To Arms + { 2070, { 0, 0, 0, 0, 0, 0, 0 } }, + // Royal Rouse + { 2071, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mog Meteor + { 2072, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scission Thrust + { 2073, { 0, 0, 0, 0, 0, 0, 0 } }, + // Microwall + { 2074, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1000-tonze Swing + { 2075, { 0, 0, 0, 0, 0, 0, 0 } }, + // Predatorial Instinct + { 2076, { 0, 0, 0, 0, 0, 0, 0 } }, + // Piercing Glower + { 2077, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swipe + { 2078, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swipe + { 2079, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swing + { 2080, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Beholder + { 2081, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2082, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 2083, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 2084, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 2085, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Breath + { 2086, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Whip + { 2087, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Darts + { 2088, { 0, 0, 0, 0, 0, 0, 0 } }, + // Waterspout + { 2089, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 2090, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Roar + { 2091, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 2092, { 0, 0, 0, 0, 0, 0, 0 } }, + // Splash + { 2093, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Wave + { 2094, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Fall + { 2095, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Cannon + { 2096, { 0, 0, 0, 0, 0, 0, 0 } }, + // Briny Veil + { 2097, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 2098, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vivifying Gleam + { 2100, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2106, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirlwind Slash + { 2108, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirlwind Slash + { 2109, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter End + { 2110, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter End + { 2111, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pradamante + { 2112, { 0, 0, 0, 0, 0, 0, 0 } }, + // Giga Jump + { 2113, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frog Song + { 2114, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tiny Song + { 2115, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rocket Punch + { 2116, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grovel + { 2117, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wind Slash + { 2118, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 2119, { 0, 0, 0, 0, 0, 0, 0 } }, + // Memento Moogle + { 2121, { 0, 0, 0, 0, 0, 0, 0 } }, + // Divine Embrace + { 2123, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Garden + { 2124, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cross Lance + { 2125, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cross Lance + { 2126, { 0, 0, 0, 0, 0, 0, 0 } }, + // Standstill + { 2127, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thal's Fury + { 2128, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thal's Judgment + { 2129, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 2130, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Breath + { 2131, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 2132, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Hold + { 2133, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 2134, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Spark + { 2137, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrocute + { 2138, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombardment + { 2140, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seedvolley + { 2142, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 2143, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Voice + { 2144, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Voice + { 2145, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hood Swing + { 2146, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whip Back + { 2147, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regorge + { 2148, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gust + { 2149, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shot + { 2150, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2151, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulse Transmission + { 2152, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombardment + { 2154, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mold Burst + { 2155, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pradamante + { 2159, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 2160, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bahamut's Claw + { 2161, { 0, 0, 0, 0, 0, 0, 0 } }, + // リヴァイアサン:魔法反撃 + { 2162, { 0, 0, 0, 0, 0, 0, 0 } }, + // リヴァイアサン:遠隔反撃 + { 2163, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mantle of the Whorl + { 2164, { 0, 0, 0, 0, 0, 0, 0 } }, + // Veil of the Whorl + { 2165, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mog Meteor + { 2166, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 2168, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2170, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire II + { 2175, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunder III + { 2176, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oversurge + { 2177, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire Dust + { 2178, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pebble + { 2179, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goblin Rush + { 2181, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Toss + { 2182, { 0, 0, 0, 0, 0, 0, 0 } }, + // Savage Swipe + { 2183, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Burst + { 2184, { 0, 0, 0, 0, 0, 0, 0 } }, + // Delta Mog Attack + { 2185, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 2186, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 2187, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overpower + { 2188, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glider Ram + { 2189, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sniper Shot + { 2190, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thal's Fury + { 2191, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2192, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Breath + { 2193, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Whip + { 2194, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Darts + { 2195, { 0, 0, 0, 0, 0, 0, 0 } }, + // Waterspout + { 2196, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 2197, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Dive + { 2198, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Roar + { 2199, { 0, 0, 0, 0, 0, 0, 0 } }, + // Splash + { 2200, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tidal Wave + { 2201, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Fall + { 2202, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dread Tide + { 2203, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripe Banana + { 2204, { 0, 0, 0, 0, 0, 0, 0 } }, + // Browbeat + { 2205, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stool Pelt + { 2206, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chest Thump + { 2207, { 0, 0, 0, 0, 0, 0, 0 } }, + // Streak + { 2208, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 2209, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 2210, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stool Pelt + { 2211, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ink Blot + { 2212, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ink Blot + { 2213, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ruin + { 2214, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seize + { 2215, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hurl + { 2216, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seawater Cannon + { 2217, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 2218, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 2219, { 0, 0, 0, 0, 0, 0, 0 } }, + // World's End + { 2220, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 2221, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Drive + { 2222, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iceball + { 2223, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon's Blood + { 2224, { 0, 0, 0, 0, 0, 0, 0 } }, + // Strident Scream + { 2225, { 0, 0, 0, 0, 0, 0, 0 } }, + // 透明:ギミック汎用:引き寄せ + { 2226, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jaws of Death + { 2227, { 0, 0, 0, 0, 0, 0, 0 } }, + // Upwell + { 2228, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spittle + { 2229, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spittle Splatter + { 2230, { 0, 0, 0, 0, 0, 0, 0 } }, + // Riptide + { 2231, { 0, 0, 0, 0, 0, 0, 0 } }, + // Watery Grave + { 2232, { 0, 0, 0, 0, 0, 0, 0 } }, + // Watery Grave + { 2233, { 0, 0, 0, 0, 0, 0, 0 } }, + // Waterwhirl + { 2234, { 0, 0, 0, 0, 0, 0, 0 } }, + // Surface Breach + { 2235, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirlpool + { 2236, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripe Banana + { 2239, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Edge + { 2240, { 150, 0, 0, 0, 0, 0, 0 } }, + // Shade Shift + { 2241, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gust Slash + { 2242, { 100, 200, 0, 0, 0, 0, 0 } }, + // Kiss of the Wasp + { 2243, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mutilate + { 2244, { 60, 0, 0, 0, 0, 0, 0 } }, + // Hide + { 2245, { 0, 0, 0, 0, 0, 0, 0 } }, + // Assassinate + { 2246, { 200, 0, 0, 0, 0, 0, 0 } }, + // Throwing Dagger + { 2247, { 120, 0, 0, 0, 0, 0, 0 } }, + // Mug + { 2248, { 140, 0, 0, 0, 0, 0, 0 } }, + // Goad + { 2249, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sneak Attack + { 2250, { 0, 0, 0, 500, 0, 0, 0 } }, + // Dancing Edge + { 2251, { 100, 260, 0, 0, 0, 0, 0 } }, + // Kiss of the Viper + { 2252, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hide + { 2253, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Blossom + { 2254, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aeolian Edge + { 2255, { 100, 240, 0, 0, 0, 0, 0 } }, + // Jugulate + { 2256, { 80, 0, 0, 0, 0, 0, 0 } }, + // Shadow Fang + { 2257, { 100, 200, 0, 0, 0, 0, 0 } }, + // Trick Attack + { 2258, { 240, 0, 0, 0, 0, 0, 0 } }, + // Ten + { 2259, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ninjutsu + { 2260, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chi + { 2261, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shukuchi + { 2262, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jin + { 2263, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kassatsu + { 2264, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fuma Shuriken + { 2265, { 240, 0, 0, 0, 0, 0, 0 } }, + // Katon + { 2266, { 180, 0, 0, 0, 0, 0, 0 } }, + // Raiton + { 2267, { 360, 0, 0, 0, 0, 0, 0 } }, + // Hyoton + { 2268, { 140, 0, 0, 0, 0, 0, 0 } }, + // Huton + { 2269, { 0, 0, 0, 0, 0, 0, 0 } }, + // Doton + { 2270, { 30, 0, 0, 0, 0, 0, 0 } }, + // Suiton + { 2271, { 180, 0, 0, 0, 0, 0, 0 } }, + // Rabbit Medium + { 2272, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rending Snath + { 2273, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock Strike + { 2274, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderspark + { 2275, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2276, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2277, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2278, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Bolt + { 2279, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaotic Strike + { 2280, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rolling Thunder + { 2281, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 2282, { 0, 0, 0, 0, 0, 0, 0 } }, + // Increased Sentence + { 2283, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock Strike + { 2284, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderspark + { 2285, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2286, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2287, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2288, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Bolt + { 2289, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaotic Strike + { 2290, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rolling Thunder + { 2291, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 2292, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rake + { 2293, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 2294, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swinge + { 2295, { 0, 0, 0, 0, 0, 0, 0 } }, + // Agony + { 2296, { 0, 0, 0, 0, 0, 0, 0 } }, + // Agony + { 2297, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nip + { 2298, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hard Stomp + { 2299, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diamondback + { 2300, { 0, 0, 0, 0, 0, 0, 0 } }, + // アダマン:亀ドラゴン:回転ジェット準備:ストーンヴィジルハード + { 2301, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whipstream + { 2302, { 0, 0, 0, 0, 0, 0, 0 } }, + // アダマン:亀ドラゴン:回転ジェット終了:ストーンヴィジルハード + { 2303, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cannonball Ricochet + { 2304, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Velitation + { 2305, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Chase + { 2306, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Kiss + { 2307, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spindly Finger + { 2308, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cannonball Ricochet + { 2309, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 2310, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 2311, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Breath + { 2312, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 2313, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 2314, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloodboil + { 2315, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bone Shaker + { 2316, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Flare + { 2317, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ink + { 2318, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unholy + { 2319, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Justice + { 2320, { 0, 0, 0, 0, 0, 0, 0 } }, + // Topple + { 2321, { 0, 0, 0, 0, 0, 0, 0 } }, + // Smolder + { 2322, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shiver + { 2323, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shudder + { 2324, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Justice + { 2325, { 0, 0, 0, 0, 0, 0, 0 } }, + // Daybreak + { 2326, { 0, 0, 0, 0, 0, 0, 0 } }, + // Daybreak + { 2327, { 0, 0, 0, 0, 0, 0, 0 } }, + // Daybreak + { 2328, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firewalker + { 2329, { 0, 0, 0, 0, 0, 0, 0 } }, + // Searing Chain + { 2330, { 0, 0, 0, 0, 0, 0, 0 } }, + // Infinite Anguish + { 2331, { 0, 0, 0, 0, 0, 0, 0 } }, + // King's Will + { 2332, { 0, 0, 0, 0, 0, 0, 0 } }, + // Douse + { 2333, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drench + { 2334, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Ripple + { 2335, { 0, 0, 0, 0, 0, 0, 0 } }, + // Falling Sky + { 2336, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quake + { 2337, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon Breath + { 2338, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drain + { 2339, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breakga + { 2340, { 0, 0, 0, 0, 0, 0, 0 } }, + // Roast + { 2341, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hunter's Moon + { 2344, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hunter's Moon + { 2345, { 0, 0, 0, 0, 0, 0, 0 } }, + // Astral Punch + { 2346, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Flare + { 2347, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aura + { 2348, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Moon + { 2349, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Justice + { 2350, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathstream + { 2351, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Eye + { 2352, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vile Utterance + { 2353, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Axe Handle + { 2354, { 0, 0, 0, 0, 0, 0, 0 } }, + // Knuckle Press + { 2355, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Rave + { 2356, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Rave + { 2357, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aura Cannon + { 2358, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Quake + { 2359, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Quaga + { 2361, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unholy + { 2362, { 0, 0, 0, 0, 0, 0, 0 } }, + // Comet Impact + { 2363, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteor Impact + { 2364, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Reaction + { 2365, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Explosion + { 2366, { 0, 0, 0, 0, 0, 0, 0 } }, + // Imperium + { 2367, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 2368, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 2370, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mini + { 2371, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Last Bout + { 2372, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Last Dance + { 2373, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Last Song + { 2374, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Release + { 2375, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Last Song + { 2376, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pyrotechnics + { 2377, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pyrotechnics + { 2378, { 0, 0, 0, 0, 0, 0, 0 } }, + // Coloratura + { 2379, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firaga Forte + { 2380, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tremblor + { 2381, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzaga Forte + { 2382, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thundaga Forte + { 2383, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thundaga Forte + { 2384, { 0, 0, 0, 0, 0, 0, 0 } }, + // Midwinter Tragedy + { 2385, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ranine Comedy + { 2386, { 0, 0, 0, 0, 0, 0, 0 } }, + // ガーディアン:ブレス:詠唱無し + { 2387, { 0, 0, 0, 0, 0, 0, 0 } }, + // Conductivity + { 2388, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quick Nock + { 2389, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inhumanity + { 2390, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotting Arrow + { 2391, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 2392, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tantrum + { 2393, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spontaneous Combustion + { 2394, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Throes + { 2395, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Justice + { 2396, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cloudcover + { 2397, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Nebula + { 2398, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Burst + { 2399, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spirit Burst + { 2400, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Charge + { 2401, { 0, 0, 0, 0, 0, 0, 0 } }, + // Red Wedding + { 2402, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eyes for You + { 2403, { 0, 0, 0, 0, 0, 0, 0 } }, + // Head over Heels + { 2404, { 0, 0, 0, 0, 0, 0, 0 } }, + // In Sickness and in Health + { 2405, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desolation + { 2406, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Eye + { 2407, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiral Spin + { 2408, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desolation + { 2409, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level X Petrify + { 2410, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone + { 2411, { 140, 0, 0, 0, 0, 0, 0 } }, + // Grim Fate + { 2412, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heartburn + { 2413, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elbow Drop + { 2414, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Smash + { 2415, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swipe + { 2416, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swing + { 2417, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glower + { 2418, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Beholder + { 2419, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Cyclone + { 2420, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinshower + { 2421, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bad Breath + { 2422, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vine Probe + { 2423, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Clap + { 2424, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockslide + { 2425, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 2426, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petribreath + { 2427, { 0, 0, 0, 0, 0, 0, 0 } }, + // Numbing Breath + { 2428, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 2429, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Eye + { 2430, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 2431, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2432, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sweet Steel + { 2433, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aura Curtain + { 2438, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cavatina + { 2439, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cavatina + { 2440, { 0, 0, 0, 0, 0, 0, 0 } }, + // Curtain Call + { 2441, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diamond Dust + { 2442, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 2444, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 2445, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2446, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oculus + { 2447, { 0, 0, 0, 0, 0, 0, 0 } }, + // Low Peal + { 2448, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deep Chill + { 2449, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inner Demons + { 2450, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Blade + { 2451, { 0, 0, 0, 0, 0, 0, 0 } }, + // Melt + { 2452, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Staff + { 2453, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icebrand + { 2454, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hailstorm + { 2455, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hailstorm + { 2456, { 0, 0, 0, 0, 0, 0, 0 } }, + // Permafrost + { 2457, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 2458, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 2459, { 0, 0, 0, 0, 0, 0, 0 } }, + // Absolute Zero + { 2460, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dreams of Ice + { 2461, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icicle Impact + { 2462, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 2463, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavenly Strike + { 2464, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glacier Bash + { 2465, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diamond Dust + { 2466, { 0, 0, 0, 0, 0, 0, 0 } }, + // 透明:シヴァ:凍結レクト:ノックバック用 + { 2467, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whiteout + { 2468, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brackish Rain + { 2475, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brackish Drop + { 2476, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hatch + { 2477, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wings of Woe + { 2478, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flounder + { 2479, { 0, 0, 0, 0, 0, 0, 0 } }, + // Big Scissors + { 2480, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Bath + { 2481, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Sting + { 2482, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 2484, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thorn Whip + { 2486, { 0, 0, 0, 0, 0, 0, 0 } }, + // Floral Trap + { 2488, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devour + { 2489, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 2490, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 2491, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscid Emission + { 2492, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blighted Bouquet + { 2493, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2494, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2495, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2496, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swarm + { 2497, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Rain + { 2499, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Stench + { 2500, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2501, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Sting + { 2502, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminal Sting + { 2503, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Spray + { 2504, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Cloud + { 2505, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Ooze + { 2506, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2533, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2534, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bahamut's Claw + { 2565, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seedvolley + { 2601, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 2602, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Voice + { 2603, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Voice + { 2604, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hood Swing + { 2605, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whip Back + { 2606, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regorge + { 2607, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gust + { 2608, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shot + { 2609, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 2610, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulse Transmission + { 2611, { 0, 0, 0, 0, 0, 0, 0 } }, + // Low Voltage + { 2615, { 0, 0, 0, 0, 0, 0, 0 } }, + // Object 130 + { 2616, { 0, 0, 0, 0, 0, 0, 0 } }, + // Auto-cannons + { 2617, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 2618, { 0, 0, 0, 0, 0, 0, 0 } }, + // Infatuation + { 2619, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock Strike + { 2635, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderspark + { 2636, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2637, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2638, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderstorm + { 2639, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Bolt + { 2640, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaotic Strike + { 2641, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rolling Thunder + { 2642, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 2643, { 0, 0, 0, 0, 0, 0, 0 } }, + // Increased Sentence + { 2644, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flying Frenzy + { 2647, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 2648, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 2649, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Heart + { 2650, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Dust + { 2651, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Orb + { 2652, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Dome + { 2653, { 0, 0, 0, 0, 0, 0, 0 } }, + // Condemnation + { 2654, { 0, 0, 0, 0, 0, 0, 0 } }, + // Condemnation + { 2655, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charybdis + { 2656, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Ray + { 2658, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hex Eye + { 2659, { 0, 0, 0, 0, 0, 0, 0 } }, + // Catharsis + { 2660, { 0, 0, 0, 0, 0, 0, 0 } }, + // Golden Tongue + { 2661, { 0, 0, 0, 0, 0, 0, 0 } }, + // Claw + { 2662, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bad-mouth + { 2663, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kick and Scream + { 2664, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kick and Scream + { 2665, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Web + { 2666, { 0, 0, 0, 0, 0, 0, 0 } }, + // Caustic Spray + { 2667, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 2668, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 2669, { 0, 0, 0, 0, 0, 0, 0 } }, + // Realm Shaker + { 2670, { 0, 0, 0, 0, 0, 0, 0 } }, + // Silkscreen + { 2671, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 2672, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hammer Beak + { 2673, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petribreath + { 2674, { 0, 0, 0, 0, 0, 0, 0 } }, + // Numbing Breath + { 2675, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 2676, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slumber Breath + { 2677, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10,000 Needles + { 2678, { 0, 0, 0, 0, 0, 0, 0 } }, + // 20,000 Needles + { 2679, { 0, 0, 0, 0, 0, 0, 0 } }, + // 30,000 Needles + { 2680, { 0, 0, 0, 0, 0, 0, 0 } }, + // Microblaster + { 2681, { 0, 0, 0, 0, 0, 0, 0 } }, + // Charged Whisker + { 2682, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petrifying Eye + { 2683, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petriblaster + { 2684, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Cold + { 2685, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megablaster + { 2686, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinshower + { 2687, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinfang + { 2688, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrify + { 2689, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrify + { 2690, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Touch + { 2692, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paralyze III + { 2693, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tornado + { 2694, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Kick + { 2695, { 0, 0, 0, 0, 0, 0, 0 } }, + // Groundburst + { 2696, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity Force + { 2697, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drench + { 2698, { 0, 0, 0, 0, 0, 0, 0 } }, + // Douse + { 2699, { 0, 0, 0, 0, 0, 0, 0 } }, + // Douse + { 2700, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Ripple + { 2701, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Ripple + { 2702, { 0, 0, 0, 0, 0, 0, 0 } }, + // Counter Maneuvers + { 2703, { 0, 0, 0, 0, 0, 0, 0 } }, + // Counter Maneuvers + { 2704, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shred + { 2705, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Hand + { 2706, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shred + { 2707, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Hand + { 2708, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Shower + { 2710, { 0, 0, 0, 0, 0, 0, 0 } }, + // Big Scissors + { 2711, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubble Bath + { 2712, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crab Dribble + { 2713, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lateral Slash + { 2715, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharpened Knife + { 2716, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scourge of Nym + { 2717, { 0, 0, 0, 0, 0, 0, 0 } }, + // Throat Stab + { 2718, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whetstone + { 2719, { 0, 0, 0, 0, 0, 0, 0 } }, + // Transonic Blast + { 2720, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flying Frenzy + { 2721, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath Wing + { 2722, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonic Storm + { 2723, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonic Boom + { 2724, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rake + { 2725, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 2726, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swinge + { 2727, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stagnant Spray + { 2728, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nightmarish Light + { 2729, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peculiar Light + { 2730, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bog Bomb + { 2731, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Rattle + { 2732, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dripping Fang + { 2733, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Gaze + { 2734, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hood Swing + { 2735, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whip Back + { 2736, { 0, 0, 0, 0, 0, 0, 0 } }, + // Regorge + { 2737, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steel Scales + { 2738, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disseminate + { 2739, { 0, 0, 0, 0, 0, 0, 0 } }, + // Canopy + { 2740, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arboreal Storm + { 2741, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acorn Bomb + { 2742, { 0, 0, 0, 0, 0, 0, 0 } }, + // Backhand Blow + { 2743, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rise and Fall + { 2744, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mind Blast + { 2746, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mind Melt + { 2747, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tornado + { 2748, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 2750, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 2751, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 2752, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 2753, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hundred Lashings + { 2754, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 2755, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gold Dust + { 2756, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 2757, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscid Emission + { 2758, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombination + { 2759, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whipcrack + { 2760, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero Blast + { 2761, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stormwind + { 2762, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eerie Soundwave + { 2763, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plague Swipe + { 2764, { 0, 0, 0, 0, 0, 0, 0 } }, + // Corrosive Gale + { 2765, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swipe + { 2766, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swing + { 2767, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swipe + { 2768, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-tonze Swing + { 2769, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glower + { 2770, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eye of the Beholder + { 2771, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1000-tonze Swing + { 2772, { 0, 0, 0, 0, 0, 0, 0 } }, + // Predatorial Instinct + { 2773, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dissever + { 2776, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Breath + { 2777, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Fire + { 2778, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Ice + { 2779, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triumvirate + { 2780, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mean Thrash + { 2781, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fear Itself + { 2782, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Skull + { 2783, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boulder Clap + { 2784, { 0, 0, 0, 0, 0, 0, 0 } }, + // True Grit + { 2785, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plaincracker + { 2786, { 0, 0, 0, 0, 0, 0, 0 } }, + // Obliterate + { 2787, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rockslide + { 2788, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthen Heart + { 2789, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Breath + { 2791, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sandstorm + { 2792, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 2793, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earthquake + { 2794, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Cyclone + { 2795, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bottomless Desert + { 2796, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sand Pillar + { 2797, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beatdown + { 2798, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inhale + { 2799, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moldy Sneeze + { 2800, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sickly Sneeze + { 2801, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moldy Phlegm + { 2802, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goobbue's Grief + { 2803, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attractant + { 2804, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Tongue + { 2805, { 0, 0, 0, 0, 0, 0, 0 } }, + // Solidifying Secretion + { 2806, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lethal Lap + { 2807, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lap + { 2808, { 0, 0, 0, 0, 0, 0, 0 } }, + // Labored Leap + { 2809, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vasoconstrictor + { 2810, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 2811, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Breath + { 2812, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 2813, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Hold + { 2814, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 2815, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulverizing Pound + { 2816, { 0, 0, 0, 0, 0, 0, 0 } }, + // Horrisonous Blast + { 2817, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Rift + { 2818, { 0, 0, 0, 0, 0, 0, 0 } }, + // Khoomii + { 2819, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonorous Blast + { 2820, { 0, 0, 0, 0, 0, 0, 0 } }, + // Encierro + { 2822, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devil Eye + { 2823, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petrifaction + { 2824, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bull Charge + { 2825, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Stare + { 2826, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jettatura + { 2827, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bestial Roar + { 2828, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mow + { 2829, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triclip + { 2830, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frightful Roar + { 2831, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Ray + { 2832, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 2833, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon Breath + { 2834, { 0, 0, 0, 0, 0, 0, 0 } }, + // Granite Rain + { 2835, { 0, 0, 0, 0, 0, 0, 0 } }, + // Toxic Vomit + { 2836, { 0, 0, 0, 0, 0, 0, 0 } }, + // Evil Eye + { 2837, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 2839, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Strike + { 2840, { 0, 0, 0, 0, 0, 0, 0 } }, + // System Evaluation + { 2841, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 2842, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overheat + { 2843, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 2844, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Field + { 2845, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Field + { 2846, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire + { 2847, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire II + { 2848, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Fire III + { 2849, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder + { 2850, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder II + { 2851, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder III + { 2852, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard + { 2853, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard II + { 2854, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard III + { 2855, { 0, 0, 0, 0, 0, 0, 0 } }, + // Countershot + { 2856, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard III + { 2862, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rook Autoturret + { 2864, { 80, 0, 0, 0, 0, 0, 0 } }, + // Bishop Autoturret + { 2865, { 60, 0, 0, 0, 0, 0, 0 } }, + // Split Shot + { 2866, { 140, 0, 0, 0, 0, 0, 0 } }, + // Reload + { 2867, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slug Shot + { 2868, { 100, 0, 0, 0, 0, 0, 0 } }, + // Lead Shot + { 2869, { 40, 0, 0, 0, 0, 0, 0 } }, + // Spread Shot + { 2870, { 100, 0, 0, 0, 0, 0, 0 } }, + // Grenado Shot + { 2871, { 120, 0, 0, 0, 0, 0, 0 } }, + // Hot Shot + { 2872, { 120, 0, 0, 0, 0, 0, 0 } }, + // Clean Shot + { 2873, { 100, 0, 0, 0, 0, 0, 0 } }, + // Gauss Round + { 2874, { 180, 0, 0, 0, 0, 0, 0 } }, + // Heartbreak + { 2875, { 180, 0, 0, 0, 0, 0, 0 } }, + // Reassemble + { 2876, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leg Graze + { 2877, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wildfire + { 2878, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quick Reload + { 2879, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gauss Barrel + { 2880, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rapid Fire + { 2881, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rend Mind + { 2882, { 0, 0, 0, 0, 0, 0, 0 } }, + // Suppressive Fire + { 2883, { 100, 0, 0, 0, 0, 0, 0 } }, + // Foot Graze + { 2884, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypercharge + { 2885, { 0, 0, 0, 0, 0, 0, 0 } }, + // Head Graze + { 2886, { 100, 0, 0, 0, 0, 0, 0 } }, + // Dismantle + { 2887, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blank + { 2888, { 100, 0, 0, 0, 0, 0, 0 } }, + // Promotion + { 2889, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ricochet + { 2890, { 100, 0, 0, 0, 0, 0, 0 } }, + // Ossify + { 2893, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotting Bandages + { 2895, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sandblast + { 2897, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desert Storm + { 2898, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dust to Dust + { 2899, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Pike + { 2900, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crackle Hiss + { 2901, { 0, 0, 0, 0, 0, 0, 0 } }, + // Critical Rip + { 2902, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spike Flail + { 2903, { 0, 0, 0, 0, 0, 0, 0 } }, + // Erratic Blaster + { 2904, { 0, 0, 0, 0, 0, 0, 0 } }, + // Erratic Blaster + { 2905, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrification + { 2906, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 2907, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Shock + { 2908, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrocharge + { 2909, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Burst + { 2910, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Lightning + { 2911, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Lightning + { 2912, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cyclonic Chaos + { 2913, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cyclonic Chaos + { 2914, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Burst + { 2915, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crackle Hiss + { 2916, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spike Flail + { 2917, { 0, 0, 0, 0, 0, 0, 0 } }, + // Erratic Blaster + { 2918, { 0, 0, 0, 0, 0, 0, 0 } }, + // Erratic Blaster + { 2919, { 0, 0, 0, 0, 0, 0, 0 } }, + // Static Discharge + { 2920, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Burst + { 2921, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)ティアマット:メカハイドラ:オートアタック:バハムートダンジョン3 + { 2922, { 0, 0, 0, 0, 0, 0, 0 } }, + // Resonance + { 2923, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Gas + { 2924, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Gas + { 2925, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Gas + { 2926, { 0, 0, 0, 0, 0, 0, 0 } }, + // Barofield + { 2927, { 0, 0, 0, 0, 0, 0, 0 } }, + // Barofield + { 2928, { 0, 0, 0, 0, 0, 0, 0 } }, + // Main Head + { 2929, { 0, 0, 0, 0, 0, 0, 0 } }, + // Secondary Head + { 2930, { 0, 0, 0, 0, 0, 0, 0 } }, + // Secondary Head + { 2931, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)ティアマット:メカハイドラ:3連メテオ発射/A:バハムートダンジョン3 + { 2932, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)ティアマット:メカハイドラ:3連メテオ発射/B:バハムートダンジョン3 + { 2933, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seed of the Rivers + { 2934, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seed of the Sea + { 2935, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Mode + { 2936, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Cloud + { 2937, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nerve Cloud + { 2938, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nanospore Jet + { 2939, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nanospore Cloud + { 2940, { 0, 0, 0, 0, 0, 0, 0 } }, + // Auto-cannons + { 2941, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 2942, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Wave + { 2943, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)ダラガブ球:AA:バハムートダンジョン3/ボス2用 + { 2944, { 0, 0, 0, 0, 0, 0, 0 } }, + // Node Retrieval + { 2945, { 0, 0, 0, 0, 0, 0, 0 } }, + // Object 199 + { 2946, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repelling Cannons + { 2947, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity Field + { 2948, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forked Lightning + { 2949, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forked Lightning + { 2950, { 0, 0, 0, 0, 0, 0, 0 } }, + // Revelation + { 2951, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brand of Purgatory + { 2952, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chain of Purgatory + { 2953, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arm of Purgatory + { 2954, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flames of Unforgiveness + { 2955, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blackfire + { 2956, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blackfire Blaze + { 2957, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blackfire Wave + { 2958, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whitefire + { 2959, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whitefire + { 2960, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bluefire + { 2961, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bluefire + { 2962, { 0, 0, 0, 0, 0, 0, 0 } }, + // Redfire + { 2963, { 0, 0, 0, 0, 0, 0, 0 } }, + // Redfire Blast + { 2964, { 0, 0, 0, 0, 0, 0, 0 } }, + // Redfire Blaze + { 2965, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)フェニックス:原種:飛び上がる:バハムートダンジョン3 + { 2966, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)フェニックス:原種:着地:バハムートダンジョン3 + { 2967, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flames of Rebirth + { 2968, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flames of Rebirth + { 2969, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flames of Rebirth + { 2970, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flames of Rebirth + { 2971, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fountain of Fire + { 2972, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fountain of Life + { 2973, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fountain of Death + { 2974, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summon + { 2975, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scorched Pinion + { 2976, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scorched Pinion + { 2977, { 0, 0, 0, 0, 0, 0, 0 } }, + // Redfire Plume + { 2978, { 0, 0, 0, 0, 0, 0, 0 } }, + // Redfire Plume + { 2979, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rejuvenation + { 2980, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)ワイバーン:ズー:火の鳥:ポップ時アクション:バハムートダンジョン3 + { 2981, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Strike + { 2982, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Strike + { 2983, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Strike + { 2984, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fantod + { 2985, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fantod + { 2986, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fantod + { 2987, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)バハムート:霊体:オートアタック:バハムートダンジョン3 + { 2988, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flare Breath + { 2989, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flatten + { 2990, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare + { 2991, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare + { 2992, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare + { 2993, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare + { 2994, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare + { 2995, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare Strike + { 2996, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earth Shaker + { 2997, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earth Shaker + { 2998, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earth Shaker + { 2999, { 0, 0, 0, 0, 0, 0, 0 } }, + // Earth Shaker + { 3000, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gigaflare + { 3001, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gigaflare + { 3002, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flare Star + { 3003, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flare Star + { 3004, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rage of Bahamut + { 3005, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)バハムート:霊体:上空へ飛び立つ:バハムートダンジョン3 + { 3006, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)バハムート:霊体:上空から地上に着地する:バハムートダンジョン3 + { 3007, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megaflare Dive + { 3008, { 0, 0, 0, 0, 0, 0, 0 } }, + // Teraflare + { 3009, { 0, 0, 0, 0, 0, 0, 0 } }, + // Akh Morn + { 3010, { 0, 0, 0, 0, 0, 0, 0 } }, + // Akh Morn + { 3011, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tempest Wing + { 3012, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Drive + { 3013, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 3014, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bravery + { 3015, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Dive + { 3016, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plummet + { 3017, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Sentence + { 3018, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3019, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 3020, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 3021, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devour + { 3022, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Claw + { 3023, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pole Reversal + { 3024, { 0, 0, 0, 0, 0, 0, 0 } }, + // Apocalypse + { 3025, { 0, 0, 0, 0, 0, 0, 0 } }, + // Evil Eye + { 3026, { 0, 0, 0, 0, 0, 0, 0 } }, + // Calcifying Mist + { 3027, { 0, 0, 0, 0, 0, 0, 0 } }, + // Baleful Roar + { 3028, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shot + { 3029, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotoswipe + { 3030, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)ダラガブ球:AA:バハムートダンジョン3:2層Trash + { 3031, { 0, 0, 0, 0, 0, 0, 0 } }, + // Subduction + { 3032, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Giving Sea + { 3033, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 3034, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Grip + { 3035, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 3036, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Bow + { 3037, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3038, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glass Dance + { 3039, { 0, 0, 0, 0, 0, 0, 0 } }, + // Avalanche + { 3040, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icebrand + { 3041, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hailstorm + { 3042, { 0, 0, 0, 0, 0, 0, 0 } }, + // Permafrost + { 3043, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3044, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3045, { 0, 0, 0, 0, 0, 0, 0 } }, + // Absolute Zero + { 3046, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3047, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavenly Strike + { 3048, { 0, 0, 0, 0, 0, 0, 0 } }, + // Glacier Bash + { 3049, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dreams of Ice + { 3050, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icicle Impact + { 3051, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whiteout + { 3052, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Warden's Verdict + { 3053, { 0, 0, 0, 0, 0, 0, 0 } }, + // Impale + { 3054, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mark of Death + { 3055, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inspire + { 3056, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stun Claws + { 3057, { 0, 0, 0, 0, 0, 0, 0 } }, + // Expire + { 3058, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Ball + { 3059, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Screw + { 3060, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Instinct + { 3061, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hornswaggle + { 3062, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scuttle + { 3063, { 0, 0, 0, 0, 0, 0, 0 } }, + // Keelhaul + { 3064, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aim + { 3065, { 0, 0, 0, 0, 0, 0, 0 } }, + // Musket + { 3066, { 0, 0, 0, 0, 0, 0, 0 } }, + // Walk the Plank + { 3067, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tackle + { 3068, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ink Jet + { 3069, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ink Blot + { 3070, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 3071, { 0, 0, 0, 0, 0, 0, 0 } }, + // Strangle + { 3072, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seize + { 3073, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hurl + { 3074, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seawater Cannon + { 3075, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 3076, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 3077, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 3078, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snow Drift + { 3079, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snow Drift + { 3080, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aura + { 3081, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tundra + { 3082, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Wave + { 3083, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ice Guillotine + { 3084, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypothermal Combustion + { 3085, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Grip + { 3086, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frozen Mist + { 3087, { 0, 0, 0, 0, 0, 0, 0 } }, + // Buffet + { 3088, { 0, 0, 0, 0, 0, 0, 0 } }, + // Northerlies + { 3089, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snow Boulder + { 3090, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Smash + { 3091, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elbow Drop + { 3092, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 3093, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillar Impact + { 3095, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillar Pierce + { 3096, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillar Shatter + { 3097, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Attack + { 3098, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thousand-year Storm + { 3099, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensward Howl + { 3100, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thousand-year Storm + { 3101, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ecliptic Bite + { 3102, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lunar Cry + { 3103, { 0, 0, 0, 0, 0, 0, 0 } }, + // 5000 Needles + { 3104, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100,000 Needles + { 3105, { 0, 0, 0, 0, 0, 0, 0 } }, + // 3000 Needles + { 3106, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sabotendash + { 3107, { 0, 0, 0, 0, 0, 0, 0 } }, + // Smite of Fury + { 3108, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flurry of Rage + { 3109, { 0, 0, 0, 0, 0, 0, 0 } }, + // Light of Anathema + { 3110, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Wave + { 3111, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cactguard + { 3112, { 0, 0, 0, 0, 0, 0, 0 } }, + // Transcendence + { 3113, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaotic Eye + { 3114, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goad + { 3115, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whispers of Ire + { 3116, { 0, 0, 0, 0, 0, 0, 0 } }, + // Severe Snort + { 3117, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snort + { 3118, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snortsault + { 3119, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snortsault + { 3120, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snortsault + { 3121, { 0, 0, 0, 0, 0, 0, 0 } }, + // FUNGAH + { 3122, { 0, 0, 0, 0, 0, 0, 0 } }, + // FUNGAH + { 3123, { 0, 0, 0, 0, 0, 0, 0 } }, + // 人型:拘束:事件屋ヒルディ + { 3124, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fungah + { 3125, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fungahhh + { 3126, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3127, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grind + { 3128, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bosom Buddies + { 3129, { 0, 0, 0, 0, 0, 0, 0 } }, + // 4-tonze Weight + { 3130, { 0, 0, 0, 0, 0, 0, 0 } }, + // 4-tonze Weight + { 3131, { 0, 0, 0, 0, 0, 0, 0 } }, + // Imp Song + { 3132, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Breath + { 3133, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megavolt + { 3134, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tentacle + { 3135, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 3136, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 3137, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bosom Buddies + { 3138, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanngetall + { 3141, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanngetall + { 3142, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Sorrow + { 3143, { 0, 0, 0, 0, 0, 0, 0 } }, + // Einherjar + { 3144, { 0, 0, 0, 0, 0, 0, 0 } }, + // Valknut + { 3145, { 0, 0, 0, 0, 0, 0, 0 } }, + // Darksteel Reins + { 3146, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Stone + { 3147, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Stone + { 3148, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Lead + { 3149, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Lead + { 3150, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gungnir + { 3151, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gagnrath + { 3152, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gungnir + { 3153, { 0, 0, 0, 0, 0, 0, 0 } }, + // Zantetsuken + { 3154, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shin-Zantetsuken + { 3155, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypothermal Combustion + { 3156, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Blossom + { 3157, { 0, 0, 0, 0, 0, 0, 0 } }, + // Throwing Dagger + { 3158, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snortsault + { 3159, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillar Impact + { 3160, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chains of Malison + { 3161, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3162, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holmgang + { 3163, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)人型:真デュラハン:オートアタック:古城アムダハード + { 3164, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geirrothr + { 3165, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Sorrow + { 3166, { 0, 0, 0, 0, 0, 0, 0 } }, + // Valfodr + { 3167, { 0, 0, 0, 0, 0, 0, 0 } }, + // Yggr + { 3168, { 0, 0, 0, 0, 0, 0, 0 } }, + // Smite of Gloom + { 3169, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripples of Gloom + { 3170, { 0, 0, 0, 0, 0, 0, 0 } }, + // Invisible + { 3171, { 0, 0, 0, 0, 0, 0, 0 } }, + // Batter + { 3172, { 0, 0, 0, 0, 0, 0, 0 } }, + // Entrance + { 3173, { 0, 0, 0, 0, 0, 0, 0 } }, + // Doppelganger + { 3174, { 0, 0, 0, 0, 0, 0, 0 } }, + // Banishing Light + { 3175, { 0, 0, 0, 0, 0, 0, 0 } }, + // Banishing Light + { 3176, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cadaveric Spasm + { 3177, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sleight + { 3178, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spontaneous Combustion + { 3179, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)バハムート・ネール:ピエロ:オートアタック:古城アムダハード + { 3180, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jongleur's X + { 3181, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blackout + { 3182, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Card + { 3183, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Wind + { 3184, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sleight + { 3185, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jester's Reap + { 3186, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Scythe + { 3187, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Charge + { 3188, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swarm + { 3189, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscid Emission + { 3190, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arboreal Storm + { 3191, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acorn Bomb + { 3192, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clearout + { 3193, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter Nectar + { 3194, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crash Down + { 3195, { 0, 0, 0, 0, 0, 0, 0 } }, + // Makibishi + { 3196, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ilsabardian Regen + { 3197, { 0, 0, 0, 0, 0, 0, 0 } }, + // Melt + { 3198, { 0, 0, 0, 0, 0, 0, 0 } }, + // Melt + { 3199, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shatter + { 3200, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 3201, { 0, 0, 0, 0, 0, 0, 0 } }, + // Suiyaku + { 3202, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raiton + { 3203, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raiton + { 3204, { 0, 0, 0, 0, 0, 0, 0 } }, + // Katon + { 3205, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadowspawn + { 3206, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kanashibari + { 3207, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rebirth + { 3208, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tempest Wing + { 3209, { 0, 0, 0, 0, 0, 0, 0 } }, + // 透明:シヴァ:凍結レクト:ノックバック用/ヒロイック + { 3210, { 0, 0, 0, 0, 0, 0, 0 } }, + // Batterhorn + { 3211, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire Angon + { 3212, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Angon + { 3213, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Memories + { 3214, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clobber + { 3215, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Angon + { 3216, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firespit + { 3217, { 0, 0, 0, 0, 0, 0, 0 } }, + // Groundburst + { 3218, { 0, 0, 0, 0, 0, 0, 0 } }, + // Toad + { 3219, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Standard + { 3220, { 0, 0, 0, 0, 0, 0, 0 } }, + // Standard Retrieval + { 3221, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Fury + { 3222, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Fire + { 3223, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Fens + { 3224, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Ferrum + { 3225, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rushing Slash + { 3226, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vorpal Wheel + { 3227, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rot Gas + { 3228, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tyrannic Blare + { 3229, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Douse + { 3230, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Idol + { 3231, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Fever + { 3232, { 0, 0, 0, 0, 0, 0, 0 } }, + // Groundburst + { 3233, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hide + { 3234, { 0, 0, 0, 0, 0, 0, 0 } }, + // Howling Moon + { 3235, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arrow Deluge + { 3236, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grip of Fever + { 3238, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snow Boulder + { 3239, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slabber + { 3241, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devour + { 3242, { 0, 0, 0, 0, 0, 0, 0 } }, + // Engorge + { 3243, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spew + { 3244, { 0, 0, 0, 0, 0, 0, 0 } }, + // Predator Claws + { 3245, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Blow + { 3246, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hound Out of Hell + { 3247, { 0, 0, 0, 0, 0, 0, 0 } }, + // Innerspace + { 3248, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mini + { 3249, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sulphurous Breath + { 3250, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sulphurous Breath + { 3251, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 3252, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 3253, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ululation + { 3254, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triclip + { 3255, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deadly Thrust + { 3256, { 0, 0, 0, 0, 0, 0, 0 } }, + // Detonator + { 3257, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elbow Drop + { 3258, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Smash + { 3259, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swipe + { 3260, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Swing + { 3261, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stranger Tides + { 3266, { 0, 0, 0, 0, 0, 0, 0 } }, + // World's End + { 3267, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Drain + { 3268, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Vision + { 3272, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sullen Gaze + { 3273, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ireful Gaze + { 3274, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 100 Flare + { 3275, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 100 Flare + { 3276, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 150 Death + { 3277, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 150 Death + { 3278, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death + { 3279, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stare + { 3280, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Gaze + { 3281, { 0, 0, 0, 0, 0, 0, 0 } }, + // Discordance + { 3282, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fermata + { 3283, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath of Light + { 3284, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath of Fire + { 3285, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath of Ice + { 3286, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath of Thunder + { 3287, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breath of Poison + { 3288, { 0, 0, 0, 0, 0, 0, 0 } }, + // Radiance + { 3289, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3290, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seep + { 3291, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3293, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Wave + { 3294, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Breath + { 3295, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3296, { 0, 0, 0, 0, 0, 0, 0 } }, + // Zero-form Particle Beam + { 3297, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feint Particle Beam + { 3298, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feint Particle Beam + { 3299, { 0, 0, 0, 0, 0, 0, 0 } }, + // Particle Beam + { 3300, { 0, 0, 0, 0, 0, 0, 0 } }, + // Particle Beam + { 3301, { 0, 0, 0, 0, 0, 0, 0 } }, + // Particle Beam + { 3302, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bad Breath + { 3303, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Thunder + { 3304, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flood of Darkness + { 3305, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3306, { 0, 0, 0, 0, 0, 0, 0 } }, + // Low Voltage + { 3307, { 0, 0, 0, 0, 0, 0, 0 } }, + // Object 130 + { 3308, { 0, 0, 0, 0, 0, 0, 0 } }, + // Auto-cannons + { 3309, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 3310, { 0, 0, 0, 0, 0, 0, 0 } }, + // High-powered Beam + { 3311, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repelling Cannons + { 3312, { 0, 0, 0, 0, 0, 0, 0 } }, + // Web + { 3313, { 0, 0, 0, 0, 0, 0, 0 } }, + // Web + { 3314, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero II + { 3315, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero II + { 3316, { 0, 0, 0, 0, 0, 0, 0 } }, + // Woken Wind + { 3317, { 0, 0, 0, 0, 0, 0, 0 } }, + // Buffet + { 3318, { 0, 0, 0, 0, 0, 0, 0 } }, + // Turbulence + { 3319, { 0, 0, 0, 0, 0, 0, 0 } }, + // Missile + { 3320, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eerie Soundwave + { 3321, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Wind + { 3322, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cockcrow + { 3323, { 0, 0, 0, 0, 0, 0, 0 } }, + // Declaration + { 3324, { 0, 0, 0, 0, 0, 0, 0 } }, + // Masamune + { 3325, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrogenetic Force + { 3326, { 0, 0, 0, 0, 0, 0, 0 } }, + // Invisible Touch + { 3327, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon's Lair + { 3328, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonfire + { 3329, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonspirit + { 3330, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonflight + { 3331, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonstrike + { 3332, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sword Dance + { 3333, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sword Dance + { 3334, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enchain + { 3335, { 0, 0, 0, 0, 0, 0, 0 } }, + // Divider + { 3336, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icewind + { 3337, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moonlight + { 3338, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloomshower + { 3339, { 0, 0, 0, 0, 0, 0, 0 } }, + // Marrow Drain + { 3340, { 0, 0, 0, 0, 0, 0, 0 } }, + // Marrow Drain + { 3341, { 0, 0, 0, 0, 0, 0, 0 } }, + // Marrow Drain + { 3342, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Voice + { 3343, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Voice + { 3344, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mean Thrash + { 3345, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diarchy + { 3346, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Fire + { 3347, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Ice + { 3348, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirlwind Slash + { 3349, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter End + { 3350, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pradamante + { 3351, { 0, 0, 0, 0, 0, 0, 0 } }, + // Giga Jump + { 3352, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tiny Song + { 3353, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3354, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3355, { 0, 0, 0, 0, 0, 0, 0 } }, + // Full Force + { 3356, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eyes on Me + { 3358, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aegis Boon + { 3359, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raw Destruction + { 3360, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cometeor + { 3361, { 0, 0, 0, 0, 0, 0, 0 } }, + // Empyrean Rain + { 3362, { 0, 0, 0, 0, 0, 0, 0 } }, + // テュポーン:自分中心円:ゴールドソーサー + { 3363, { 0, 0, 0, 0, 0, 0, 0 } }, + // テュポーン:ステージ外周:ゴールドソーサー + { 3364, { 0, 0, 0, 0, 0, 0, 0 } }, + // テュポーン:扇:ゴールドソーサー + { 3365, { 0, 0, 0, 0, 0, 0, 0 } }, + // テュポーン:直線:ゴールドソーサー + { 3366, { 0, 0, 0, 0, 0, 0, 0 } }, + // テュポーン:GT:ゴールドソーサー + { 3367, { 0, 0, 0, 0, 0, 0, 0 } }, + // 透明:テュポーン:GT:ゴールドソーサー + { 3368, { 0, 0, 0, 0, 0, 0, 0 } }, + // Landwaster + { 3369, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 3370, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sidewise Slice + { 3371, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Impact + { 3372, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Shriek + { 3373, { 0, 0, 0, 0, 0, 0, 0 } }, + // Underfoot + { 3374, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 3375, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonkiller + { 3380, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirlwind Slash + { 3381, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter End + { 3382, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pradamante + { 3383, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flamethrower + { 3384, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Swing + { 3385, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mark XLI Quick-firing Cannon + { 3386, { 0, 0, 0, 0, 0, 0, 0 } }, + // Intake + { 3387, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mark XLIII Mini Cannon + { 3388, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flamethrower + { 3389, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flamethrower + { 3390, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpet Bomb + { 3391, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpet Bomb + { 3392, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blitz + { 3393, { 0, 0, 0, 0, 0, 0, 0 } }, + // Garlean Fire + { 3394, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disdain + { 3395, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disdain + { 3396, { 0, 0, 0, 0, 0, 0, 0 } }, + // Admonishment + { 3397, { 0, 0, 0, 0, 0, 0, 0 } }, + // Admonishment + { 3398, { 0, 0, 0, 0, 0, 0, 0 } }, + // Admonishment + { 3399, { 0, 0, 0, 0, 0, 0, 0 } }, + // Outer Turmoil + { 3400, { 0, 0, 0, 0, 0, 0, 0 } }, + // Animadversion + { 3401, { 0, 0, 0, 0, 0, 0, 0 } }, + // Condescension + { 3402, { 0, 0, 0, 0, 0, 0, 0 } }, + // Antipathy + { 3403, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inner Turmoil + { 3407, { 0, 0, 0, 0, 0, 0, 0 } }, + // Detonation + { 3408, { 0, 0, 0, 0, 0, 0, 0 } }, + // Explosion + { 3409, { 0, 0, 0, 0, 0, 0, 0 } }, + // Garlean Fire + { 3411, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Quaga + { 3412, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Quake + { 3413, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Hole + { 3414, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Hole + { 3415, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shockwave + { 3416, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hunter's Moon + { 3418, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherial Distribution + { 3419, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark IV + { 3420, { 0, 0, 0, 0, 0, 0, 0 } }, + // Isten Burst + { 3421, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sina Burst + { 3422, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salas Burst + { 3423, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark II + { 3424, { 0, 0, 0, 0, 0, 0, 0 } }, + // Extend + { 3425, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blight + { 3426, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherial Pull + { 3427, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherial Tide + { 3428, { 0, 0, 0, 0, 0, 0, 0 } }, + // Comet + { 3429, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteor + { 3430, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire + { 3431, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spark + { 3432, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spark + { 3433, { 0, 0, 0, 0, 0, 0, 0 } }, + // End of Days + { 3434, { 0, 0, 0, 0, 0, 0, 0 } }, + // End of Days + { 3435, { 0, 0, 0, 0, 0, 0, 0 } }, + // アシエン・ナブリアレス:ダテレポ:ナブリアレス戦 + { 3436, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quake III + { 3437, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Call + { 3439, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rot Gas + { 3440, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Breath + { 3441, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Wind + { 3442, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double + { 3443, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triple + { 3444, { 0, 0, 0, 0, 0, 0, 0 } }, + // Granite Rain + { 3445, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Breath + { 3446, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 3447, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rime Wreath + { 3448, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Release + { 3449, { 0, 0, 0, 0, 0, 0, 0 } }, + // Web of Lightning + { 3450, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collapse + { 3451, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiked Tail + { 3452, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rake + { 3453, { 0, 0, 0, 0, 0, 0, 0 } }, + // Engulfing Flames + { 3454, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swinge + { 3455, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hard Stomp + { 3456, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diamondback + { 3457, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tortoise Stomp + { 3458, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burning Cyclone + { 3459, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 3460, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon Breath + { 3461, { 0, 0, 0, 0, 0, 0, 0 } }, + // Toxic Vomit + { 3462, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lunge + { 3463, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Velitation + { 3464, { 0, 0, 0, 0, 0, 0, 0 } }, + // Strident Scream + { 3465, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinshower + { 3466, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrify + { 3467, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 3468, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3469, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Breath + { 3470, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 3471, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 3472, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloodboil + { 3473, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bone Shaker + { 3474, { 0, 0, 0, 0, 0, 0, 0 } }, + // Batterhorn + { 3475, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter End + { 3476, { 0, 0, 0, 0, 0, 0, 0 } }, + // Giga Jump + { 3477, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 3478, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 3479, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 3480, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Strike + { 3481, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpet Bomb + { 3482, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icewind + { 3483, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moonlight + { 3484, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloomshower + { 3485, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Field + { 3486, { 0, 0, 0, 0, 0, 0, 0 } }, + // Turret Retrieval + { 3487, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 3497, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 3498, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Gaze + { 3499, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpet Bomb + { 3500, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Spread + { 3501, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherial Tide + { 3502, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 3503, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 3505, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reawakening + { 3507, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 3508, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 3509, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sour Sough + { 3510, { 0, 0, 0, 0, 0, 0, 0 } }, + // Icewind + { 3511, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moonlight + { 3512, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloomshower + { 3513, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballast + { 3514, { 0, 0, 0, 0, 0, 0, 0 } }, + // Labored Leap + { 3515, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Skull + { 3516, { 0, 0, 0, 0, 0, 0, 0 } }, + // Words of Winter + { 3517, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disclosure + { 3518, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repel + { 3519, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquefy + { 3520, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquefy + { 3521, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 3522, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard III + { 3523, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Call + { 3524, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tome Seal + { 3525, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Spark + { 3526, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thrub + { 3527, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deep Darkness + { 3528, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magic Burst + { 3529, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Charge + { 3530, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Charge + { 3531, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Swing + { 3532, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Transfixion + { 3533, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Thunder III + { 3534, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard III + { 3535, { 0, 0, 0, 0, 0, 0, 0 } }, + // Canker + { 3536, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard + { 3537, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goring Blade + { 3538, { 100, 220, 0, 0, 0, 0, 0 } }, + // Royal Authority + { 3539, { 100, 340, 0, 0, 0, 0, 0 } }, + // Divine Veil + { 3540, { 0, 0, 0, 0, 0, 0, 0 } }, + // Clemency + { 3541, { 0, 0, 0, 0, 0, 1200, 0 } }, + // Sheltron + { 3542, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tornado Kick + { 3543, { 330, 0, 0, 0, 0, 0, 0 } }, + // Purification + { 3544, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elixir Field + { 3545, { 220, 0, 0, 0, 0, 0, 0 } }, + // Meditation + { 3546, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Forbidden Chakra + { 3547, { 320, 0, 0, 0, 0, 0, 0 } }, + // Deliverance + { 3548, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fell Cleave + { 3549, { 500, 0, 0, 0, 0, 0, 0 } }, + // Decimate + { 3550, { 280, 0, 0, 0, 0, 0, 0 } }, + // Raw Intuition + { 3551, { 0, 0, 0, 0, 0, 0, 0 } }, + // Equilibrium + { 3552, { 0, 0, 0, 0, 0, 1200, 0 } }, + // Blood of the Dragon + { 3553, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fang and Claw + { 3554, { 200, 0, 290, 0, 0, 0, 0 } }, + // Geirskogul + { 3555, { 200, 0, 0, 0, 0, 0, 0 } }, + // Wheeling Thrust + { 3556, { 200, 0, 0, 0, 290, 0, 0 } }, + // Battle Litany + { 3557, { 0, 0, 0, 0, 0, 0, 0 } }, + // Empyreal Arrow + { 3558, { 220, 0, 0, 0, 0, 0, 0 } }, + // the Wanderer's Minuet + { 3559, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Jaws + { 3560, { 100, 0, 0, 0, 0, 0, 0 } }, + // the Warden's Paean + { 3561, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sidewinder + { 3562, { 100, 0, 0, 0, 0, 0, 0 } }, + // Armor Crush + { 3563, { 100, 220, 160, 0, 0, 0, 0 } }, + // Shadewalker + { 3564, { 0, 0, 0, 0, 0, 0, 0 } }, + // Smoke Screen + { 3565, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dream Within a Dream + { 3566, { 100, 0, 0, 0, 0, 0, 0 } }, + // Duality + { 3567, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone III + { 3568, { 210, 0, 0, 0, 0, 0, 0 } }, + // Asylum + { 3569, { 0, 0, 0, 0, 0, 100, 0 } }, + // Tetragrammaton + { 3570, { 0, 0, 0, 0, 0, 700, 0 } }, + // Assize + { 3571, { 300, 0, 0, 0, 0, 300, 0 } }, + // Aero III + { 3572, { 50, 0, 0, 0, 0, 0, 0 } }, + // Ley Lines + { 3573, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharpcast + { 3574, { 0, 0, 0, 0, 0, 0, 0 } }, + // Enochian + { 3575, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard IV + { 3576, { 280, 0, 0, 0, 0, 0, 0 } }, + // Fire IV + { 3577, { 280, 0, 0, 0, 0, 0, 0 } }, + // Painflare + { 3578, { 200, 0, 0, 0, 0, 0, 0 } }, + // Ruin III + { 3579, { 120, 0, 0, 0, 0, 0, 0 } }, + // Tri-disaster + { 3580, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dreadwyrm Trance + { 3581, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathflare + { 3582, { 400, 0, 0, 0, 0, 0, 0 } }, + // Indomitability + { 3583, { 0, 0, 0, 0, 0, 400, 0 } }, + // Broil + { 3584, { 170, 0, 0, 0, 0, 0, 0 } }, + // Deployment Tactics + { 3585, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Tactics + { 3586, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dissipation + { 3587, { 0, 0, 0, 0, 0, 0, 0 } }, + // Draw + { 3590, { 0, 0, 0, 0, 0, 0, 0 } }, + // Royal Road + { 3591, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spread + { 3592, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shuffle + { 3593, { 0, 0, 0, 0, 0, 0, 0 } }, + // Benefic + { 3594, { 0, 0, 0, 0, 0, 380, 0 } }, + // Aspected Benefic + { 3595, { 0, 0, 0, 0, 0, 190, 0 } }, + // Malefic + { 3596, { 150, 0, 0, 0, 0, 0, 0 } }, + // Stella + { 3597, { 100, 0, 0, 0, 0, 0, 0 } }, + // Malefic II + { 3598, { 200, 0, 0, 0, 0, 0, 0 } }, + // Combust + { 3599, { 0, 0, 0, 0, 0, 0, 0 } }, + // Helios + { 3600, { 0, 0, 0, 0, 0, 290, 0 } }, + // Aspected Helios + { 3601, { 0, 0, 0, 0, 0, 140, 0 } }, + // Exalted Detriment + { 3602, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ascend + { 3603, { 0, 0, 0, 0, 0, 0, 0 } }, + // Diurnal Sect + { 3604, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nocturnal Sect + { 3605, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightspeed + { 3606, { 0, 0, 0, 0, 0, 0, 0 } }, + // Luminiferous Aether + { 3607, { 0, 0, 0, 0, 0, 0, 0 } }, + // Combust II + { 3608, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disable + { 3609, { 0, 0, 0, 0, 0, 0, 0 } }, + // Benefic II + { 3610, { 0, 0, 0, 0, 0, 620, 0 } }, + // Time Dilation + { 3611, { 0, 0, 0, 0, 0, 0, 0 } }, + // Synastry + { 3612, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collective Unconscious + { 3613, { 0, 0, 0, 0, 0, 200, 0 } }, + // Essential Dignity + { 3614, { 0, 0, 0, 0, 0, 400, 0 } }, + // Gravity + { 3615, { 200, 0, 0, 0, 0, 0, 0 } }, + // Celestial Opposition + { 3616, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hard Slash + { 3617, { 150, 0, 0, 0, 0, 0, 0 } }, + // Shadowskin + { 3618, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Slash + { 3619, { 100, 220, 0, 0, 0, 0, 0 } }, + // Scourge + { 3620, { 100, 0, 0, 0, 0, 0, 0 } }, + // Unleash + { 3621, { 100, 0, 0, 0, 0, 0, 0 } }, + // Low Blow + { 3622, { 100, 0, 0, 0, 0, 0, 0 } }, + // Syphon Strike + { 3623, { 100, 250, 0, 0, 0, 0, 0 } }, + // Unmend + { 3624, { 150, 0, 0, 0, 0, 0, 0 } }, + // Blood Weapon + { 3625, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reprisal + { 3626, { 210, 0, 0, 0, 0, 0, 0 } }, + // Power Slash + { 3627, { 100, 300, 0, 0, 0, 0, 0 } }, + // Darkside + { 3628, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grit + { 3629, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Dance + { 3630, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Price + { 3631, { 0, 0, 0, 0, 0, 0, 0 } }, + // Souleater + { 3632, { 100, 260, 0, 0, 0, 0, 0 } }, + // Dark Passenger + { 3633, { 150, 0, 0, 0, 0, 0, 0 } }, + // Dark Mind + { 3634, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Arts + { 3635, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Wall + { 3636, { 0, 0, 0, 0, 0, 0, 0 } }, + // Delirium + { 3637, { 100, 280, 0, 0, 0, 0, 0 } }, + // Living Dead + { 3638, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salted Earth + { 3639, { 75, 0, 0, 0, 0, 0, 0 } }, + // Plunge + { 3640, { 200, 0, 0, 0, 0, 0, 0 } }, + // Abyssal Drain + { 3641, { 120, 0, 0, 0, 0, 0, 0 } }, + // Sole Survivor + { 3642, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carve and Spit + { 3643, { 100, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 3644, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 3646, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3647, { 0, 0, 0, 0, 0, 0, 0 } }, + // Royal Fount + { 3648, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gunnery Pod + { 3649, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Spaser + { 3650, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydrothermal Missile + { 3651, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydrothermal Missile + { 3652, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Deployment + { 3653, { 0, 0, 0, 0, 0, 0, 0 } }, + // Resin Bomb + { 3654, { 0, 0, 0, 0, 0, 0, 0 } }, + // Resin Bomb + { 3655, { 0, 0, 0, 0, 0, 0, 0 } }, + // Distress Beacon + { 3656, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 3657, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypercompressed Plasma + { 3658, { 0, 0, 0, 0, 0, 0, 0 } }, + // 3000-tonze Missile + { 3659, { 0, 0, 0, 0, 0, 0, 0 } }, + // 3000-tonze Missile + { 3660, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 3661, { 0, 0, 0, 0, 0, 0, 0 } }, + // Light Impact + { 3662, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Liftoff + { 3663, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jet Exhaust + { 3664, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quick Landing + { 3665, { 0, 0, 0, 0, 0, 0, 0 } }, + // Resin Bomb + { 3666, { 0, 0, 0, 0, 0, 0, 0 } }, + // Needle Spaser + { 3667, { 0, 0, 0, 0, 0, 0, 0 } }, + // Particle Collision + { 3668, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fastcast + { 3669, { 0, 0, 0, 0, 0, 0, 0 } }, + // Trunk Tawse + { 3670, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock of Ages + { 3671, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wooly Inspiration + { 3672, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tusk Butt + { 3673, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rout + { 3674, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rear + { 3675, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prehistoric Trumpet + { 3676, { 0, 0, 0, 0, 0, 0, 0 } }, + // Skullsplinter + { 3677, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tumulus + { 3678, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lifeless Wail + { 3679, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Spiral + { 3680, { 0, 0, 0, 0, 0, 0, 0 } }, + // Widowmaker + { 3681, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overturn + { 3682, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dead Alive + { 3683, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rictus + { 3684, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Tempest + { 3685, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 3686, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Eruption + { 3687, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Eruption + { 3688, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lifeless Wind + { 3689, { 0, 0, 0, 0, 0, 0, 0 } }, + // a Bone Reborn + { 3690, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brain Drain + { 3691, { 0, 0, 0, 0, 0, 0, 0 } }, + // Golden Talons + { 3692, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freefall + { 3693, { 0, 0, 0, 0, 0, 0, 0 } }, + // Alpine Draft + { 3694, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirling Gaol + { 3695, { 0, 0, 0, 0, 0, 0, 0 } }, + // Winds of Winter + { 3696, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirling Gaol + { 3697, { 0, 0, 0, 0, 0, 0, 0 } }, + // Imprison + { 3698, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whirligig + { 3699, { 0, 0, 0, 0, 0, 0, 0 } }, + // falling rubble + { 3700, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shatter + { 3701, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thump + { 3702, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slowball + { 3703, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chilling Cyclone + { 3704, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanguine Bite + { 3705, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burst + { 3706, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 3709, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonfly Avatar + { 3712, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scorpion Avatar + { 3713, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beetle Avatar + { 3714, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blinding Blade + { 3715, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Tail + { 3716, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Wing + { 3717, { 0, 0, 0, 0, 0, 0, 0 } }, + // Revengeance + { 3718, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 3719, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 3720, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 3721, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 3722, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 3723, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 3724, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 3725, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 3726, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tapasya + { 3727, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tapasya + { 3728, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atma-Linga + { 3729, { 0, 0, 0, 0, 0, 0, 0 } }, + // Falling Laughter + { 3730, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Fuller + { 3731, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Moon + { 3734, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chandrahas + { 3735, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Conviction + { 3736, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Conquest + { 3737, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillars of Heaven + { 3738, { 0, 0, 0, 0, 0, 0, 0 } }, + // Surpanakha + { 3739, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Hate + { 3740, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 3741, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 3742, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blinding Blade + { 3743, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Left + { 3744, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Right + { 3745, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Wings + { 3746, { 0, 0, 0, 0, 0, 0, 0 } }, + // Revengeance + { 3747, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tapasya + { 3748, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tapasya + { 3749, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atma-Linga + { 3750, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Liberation + { 3751, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Liberation + { 3752, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Liberation + { 3753, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Liberation + { 3754, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Liberation + { 3755, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Liberation + { 3756, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Liberation + { 3757, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Liberation + { 3758, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Liberation + { 3759, { 0, 0, 0, 0, 0, 0, 0 } }, + // Warlord Shell + { 3761, { 0, 0, 0, 0, 0, 0, 0 } }, + // Warlord Flame + { 3762, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Fuller + { 3763, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Moon + { 3764, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chandrahas + { 3765, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Conviction + { 3766, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Conquest + { 3767, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillars of Heaven + { 3768, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Rose + { 3769, { 0, 0, 0, 0, 0, 0, 0 } }, + // Surpanakha + { 3770, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Hate + { 3771, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Liberation + { 3772, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Liberation + { 3773, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Liberation + { 3774, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Liberation + { 3775, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liberation + { 3776, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liberation + { 3777, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liberation + { 3778, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Spark + { 3779, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Spark + { 3780, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaos Blast + { 3781, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Call + { 3782, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paperweight + { 3783, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathtrap + { 3784, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ink Blot + { 3785, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tackle + { 3786, { 0, 0, 0, 0, 0, 0, 0 } }, + // Level 5 Death + { 3787, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Ray + { 3788, { 0, 0, 0, 0, 0, 0, 0 } }, + // Horror Eye + { 3789, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weighing of the Heart + { 3790, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 3791, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weighing of the Heart + { 3792, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 3793, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Rain + { 3794, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photosynthesis + { 3795, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quick Creeper + { 3796, { 0, 0, 0, 0, 0, 0, 0 } }, + // Phytobeam + { 3797, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 3798, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Rain + { 3799, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Spray + { 3801, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Cloud + { 3802, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overbite + { 3803, { 0, 0, 0, 0, 0, 0, 0 } }, + // Razor Scales + { 3804, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ensnare + { 3805, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mad Dash + { 3806, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mad Dash + { 3807, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mad Dash + { 3808, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mad Dash + { 3809, { 0, 0, 0, 0, 0, 0, 0 } }, + // Primordial Roar + { 3810, { 0, 0, 0, 0, 0, 0, 0 } }, + // Abyssic Buster + { 3811, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Star + { 3812, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaos Blast + { 3813, { 0, 0, 0, 0, 0, 0, 0 } }, + // Comet + { 3814, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensfall + { 3815, { 0, 0, 0, 0, 0, 0, 0 } }, + // Comet + { 3816, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensfall + { 3817, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensfall + { 3818, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaos Blast + { 3819, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)スライム:毒液:アバラシア山/中ボス2 + { 3820, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)スライム:病気液:アバラシア山/中ボス2 + { 3821, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)スライム:青燐液:アバラシア山/中ボス2 + { 3822, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)スライム:火炎液:アバラシア山/中ボス2 + { 3823, { 0, 0, 0, 0, 0, 0, 0 } }, + // Void Blizzard III + { 3824, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminus Est + { 3825, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3826, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Swing + { 3827, { 0, 0, 0, 0, 0, 0, 0 } }, + // Splash + { 3828, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 3829, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 3830, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 3831, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 3832, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sluice + { 3833, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sluice + { 3834, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sluice + { 3835, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Swing + { 3836, { 0, 0, 0, 0, 0, 0, 0 } }, + // Valve + { 3837, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cascade + { 3838, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cascade + { 3839, { 0, 0, 0, 0, 0, 0, 0 } }, + // Digititis + { 3840, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ferrofluid + { 3841, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquid Gaol + { 3842, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3843, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 3844, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Strike + { 3845, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Strike + { 3846, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wash Away + { 3847, { 0, 0, 0, 0, 0, 0, 0 } }, + // Digititis + { 3848, { 0, 0, 0, 0, 0, 0, 0 } }, + // Equal Concentration + { 3849, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hand of Pain + { 3850, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hands of Prayer + { 3851, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hand of Parting + { 3852, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Claw + { 3853, { 0, 0, 0, 0, 0, 0, 0 } }, + // Release + { 3854, { 0, 0, 0, 0, 0, 0, 0 } }, + // Contamination + { 3855, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drainage + { 3856, { 0, 0, 0, 0, 0, 0, 0 } }, + // Severe Contamination + { 3857, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ferrofluid + { 3858, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magnetism + { 3859, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultramagnetism + { 3860, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repel + { 3861, { 0, 0, 0, 0, 0, 0, 0 } }, + // Contamination + { 3863, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drainage + { 3864, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 3865, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquid Gaol + { 3866, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pressurize + { 3867, { 0, 0, 0, 0, 0, 0, 0 } }, + // Outburst + { 3868, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oil Blast + { 3869, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oil Blast + { 3870, { 0, 0, 0, 0, 0, 0, 0 } }, + // Current Leakage + { 3871, { 0, 0, 0, 0, 0, 0, 0 } }, + // Current Leakage + { 3872, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mucilage + { 3873, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydromorph + { 3881, { 0, 0, 0, 0, 0, 0, 0 } }, + // Countershade + { 3882, { 0, 0, 0, 0, 0, 0, 0 } }, + // Filoplumes + { 3883, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feather Squall + { 3884, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feather Squall + { 3885, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sideslip + { 3886, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Predation + { 3887, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ionospheric Charge + { 3888, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Cachexia + { 3889, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrocution + { 3890, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrocution + { 3891, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ground + { 3892, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 3893, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reflux + { 3894, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiked Tail + { 3895, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Serpent's Apple + { 3896, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 3897, { 0, 0, 0, 0, 0, 0, 0 } }, + // Original Sin + { 3898, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fall of Man + { 3899, { 0, 0, 0, 0, 0, 0, 0 } }, + // Folly + { 3900, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 3901, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cyclonic Separation + { 3902, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scarlet Whisper + { 3903, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scarlet Price + { 3904, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Scarlet Price + { 3905, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scarlet Thread + { 3906, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deafening Bellow + { 3907, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Sable Price + { 3908, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sable Weave + { 3909, { 0, 0, 0, 0, 0, 0, 0 } }, + // Massacre + { 3910, { 0, 0, 0, 0, 0, 0, 0 } }, + // Massacre + { 3911, { 0, 0, 0, 0, 0, 0, 0 } }, + // Takeoff + { 3912, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touchdown + { 3913, { 0, 0, 0, 0, 0, 0, 0 } }, + // Personal Barrier + { 3914, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 3915, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3916, { 0, 0, 0, 0, 0, 0, 0 } }, + // Roast + { 3917, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3918, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touchdown + { 3919, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rime Wreath + { 3920, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Breath + { 3921, { 0, 0, 0, 0, 0, 0, 0 } }, + // Explosion + { 3922, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tramontane + { 3923, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminus Est + { 3924, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanguine Blade + { 3925, { 0, 0, 0, 0, 0, 0, 0 } }, + // Between the Lines + { 3926, { 0, 0, 0, 0, 0, 0, 0 } }, + // Coryza + { 3927, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3928, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iceball + { 3929, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon's Blood + { 3930, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydrothermal Missile + { 3931, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Revolution + { 3932, { 0, 0, 0, 0, 0, 0, 0 } }, + // Perpetual Ray + { 3933, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carnage Zero + { 3934, { 0, 0, 0, 0, 0, 0, 0 } }, + // Perpetual Ray + { 3935, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydrothermal Missile + { 3936, { 0, 0, 0, 0, 0, 0, 0 } }, + // Discoid + { 3937, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Quarantine + { 3938, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carnage + { 3939, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Nisi + { 3940, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Nisi + { 3941, { 0, 0, 0, 0, 0, 0, 0 } }, + // Royal Pentacle + { 3942, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Laser + { 3943, { 0, 0, 0, 0, 0, 0, 0 } }, + // Explosion + { 3944, { 0, 0, 0, 0, 0, 0, 0 } }, + // Panzerfaust + { 3945, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pressure Decrease + { 3946, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 3947, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wirbelwind + { 3948, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 3949, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reducible Complexity + { 3950, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laser Absorption + { 3951, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laser Diffusion + { 3952, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reprobation + { 3953, { 0, 0, 0, 0, 0, 0, 0 } }, + // Retribution + { 3954, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reprobation + { 3955, { 0, 0, 0, 0, 0, 0, 0 } }, + // Retribution + { 3956, { 0, 0, 0, 0, 0, 0, 0 } }, + // Exhaust + { 3957, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Sentence + { 3958, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fracture + { 3959, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forward Cannon + { 3960, { 0, 0, 0, 0, 0, 0, 0 } }, + // Words of Winter + { 3961, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rapid Sever + { 3962, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Sever + { 3963, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Sever + { 3964, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double Sever + { 3965, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Displacement + { 3966, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overclock + { 3967, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Compression + { 3968, { 0, 0, 0, 0, 0, 0, 0 } }, + // 11-tonze Swipe + { 3969, { 0, 0, 0, 0, 0, 0, 0 } }, + // 111-tonze Swing + { 3970, { 0, 0, 0, 0, 0, 0, 0 } }, + // 10-tonze Slash + { 3971, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disorienting Groan + { 3972, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disorienting Groan + { 3973, { 0, 0, 0, 0, 0, 0, 0 } }, + // Zoom In + { 3974, { 0, 0, 0, 0, 0, 0, 0 } }, + // 1111-tonze Swing + { 3975, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feast + { 3976, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanctification + { 3977, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unholy + { 3978, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Explosive + { 3979, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Explosion + { 3980, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Educator + { 3981, { 0, 0, 0, 0, 0, 0, 0 } }, + // Broken Glass + { 3982, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Mine + { 3983, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Explosion + { 3984, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seed of the Rivers + { 3985, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Educator boot sequence + { 3986, { 0, 0, 0, 0, 0, 0, 0 } }, + // Auto-cannons + { 3988, { 0, 0, 0, 0, 0, 0, 0 } }, + // First Lesson + { 3991, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunder Thrust + { 3992, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 3993, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon's Blood + { 3994, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 3995, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 3996, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Breath + { 3997, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 3998, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 3999, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hand of the Empire + { 4000, { 0, 0, 0, 0, 0, 0, 0 } }, + // Innocence + { 4001, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mark of Death + { 4002, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Screw + { 4003, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Instinct + { 4004, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminus Est + { 4005, { 0, 0, 0, 0, 0, 0, 0 } }, + // Garlean Fire + { 4007, { 0, 0, 0, 0, 0, 0, 0 } }, + // Burn + { 4008, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaos Blast + { 4009, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cetacean Rage + { 4010, { 0, 0, 0, 0, 0, 0, 0 } }, + // Baleen Bomb + { 4011, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rain Storm + { 4012, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Revolution + { 4013, { 0, 0, 0, 0, 0, 0, 0 } }, + // Primal Tears + { 4014, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Gust + { 4015, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 4016, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magicked Bubble + { 4017, { 0, 0, 0, 0, 0, 0, 0 } }, + // Writhe + { 4018, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whale Song + { 4019, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breach Blast + { 4020, { 0, 0, 0, 0, 0, 0, 0 } }, + // Windcaller + { 4021, { 0, 0, 0, 0, 0, 0, 0 } }, + // Explosion + { 4022, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiritual Ray + { 4023, { 0, 0, 0, 0, 0, 0, 0 } }, + // Water Cannon + { 4024, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Blossom + { 4025, { 0, 0, 0, 0, 0, 0, 0 } }, + // Morrowmotes + { 4026, { 0, 0, 0, 0, 0, 0, 0 } }, + // Falling Sky + { 4027, { 0, 0, 0, 0, 0, 0, 0 } }, + // Howling Wing + { 4028, { 0, 0, 0, 0, 0, 0, 0 } }, + // Powerful Gust + { 4029, { 0, 0, 0, 0, 0, 0, 0 } }, + // Extreme Wind + { 4030, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dry Fin + { 4031, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dead Wind + { 4032, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wet Fin + { 4033, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dead Water + { 4034, { 0, 0, 0, 0, 0, 0, 0 } }, + // Baleen Bomb + { 4035, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Wave + { 4036, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Disruption + { 4037, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shrug + { 4038, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hardsilver Chain + { 4042, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bodyhurt Breakblock + { 4043, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brainhurt Breakblock + { 4044, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tempered Will + { 4045, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sniper Shot + { 4046, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goblin Rush + { 4047, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gobbieboom + { 4048, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snapcannon + { 4049, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavydoom + { 4050, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meltyspume + { 4051, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 4052, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pressure Increase + { 4053, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blitzstrahl + { 4054, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snapcannon + { 4055, { 0, 0, 0, 0, 0, 0, 0 } }, + // Boomcannon + { 4056, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bangyzoom + { 4057, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpet Bomb + { 4058, { 0, 0, 0, 0, 0, 0, 0 } }, + // Giant Bomb + { 4059, { 0, 0, 0, 0, 0, 0, 0 } }, + // Explosion + { 4060, { 0, 0, 0, 0, 0, 0, 0 } }, + // Massive Explosion + { 4061, { 0, 0, 0, 0, 0, 0, 0 } }, + // FF11クラブ:マウント・ゴブリンカニ戦車:自爆 + { 4068, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rain Storm + { 4069, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderhead + { 4070, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 4071, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collector's Glove + { 4074, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collector's Glove + { 4088, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collect + { 4101, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Totem + { 4108, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Totem + { 4109, { 0, 0, 0, 0, 0, 0, 0 } }, + // Totem Chant + { 4110, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vanu Stripe + { 4111, { 0, 0, 0, 0, 0, 0, 0 } }, + // Morrowcloud + { 4112, { 0, 0, 0, 0, 0, 0, 0 } }, + // Strong Wind + { 4113, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deep Depression + { 4114, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Wave + { 4115, { 0, 0, 0, 0, 0, 0, 0 } }, + // Turbine + { 4116, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fin Rays + { 4117, { 0, 0, 0, 0, 0, 0, 0 } }, + // 74 Degrees + { 4118, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overflow + { 4119, { 0, 0, 0, 0, 0, 0, 0 } }, + // Advent + { 4122, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavenly Slash + { 4125, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holiest of Holy + { 4126, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Shield Bash + { 4127, { 0, 0, 0, 0, 0, 0, 0 } }, + // Solid Ascension + { 4128, { 0, 0, 0, 0, 0, 0, 0 } }, + // Solid Ascension + { 4129, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shining Blade + { 4130, { 0, 0, 0, 0, 0, 0, 0 } }, + // Execution + { 4131, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bright Flare + { 4132, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Swing + { 4133, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hyperdimensional Slash + { 4134, { 0, 0, 0, 0, 0, 0, 0 } }, + // Faith Unmoving + { 4135, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Collapse + { 4136, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Collapse + { 4137, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Collapse + { 4138, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Collapse + { 4139, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Rip + { 4140, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Torsion + { 4142, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 4143, { 0, 0, 0, 0, 0, 0, 0 } }, + // Altar Candle + { 4144, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4145, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4146, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Chain + { 4147, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Chain + { 4148, { 0, 0, 0, 0, 0, 0, 0 } }, + // Altar Pyre + { 4149, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pure of Heart + { 4151, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Knight's Tour + { 4152, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Knight's Tour + { 4153, { 0, 0, 0, 0, 0, 0, 0 } }, + // Turret Charge + { 4154, { 0, 0, 0, 0, 0, 0, 0 } }, + // Turret Charge + { 4155, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Flame + { 4156, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire II + { 4157, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gale Cut + { 4158, { 0, 0, 0, 0, 0, 0, 0 } }, + // Page Tear + { 4159, { 0, 0, 0, 0, 0, 0, 0 } }, + // (仮)帝国バリア装置:シールド展開 + { 4161, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Nebula + { 4162, { 0, 0, 0, 0, 0, 0, 0 } }, + // Head Down + { 4163, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bone Shaker + { 4164, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 4165, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bibliocide + { 4167, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Blade + { 4168, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4169, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathly Whisk + { 4170, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reedmace + { 4171, { 0, 0, 0, 0, 0, 0, 0 } }, + // Low Caterwaul + { 4172, { 0, 0, 0, 0, 0, 0, 0 } }, + // High Caterwaul + { 4173, { 0, 0, 0, 0, 0, 0, 0 } }, + // Forward Fulguration + { 4174, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flank Fulguration + { 4175, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flank Fulguration + { 4176, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rear Fulguration + { 4177, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electromagnetic Coil + { 4178, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pellet + { 4181, { 0, 0, 0, 0, 0, 0, 0 } }, + // Soul Douse + { 4182, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nymian plague + { 4183, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4190, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ascalon's Might + { 4191, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ascalon's Mercy + { 4192, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ascalon's Mercy + { 4193, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Storm + { 4194, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Storm + { 4195, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteorain + { 4196, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteorain + { 4197, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Quaga + { 4198, { 0, 0, 0, 0, 0, 0, 0 } }, + // Knights of the Round + { 4199, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Eye + { 4200, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Gaze + { 4201, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultimate End + { 4202, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Light of Ascalon + { 4203, { 0, 0, 0, 0, 0, 0, 0 } }, + // Broad Swing + { 4204, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sacred Cross + { 4205, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavenly Slash + { 4206, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holiest of Holy + { 4207, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Bladedance + { 4208, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Bladedance + { 4209, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shining Blade + { 4210, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bright Flare + { 4211, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Collapse + { 4212, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dimensional Collapse + { 4213, { 0, 0, 0, 0, 0, 0, 0 } }, + // Conviction + { 4214, { 0, 0, 0, 0, 0, 0, 0 } }, + // Conviction + { 4215, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eternal Conviction + { 4216, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 4217, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 4218, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 4219, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 4220, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 4221, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiral Thrust + { 4222, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiral Pierce + { 4223, { 0, 0, 0, 0, 0, 0, 0 } }, + // Skyward Leap + { 4224, { 0, 0, 0, 0, 0, 0, 0 } }, + // Skyward Leap + { 4226, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4227, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4228, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4229, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4230, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavensflame + { 4231, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Chain + { 4232, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hiemal Storm + { 4233, { 0, 0, 0, 0, 0, 0, 0 } }, + // Holy Meteor + { 4235, { 0, 0, 0, 0, 0, 0, 0 } }, + // Big Shot + { 4238, { 0, 0, 0, 0, 0, 0, 0 } }, + // Desperado + { 4239, { 0, 0, 0, 0, 0, 0, 0 } }, + // Land Waker + { 4240, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Force + { 4241, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragonsong Dive + { 4242, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chimatsuri + { 4243, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sagittarius Arrow + { 4244, { 0, 0, 0, 0, 0, 0, 0 } }, + // Satellite Beam + { 4245, { 0, 0, 0, 0, 0, 0, 0 } }, + // Teraflare + { 4246, { 0, 0, 0, 0, 0, 0, 0 } }, + // Angel Feathers + { 4247, { 0, 0, 0, 0, 0, 0, 0 } }, + // Astral Stasis + { 4248, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terminal Velocity + { 4249, { 0, 0, 0, 0, 0, 0, 0 } }, + // Draw + { 4250, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aggravate + { 4251, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frost Breath + { 4252, { 0, 0, 0, 0, 0, 0, 0 } }, + // Retreat + { 4257, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillar Pierce + { 4259, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cauterize + { 4260, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 4261, { 0, 0, 0, 0, 0, 0, 0 } }, + // Form Shift + { 4262, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blood Lance + { 4263, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mighty Unmorph + { 4264, { 0, 0, 0, 0, 0, 0, 0 } }, + // Time to Burn + { 4265, { 0, 0, 0, 0, 0, 0, 0 } }, + // Terror Eye + { 4266, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Tongue + { 4267, { 0, 0, 0, 0, 0, 0, 0 } }, + // Labored Leap + { 4268, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bitter Nectar + { 4269, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinbolt + { 4270, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cannonfire + { 4271, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 4272, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prey + { 4273, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overbite + { 4274, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubo Burst + { 4275, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bastardbluss + { 4314, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Slug + { 4315, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Spread + { 4316, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment + { 4317, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment + { 4318, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quickstep + { 4319, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Turret + { 4320, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Laser + { 4321, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Grenado + { 4322, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 4323, { 0, 0, 0, 0, 0, 0, 0 } }, + // Riddle of the Sphinx + { 4324, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paradox + { 4325, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ka + { 4326, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chthonic Hush + { 4327, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weighing of the Heart + { 4328, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hood Swing + { 4329, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steel Scales + { 4330, { 0, 0, 0, 0, 0, 0, 0 } }, + // Petrifaction + { 4331, { 0, 0, 0, 0, 0, 0, 0 } }, + // Circle of Flames + { 4332, { 0, 0, 0, 0, 0, 0, 0 } }, + // Inertia Stream + { 4333, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballistic Missile + { 4335, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gaseous Bomb + { 4336, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard + { 4337, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard II + { 4338, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard II + { 4339, { 0, 0, 0, 0, 0, 0, 0 } }, + // Permafrost + { 4340, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard Sphere + { 4341, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire + { 4342, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire II + { 4343, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire II + { 4344, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire Sphere + { 4345, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Flare + { 4346, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 4347, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Orb + { 4348, { 0, 0, 0, 0, 0, 0, 0 } }, + // End of Days + { 4349, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard Burst + { 4350, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire Burst + { 4351, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4352, { 0, 0, 0, 0, 0, 0, 0 } }, + // Height of Chaos + { 4353, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Circle + { 4354, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Eruption + { 4355, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Eruption + { 4356, { 0, 0, 0, 0, 0, 0, 0 } }, + // Universal Manipulation + { 4357, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chaos Bleed + { 4358, { 0, 0, 0, 0, 0, 0, 0 } }, + // Entropic Flame + { 4359, { 0, 0, 0, 0, 0, 0, 0 } }, + // Entropic Flame + { 4360, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Flare + { 4361, { 0, 0, 0, 0, 0, 0, 0 } }, + // Annihilation + { 4362, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pull of the Void + { 4363, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peace of the Void + { 4364, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Punch + { 4365, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark II + { 4366, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swinge + { 4367, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gouge + { 4368, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gouge + { 4369, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 4370, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 4372, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4373, { 0, 0, 0, 0, 0, 0, 0 } }, + // Royal Fount + { 4374, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gunnery Pod + { 4375, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Spaser + { 4376, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydrothermal Missile + { 4377, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hydrothermal Missile + { 4378, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Deployment + { 4379, { 0, 0, 0, 0, 0, 0, 0 } }, + // Resin Bomb + { 4380, { 0, 0, 0, 0, 0, 0, 0 } }, + // Resin Bomb + { 4381, { 0, 0, 0, 0, 0, 0, 0 } }, + // Distress Signal + { 4382, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 4383, { 0, 0, 0, 0, 0, 0, 0 } }, + // 3000-tonze Missile + { 4384, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavy Impact + { 4385, { 0, 0, 0, 0, 0, 0, 0 } }, + // Light Impact + { 4386, { 0, 0, 0, 0, 0, 0, 0 } }, + // Emergency Liftoff + { 4387, { 0, 0, 0, 0, 0, 0, 0 } }, + // Jet Exhaust + { 4388, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quick Landing + { 4389, { 0, 0, 0, 0, 0, 0, 0 } }, + // Needle Spaser + { 4390, { 0, 0, 0, 0, 0, 0, 0 } }, + // Particle Collision + { 4391, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 4392, { 0, 0, 0, 0, 0, 0, 0 } }, + // Impale + { 4395, { 0, 0, 0, 0, 0, 0, 0 } }, + // Expire + { 4396, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Ball + { 4397, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Screw + { 4398, { 0, 0, 0, 0, 0, 0, 0 } }, + // Painful Whip + { 4399, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gas Shell + { 4400, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Balance + { 4401, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Bole + { 4402, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Arrow + { 4403, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spear + { 4404, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ewer + { 4405, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spire + { 4406, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Balance + { 4407, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Bole + { 4408, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Arrow + { 4409, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spear + { 4410, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ewer + { 4411, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spire + { 4412, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Balance + { 4413, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Bole + { 4414, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Arrow + { 4415, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spear + { 4416, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ewer + { 4417, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spire + { 4418, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Balance + { 4419, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Bole + { 4420, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Arrow + { 4421, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spear + { 4422, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ewer + { 4423, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Spire + { 4424, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Mogshield + { 4425, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Cure + { 4426, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle Eye Shot + { 4427, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pom Flare + { 4428, { 0, 0, 0, 0, 0, 0, 0 } }, + // 100-kuponze Swipe + { 4429, { 0, 0, 0, 0, 0, 0, 0 } }, + // Moogle-Go-Round + { 4430, { 0, 0, 0, 0, 0, 0, 0 } }, + // March of the Moogles + { 4431, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Needle + { 4432, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feral Peck + { 4445, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reaving Wind + { 4446, { 0, 0, 0, 0, 0, 0, 0 } }, + // Calamitous Wind + { 4447, { 0, 0, 0, 0, 0, 0, 0 } }, + // Warped Wail + { 4448, { 0, 0, 0, 0, 0, 0, 0 } }, + // Palsynyxis + { 4449, { 0, 0, 0, 0, 0, 0, 0 } }, + // Transpierce + { 4450, { 0, 0, 0, 0, 0, 0, 0 } }, + // Furore + { 4451, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sticky Thread + { 4452, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Breath + { 4453, { 0, 0, 0, 0, 0, 0, 0 } }, + // Incinerate + { 4454, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpomission + { 4455, { 0, 0, 0, 0, 0, 0, 0 } }, + // Isle Drop + { 4456, { 0, 0, 0, 0, 0, 0, 0 } }, + // Neck Splinter + { 4457, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whiplash + { 4458, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whistle + { 4459, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brightflame + { 4460, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frog Legs + { 4461, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Mist + { 4462, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drowning Mist + { 4463, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eerie Soundwave + { 4464, { 0, 0, 0, 0, 0, 0, 0 } }, + // Puncture + { 4465, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wriggle + { 4466, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinning Attack + { 4467, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chthonic Hush + { 4468, { 0, 0, 0, 0, 0, 0, 0 } }, + // Underbite + { 4469, { 0, 0, 0, 0, 0, 0, 0 } }, + // Primordial Bark + { 4470, { 0, 0, 0, 0, 0, 0, 0 } }, + // Third Leg Forward + { 4471, { 0, 0, 0, 0, 0, 0, 0 } }, + // Topple + { 4472, { 0, 0, 0, 0, 0, 0, 0 } }, + // Third Leg Back + { 4473, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touch Move + { 4474, { 0, 0, 0, 0, 0, 0, 0 } }, + // White Knight's Tour + { 4475, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Knight's Tour + { 4476, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vanu Snap + { 4477, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hoot + { 4478, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wings of the Manukmanai + { 4479, { 0, 0, 0, 0, 0, 0, 0 } }, + // Course of the Manukmanai + { 4480, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raptorial Spike + { 4481, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heart Breach + { 4482, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flintlock + { 4483, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grenado + { 4484, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ice Dispenser + { 4485, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freezeover + { 4486, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plain Pound + { 4487, { 0, 0, 0, 0, 0, 0, 0 } }, + // Face Off + { 4488, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flex + { 4489, { 0, 0, 0, 0, 0, 0, 0 } }, + // Foul Waters + { 4490, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bragot Breath + { 4491, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quarry Lake + { 4492, { 0, 0, 0, 0, 0, 0, 0 } }, + // Naked Soul + { 4493, { 0, 0, 0, 0, 0, 0, 0 } }, + // Toxic Breath + { 4494, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cold Wave + { 4495, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ice Guillotine + { 4496, { 0, 0, 0, 0, 0, 0, 0 } }, + // Needle Burst + { 4497, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Spread + { 4498, { 0, 0, 0, 0, 0, 0, 0 } }, + // Buffet + { 4499, { 0, 0, 0, 0, 0, 0, 0 } }, + // Northerlies + { 4500, { 0, 0, 0, 0, 0, 0, 0 } }, + // Horrisonous Blast + { 4501, { 0, 0, 0, 0, 0, 0, 0 } }, + // Adventitious Lash + { 4502, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ballistic Burr + { 4503, { 0, 0, 0, 0, 0, 0, 0 } }, + // Anemochory + { 4504, { 0, 0, 0, 0, 0, 0, 0 } }, + // Alpine Draft + { 4505, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scratch Fever + { 4506, { 0, 0, 0, 0, 0, 0, 0 } }, + // Yowl + { 4507, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gobskin + { 4508, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flying Bream + { 4509, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snow Flurry + { 4510, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freshwater Cannon + { 4511, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brine Breath + { 4512, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lumisphere + { 4513, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flamespitter + { 4514, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sour Belch + { 4515, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cloying Stench + { 4516, { 0, 0, 0, 0, 0, 0, 0 } }, + // Strut + { 4517, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hard Thrust + { 4518, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sideswipe + { 4519, { 0, 0, 0, 0, 0, 0, 0 } }, + // Puff + { 4520, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Yip + { 4521, { 0, 0, 0, 0, 0, 0, 0 } }, + // Paradise Lost + { 4522, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chirp + { 4523, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reckless Abandon + { 4524, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spinal Tap + { 4525, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unfinal Sting + { 4526, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypothermal Combustion + { 4527, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hypnotize + { 4528, { 0, 0, 0, 0, 0, 0, 0 } }, + // Optical Intrusion + { 4529, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leaf Dagger + { 4530, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quaver + { 4531, { 0, 0, 0, 0, 0, 0, 0 } }, + // Offal Breath + { 4532, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flash Evaporation + { 4533, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sleetvolley + { 4534, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ferocious Forehand + { 4535, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Killing Paw + { 4536, { 0, 0, 0, 0, 0, 0, 0 } }, + // Headlight + { 4537, { 0, 0, 0, 0, 0, 0, 0 } }, + // Catching Claws + { 4538, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frumious Jaws + { 4539, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shiver + { 4540, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acris + { 4541, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vitalis + { 4542, { 0, 0, 0, 0, 0, 0, 0 } }, + // Appendicular Disseverment + { 4543, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fang's End + { 4544, { 0, 0, 0, 0, 0, 0, 0 } }, + // Defibrilate + { 4545, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrogenesis + { 4546, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cover Fire + { 4547, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shortwave Maser + { 4548, { 0, 0, 0, 0, 0, 0, 0 } }, + // Passive Infrared Guidance System + { 4549, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetherochemical Amplification + { 4550, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spite of the Sky Elders + { 4551, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scorn of the Sky Elders + { 4552, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triple Helix + { 4553, { 0, 0, 0, 0, 0, 0, 0 } }, + // Headwind + { 4554, { 0, 0, 0, 0, 0, 0, 0 } }, + // Furore + { 4555, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotoswipe + { 4556, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wrecking Ball + { 4557, { 0, 0, 0, 0, 0, 0, 0 } }, + // Strong Wind + { 4558, { 0, 0, 0, 0, 0, 0, 0 } }, + // Azure Bolt + { 4559, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4560, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4561, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4562, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4563, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4564, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4565, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4566, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collectable Synthesis + { 4567, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 4649, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Breath + { 4650, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Breath + { 4651, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heartburn + { 4653, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bull Charge + { 4654, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 4655, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 4656, { 0, 0, 0, 0, 0, 0, 0 } }, + // Poison Dust + { 4657, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cannonball + { 4658, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leech + { 4659, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rake + { 4660, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Lion's Breath + { 4661, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slow Play + { 4662, { 0, 0, 0, 0, 0, 0, 0 } }, + // 銅像:自壊アクション:竜の巣:中ボス1 + { 4663, { 0, 0, 0, 0, 0, 0, 0 } }, + // Headspin + { 4664, { 0, 0, 0, 0, 0, 0, 0 } }, + // Headspin + { 4665, { 0, 0, 0, 0, 0, 0, 0 } }, + // Calcifying Mist + { 4666, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chilling Cyclone + { 4667, { 0, 0, 0, 0, 0, 0, 0 } }, + // Straight Punch + { 4668, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firewater + { 4669, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 4670, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscid Emission + { 4671, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iceball + { 4672, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Dragon's Breath + { 4673, { 0, 0, 0, 0, 0, 0, 0 } }, + // Granite Rain + { 4674, { 0, 0, 0, 0, 0, 0, 0 } }, + // Miasma Breath + { 4681, { 0, 0, 0, 0, 0, 0, 0 } }, + // Evil Eye + { 4682, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cermet Drill + { 4683, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overcharge + { 4684, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonorous Blast + { 4685, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Rift + { 4686, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pulverizing Pound + { 4687, { 0, 0, 0, 0, 0, 0, 0 } }, + // Beak Snap + { 4688, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overtone Shriek + { 4689, { 0, 0, 0, 0, 0, 0, 0 } }, + // Golden Talons + { 4690, { 0, 0, 0, 0, 0, 0, 0 } }, + // Proboscis + { 4691, { 0, 0, 0, 0, 0, 0, 0 } }, + // Choco Kick + { 4692, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Fire + { 4693, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ball of Ice + { 4694, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shred + { 4695, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Hand + { 4696, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whipcrack + { 4697, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bombination + { 4698, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fowl Stench + { 4699, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rise and Fall + { 4700, { 0, 0, 0, 0, 0, 0, 0 } }, + // Canopy + { 4701, { 0, 0, 0, 0, 0, 0, 0 } }, + // Original Sin + { 4702, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Slap + { 4703, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shot + { 4704, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Gust + { 4705, { 0, 0, 0, 0, 0, 0, 0 } }, + // Transonic Blast + { 4706, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sonic Boom + { 4707, { 0, 0, 0, 0, 0, 0, 0 } }, + // Savage Swipe + { 4708, { 0, 0, 0, 0, 0, 0, 0 } }, + // Savage Swipe + { 4709, { 0, 0, 0, 0, 0, 0, 0 } }, + // Photon Stream + { 4710, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Cannon + { 4711, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scale Ripple + { 4712, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wing Cutter + { 4713, { 0, 0, 0, 0, 0, 0, 0 } }, + // Grand Sword + { 4714, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Ray + { 4715, { 0, 0, 0, 0, 0, 0, 0 } }, + // Head Butt + { 4716, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seismic Scream + { 4717, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dry Fin + { 4718, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Predation + { 4719, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stagnant Spray + { 4720, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bog Bomb + { 4721, { 0, 0, 0, 0, 0, 0, 0 } }, + // Peculiar Light + { 4722, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 4723, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 4724, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Sentence + { 4725, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reflux + { 4726, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderbolt + { 4727, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Horn + { 4728, { 0, 0, 0, 0, 0, 0, 0 } }, + // Trounce + { 4729, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ecliptic Meteor + { 4730, { 0, 0, 0, 0, 0, 0, 0 } }, + // Golden Talons + { 4732, { 0, 0, 0, 0, 0, 0, 0 } }, + // Freefall + { 4733, { 0, 0, 0, 0, 0, 0, 0 } }, + // Alpine Draft + { 4734, { 0, 0, 0, 0, 0, 0, 0 } }, + // Winds of Winter + { 4735, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4737, { 0, 0, 0, 0, 0, 0, 0 } }, + // Geirrothr + { 4738, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hall of Sorrow + { 4739, { 0, 0, 0, 0, 0, 0, 0 } }, + // Valfodr + { 4740, { 0, 0, 0, 0, 0, 0, 0 } }, + // Counter Stance + { 4741, { 0, 0, 0, 0, 0, 0, 0 } }, + // Quickstep + { 4743, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Sultan's Brand + { 4744, { 0, 0, 0, 0, 0, 0, 0 } }, + // Unbreakable + { 4745, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spirits Without + { 4746, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloodstain + { 4747, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Ball + { 4749, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 4750, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 4751, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heat Breath + { 4752, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Smash + { 4753, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wild Charge + { 4754, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloodboil + { 4755, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bone Shaker + { 4756, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Screw + { 4757, { 0, 0, 0, 0, 0, 0, 0 } }, + // Nascent Flash + { 4758, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aether Charge + { 4759, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Pulse + { 4760, { 0, 0, 0, 0, 0, 0, 0 } }, + // 削除予定 + { 4762, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touchdown + { 4764, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Moon + { 4766, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Moon + { 4767, { 0, 0, 0, 0, 0, 0, 0 } }, + // Venom + { 4768, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 4769, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 4770, { 0, 0, 0, 0, 0, 0, 0 } }, + // Filoplumes + { 4772, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sideslip + { 4773, { 0, 0, 0, 0, 0, 0, 0 } }, + // Revelation + { 4774, { 0, 0, 0, 0, 0, 0, 0 } }, + // Redfire + { 4775, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tropical Wind + { 4776, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Field + { 4778, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summoning Rite + { 4779, { 0, 0, 0, 0, 0, 0, 0 } }, + // Crackle Hiss + { 4780, { 0, 0, 0, 0, 0, 0, 0 } }, + // Critical Rip + { 4781, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrification + { 4782, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electric Burst + { 4783, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ruby Carbuncle + { 4785, { 0, 0, 0, 0, 0, 0, 0 } }, + // Obsidian Carbuncle + { 4786, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wing Cutter + { 4787, { 0, 0, 0, 0, 0, 0, 0 } }, + // Silence + { 4788, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tornado + { 4789, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blitz + { 4790, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Screw + { 4791, { 0, 0, 0, 0, 0, 0, 0 } }, + // Impale + { 4792, { 0, 0, 0, 0, 0, 0, 0 } }, + // Scathe + { 4793, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 4794, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 4795, { 0, 0, 0, 0, 0, 0, 0 } }, + // ○削除予定 + { 4796, { 0, 0, 0, 0, 0, 0, 0 } }, + // Whipcrack + { 4797, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Killing Paw + { 4798, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tail Snap + { 4799, { 0, 0, 0, 0, 0, 0, 0 } }, + // Snipethoom + { 4801, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cacophony + { 4802, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Ram's Keeper + { 4803, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mighty Morph + { 4804, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wallop + { 4805, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Last Song + { 4807, { 0, 0, 0, 0, 0, 0, 0 } }, + // Primordial Bark + { 4808, { 0, 0, 0, 0, 0, 0, 0 } }, + // Iron Justice + { 4809, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kick and Scream + { 4810, { 0, 0, 0, 0, 0, 0, 0 } }, + // Self-destruct + { 4811, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dead or Alive + { 4812, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seep + { 4813, { 0, 0, 0, 0, 0, 0, 0 } }, + // Static Charge + { 4814, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Menace + { 4815, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Menace + { 4816, { 0, 0, 0, 0, 0, 0, 0 } }, + // Black Menace + { 4817, { 0, 0, 0, 0, 0, 0, 0 } }, + // Disclosure + { 4818, { 0, 0, 0, 0, 0, 0, 0 } }, + // Eggnog + { 4819, { 0, 0, 0, 0, 0, 0, 0 } }, + // Defensive Stance + { 4820, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 4821, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spiked Tail + { 4822, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero Blast + { 4823, { 0, 0, 0, 0, 0, 0, 0 } }, + // Electrify + { 4824, { 0, 0, 0, 0, 0, 0, 0 } }, + // Auto-cannons + { 4825, { 0, 0, 0, 0, 0, 0, 0 } }, + // Web of Lightning + { 4826, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Release + { 4827, { 0, 0, 0, 0, 0, 0, 0 } }, + // Steam Release + { 4828, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 4830, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard II + { 4831, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Blizzard III + { 4833, { 0, 0, 0, 0, 0, 0, 0 } }, + // Browbeat + { 4834, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stool Pelt + { 4835, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gravity Force + { 4837, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shock + { 4838, { 0, 0, 0, 0, 0, 0, 0 } }, + // Megiddo Flame + { 4839, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 4840, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sea of Pitch + { 4841, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteor Impact + { 4842, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meteor Impact + { 4843, { 0, 0, 0, 0, 0, 0, 0 } }, + // Debris Burst + { 4844, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4845, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Swing + { 4846, { 0, 0, 0, 0, 0, 0, 0 } }, + // Splash + { 4847, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 4848, { 0, 0, 0, 0, 0, 0, 0 } }, + // Protean Wave + { 4849, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sluice + { 4850, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sluice + { 4851, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sluice + { 4852, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Swing + { 4853, { 0, 0, 0, 0, 0, 0, 0 } }, + // Valve + { 4854, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cascade + { 4855, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cascade + { 4856, { 0, 0, 0, 0, 0, 0, 0 } }, + // Digititis + { 4857, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ferrofluid + { 4858, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4859, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 4860, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Swing + { 4861, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fluid Swing + { 4862, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wash Away + { 4863, { 0, 0, 0, 0, 0, 0, 0 } }, + // Digititis + { 4864, { 0, 0, 0, 0, 0, 0, 0 } }, + // Equal Concentration + { 4865, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hand of Pain + { 4866, { 0, 0, 0, 0, 0, 0, 0 } }, + // Contamination + { 4867, { 0, 0, 0, 0, 0, 0, 0 } }, + // Drainage + { 4868, { 0, 0, 0, 0, 0, 0, 0 } }, + // Severe Contamination + { 4869, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ferrofluid + { 4870, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magnetism + { 4871, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ultramagnetism + { 4872, { 0, 0, 0, 0, 0, 0, 0 } }, + // Repel + { 4873, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oil Blast + { 4874, { 0, 0, 0, 0, 0, 0, 0 } }, + // Oil Blast + { 4875, { 0, 0, 0, 0, 0, 0, 0 } }, + // Current Leakage + { 4876, { 0, 0, 0, 0, 0, 0, 0 } }, + // Current Leakage + { 4877, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mucilage + { 4878, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aqua Vitae + { 4879, { 0, 0, 0, 0, 0, 0, 0 } }, + // Celestial Stasis + { 4880, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ancient Graviga + { 4881, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rostnbyrt + { 4884, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero Blast + { 4885, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lumisphere + { 4886, { 0, 0, 0, 0, 0, 0, 0 } }, + // Magitek Spread + { 4887, { 0, 0, 0, 0, 0, 0, 0 } }, + // Light Pillar + { 4901, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bodyhurt Breakblock + { 4902, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brainhurt Breakblock + { 4903, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gobbieboom + { 4905, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderhead + { 4906, { 0, 0, 0, 0, 0, 0, 0 } }, + // Heavydoom + { 4907, { 0, 0, 0, 0, 0, 0, 0 } }, + // Meltyspume + { 4908, { 0, 0, 0, 0, 0, 0, 0 } }, + // Kaltstrahl + { 4909, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pressure Increase + { 4910, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blitzstrahl + { 4911, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bangyzoom + { 4912, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cetacean Rage + { 4918, { 0, 0, 0, 0, 0, 0, 0 } }, + // Perpetual Ray + { 4919, { 0, 0, 0, 0, 0, 0, 0 } }, + // Perpetual Ray + { 4920, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laser Diffusion + { 4921, { 0, 0, 0, 0, 0, 0, 0 } }, + // Explosion + { 4922, { 0, 0, 0, 0, 0, 0, 0 } }, + // Panzerfaust + { 4923, { 0, 0, 0, 0, 0, 0, 0 } }, + // Primal Tears + { 4924, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breach Blast + { 4925, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deep Draught + { 4927, { 0, 0, 0, 0, 0, 0, 0 } }, + // Howling Wing + { 4928, { 0, 0, 0, 0, 0, 0, 0 } }, + // Extreme Wind + { 4929, { 0, 0, 0, 0, 0, 0, 0 } }, + // Baleen Bomb + { 4932, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Wave + { 4933, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Disruption + { 4934, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderhead + { 4935, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 4936, { 0, 0, 0, 0, 0, 0, 0 } }, + // Frozen Mist + { 4937, { 0, 0, 0, 0, 0, 0, 0 } }, + // Buffet + { 4938, { 0, 0, 0, 0, 0, 0, 0 } }, + // Northerlies + { 4939, { 0, 0, 0, 0, 0, 0, 0 } }, + // Trunk Tawse + { 4940, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rock of Ages + { 4941, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wooly Inspiration + { 4942, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rout + { 4943, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overbite + { 4944, { 0, 0, 0, 0, 0, 0, 0 } }, + // Razor Scales + { 4945, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ensnare + { 4946, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blazing Trail + { 4947, { 0, 0, 0, 0, 0, 0, 0 } }, + // Collapse + { 4948, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 4949, { 0, 0, 0, 0, 0, 0, 0 } }, + // Goblin Attack + { 4950, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bravado + { 4951, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bomb Toss + { 4952, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gobskin + { 4953, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reckless Abandon + { 4954, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chirp + { 4955, { 0, 0, 0, 0, 0, 0, 0 } }, + // Straight Punch + { 4956, { 0, 0, 0, 0, 0, 0, 0 } }, + // Firewater + { 4957, { 0, 0, 0, 0, 0, 0, 0 } }, + // Elbow Drop + { 4958, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feral Peck + { 4959, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reaving Wind + { 4960, { 0, 0, 0, 0, 0, 0, 0 } }, + // Warped Wail + { 4961, { 0, 0, 0, 0, 0, 0, 0 } }, + // Carpomission + { 4962, { 0, 0, 0, 0, 0, 0, 0 } }, + // Isle Drop + { 4963, { 0, 0, 0, 0, 0, 0, 0 } }, + // Neck Splinter + { 4964, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fin Rays + { 4965, { 0, 0, 0, 0, 0, 0, 0 } }, + // 74 Degrees + { 4966, { 0, 0, 0, 0, 0, 0, 0 } }, + // Overflow + { 4967, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Serpent's Apple + { 4968, { 0, 0, 0, 0, 0, 0, 0 } }, + // Body Slam + { 4969, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fall of Man + { 4970, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 4971, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 4972, { 0, 0, 0, 0, 0, 0, 0 } }, + // Viscid Emission + { 4973, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Stench + { 4974, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raiton + { 4977, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Blossom + { 4978, { 0, 0, 0, 0, 0, 0, 0 } }, + // Advent + { 4979, { 0, 0, 0, 0, 0, 0, 0 } }, + // Advent + { 4980, { 0, 0, 0, 0, 0, 0, 0 } }, + // Summon Familiar + { 4981, { 0, 0, 0, 0, 0, 0, 0 } }, + // Voidblood + { 4982, { 0, 0, 0, 0, 0, 0, 0 } }, + // Triclip + { 4983, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pupate + { 4984, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wriggle + { 4985, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blades of Carnage and Liberation + { 4986, { 0, 0, 0, 0, 0, 0, 0 } }, + // Makibishi + { 4987, { 0, 0, 0, 0, 0, 0, 0 } }, + // Feral Lunge + { 4988, { 0, 0, 0, 0, 0, 0, 0 } }, + // Throwing Dagger + { 4989, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aether Charge + { 4990, { 0, 0, 0, 0, 0, 0, 0 } }, + // Deathly Cadenza + { 4991, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lunatic Voice + { 4992, { 0, 0, 0, 0, 0, 0, 0 } }, + // Shadow Flare + { 4993, { 0, 0, 0, 0, 0, 0, 0 } }, + // Third Leg Forward + { 4994, { 0, 0, 0, 0, 0, 0, 0 } }, + // The Last Song + { 4995, { 0, 0, 0, 0, 0, 0, 0 } }, + // Falling Sky + { 4996, { 0, 0, 0, 0, 0, 0, 0 } }, + // Touchdown + { 4998, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 5000, { 0, 0, 0, 0, 0, 0, 0 } }, + // Flamethrower + { 5001, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acorn Bomb + { 5002, { 0, 0, 0, 0, 0, 0, 0 } }, + // Arboreal Storm + { 5003, { 0, 0, 0, 0, 0, 0, 0 } }, + // Acid Shower + { 5004, { 0, 0, 0, 0, 0, 0, 0 } }, + // Weighing of the Heart + { 5007, { 0, 0, 0, 0, 0, 0, 0 } }, + // attack + { 5008, { 0, 0, 0, 0, 0, 0, 0 } }, + // Floral Trap + { 5009, { 0, 0, 0, 0, 0, 0, 0 } }, + // Devour + { 5010, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 5011, { 0, 0, 0, 0, 0, 0, 0 } }, + // Spit + { 5012, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sweet Scent + { 5013, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 5015, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 5016, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 5017, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 5018, { 0, 0, 0, 0, 0, 0, 0 } }, + // Hell Slash + { 5019, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Caress + { 5020, { 0, 0, 0, 0, 0, 0, 0 } }, + // Floral Trap + { 5021, { 0, 0, 0, 0, 0, 0, 0 } }, + // Leafstorm + { 5022, { 0, 0, 0, 0, 0, 0, 0 } }, + // Rotten Stench + { 5023, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sharp Sting + { 5024, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plummet + { 5033, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Sentence + { 5034, { 0, 0, 0, 0, 0, 0, 0 } }, + // Liquid Heaven + { 5035, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aetheric Profusion + { 5036, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gustnado + { 5037, { 0, 0, 0, 0, 0, 0, 0 } }, + // Gustnado + { 5038, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 5039, { 0, 0, 0, 0, 0, 0, 0 } }, + // Salivous Snap + { 5040, { 0, 0, 0, 0, 0, 0, 0 } }, + // Evil Eye + { 5041, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sheet of Ice + { 5042, { 0, 0, 0, 0, 0, 0, 0 } }, + // Roast + { 5043, { 0, 0, 0, 0, 0, 0, 0 } }, + // Plasma Release + { 5044, { 0, 0, 0, 0, 0, 0, 0 } }, + // Granite Rain + { 5045, { 0, 0, 0, 0, 0, 0, 0 } }, + // Perpetual Ray + { 5046, { 0, 0, 0, 0, 0, 0, 0 } }, + // Perpetual Ray + { 5047, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dragon Stomp + { 5048, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dark Fire III + { 5049, { 0, 0, 0, 0, 0, 0, 0 } }, + // Reflect + { 5050, { 0, 0, 0, 0, 0, 0, 0 } }, + // Double + { 5051, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Nisi + { 5053, { 0, 0, 0, 0, 0, 0, 0 } }, + // Judgment Nisi + { 5054, { 0, 0, 0, 0, 0, 0, 0 } }, + // Death Ray + { 5058, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breach Blast + { 5061, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breach Blast + { 5062, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Disruption + { 5063, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Disruption + { 5064, { 0, 0, 0, 0, 0, 0, 0 } }, + // Levinfang + { 5065, { 0, 0, 0, 0, 0, 0, 0 } }, + // Howl + { 5067, { 0, 0, 0, 0, 0, 0, 0 } }, + // Sanguine Bite + { 5068, { 0, 0, 0, 0, 0, 0, 0 } }, + // Raiton + { 5069, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brainshaker + { 5070, { 0, 0, 0, 0, 0, 0, 0 } }, + // Brainshaker + { 5071, { 0, 0, 0, 0, 0, 0, 0 } }, + // Seed of the Sky + { 5072, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cure + { 5073, { 0, 0, 0, 0, 0, 0, 0 } }, + // Cetacean Rage + { 5075, { 0, 0, 0, 0, 0, 0, 0 } }, + // Primal Tears + { 5076, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breach Blast + { 5077, { 0, 0, 0, 0, 0, 0, 0 } }, + // Howling Wing + { 5079, { 0, 0, 0, 0, 0, 0, 0 } }, + // Extreme Wind + { 5080, { 0, 0, 0, 0, 0, 0, 0 } }, + // Baleen Bomb + { 5081, { 0, 0, 0, 0, 0, 0, 0 } }, + // Vacuum Wave + { 5082, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Disruption + { 5083, { 0, 0, 0, 0, 0, 0, 0 } }, + // Thunderhead + { 5084, { 0, 0, 0, 0, 0, 0, 0 } }, + // Lightning Bolt + { 5085, { 0, 0, 0, 0, 0, 0, 0 } }, + // Breach Blast + { 5086, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atmospheric Disruption + { 5087, { 0, 0, 0, 0, 0, 0, 0 } }, + // Falling Sky + { 5088, { 0, 0, 0, 0, 0, 0, 0 } }, + // Dry Fin + { 5089, { 0, 0, 0, 0, 0, 0, 0 } }, + // Wet Fin + { 5090, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bubo Burst + { 5091, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 5092, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 5093, { 0, 0, 0, 0, 0, 0, 0 } }, + // Aero + { 5094, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Revolution + { 5095, { 0, 0, 0, 0, 0, 0, 0 } }, + // Mortal Revolution + { 5096, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blinding Blade + { 5098, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Tail + { 5099, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Seeing Wing + { 5100, { 0, 0, 0, 0, 0, 0, 0 } }, + // Revengeance + { 5101, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 5102, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 5103, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 5104, { 0, 0, 0, 0, 0, 0, 0 } }, + // Prelude to Slaughter + { 5105, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 5106, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 5107, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 5108, { 0, 0, 0, 0, 0, 0, 0 } }, + // Slaughter + { 5109, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tapasya + { 5110, { 0, 0, 0, 0, 0, 0, 0 } }, + // Tapasya + { 5111, { 0, 0, 0, 0, 0, 0, 0 } }, + // Atma-Linga + { 5112, { 0, 0, 0, 0, 0, 0, 0 } }, + // Bloody Fuller + { 5113, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Moon + { 5116, { 0, 0, 0, 0, 0, 0, 0 } }, + // Chandrahas + { 5117, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Conviction + { 5118, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Conquest + { 5119, { 0, 0, 0, 0, 0, 0, 0 } }, + // Pillars of Heaven + { 5120, { 0, 0, 0, 0, 0, 0, 0 } }, + // Surpanakha + { 5121, { 0, 0, 0, 0, 0, 0, 0 } }, + // the Rose of Hate + { 5122, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 5123, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 5124, { 0, 0, 0, 0, 0, 0, 0 } }, + // Laughing Moon + { 5125, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 5126, { 0, 0, 0, 0, 0, 0, 0 } }, + // Swift Slaughter + { 5127, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blades of Carnage and Liberation + { 5128, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fire + { 5129, { 0, 0, 0, 0, 0, 0, 0 } }, + // Blizzard + { 5130, { 0, 0, 0, 0, 0, 0, 0 } }, + // Attack + { 5134, { 0, 0, 0, 0, 0, 0, 0 } }, + // Final Liberation + { 5135, { 0, 0, 0, 0, 0, 0, 0 } }, + // Ripper Claw + { 5137, { 0, 0, 0, 0, 0, 0, 0 } }, + // Fireball + { 5138, { 0, 0, 0, 0, 0, 0, 0 } }, + // Stone Gaze + { 5140, { 0, 0, 0, 0, 0, 0, 0 } }, + // Syrup + { 5141, { 0, 0, 0, 0, 0, 0, 0 } }, + + }; \ No newline at end of file diff --git a/src/world/Action/EffectBuilder.cpp b/src/world/Action/EffectBuilder.cpp index a948da15..e5ab8633 100644 --- a/src/world/Action/EffectBuilder.cpp +++ b/src/world/Action/EffectBuilder.cpp @@ -126,6 +126,7 @@ std::shared_ptr< FFXIVPacketBase > EffectBuilder::buildNextEffectPacket( uint32_ uint64_t* pEffectTargetId; effectResult->data().ActionKey = m_actionId; + effectResult->data().ActionKind = 1; effectResult->data().Action = static_cast< uint16_t >( m_actionId ); effectResult->data().MainTarget = m_sourceChara->getId(); effectResult->data().DirTarget = Common::Util::floatToUInt16Rot( m_sourceChara->getRot() ); diff --git a/src/world/Actor/BNpc.cpp b/src/world/Actor/BNpc.cpp index 5a488b0e..5195f3b1 100644 --- a/src/world/Actor/BNpc.cpp +++ b/src/world/Actor/BNpc.cpp @@ -899,7 +899,7 @@ void Sapphire::Entity::BNpc::autoAttack( CharaPtr pTarget ) effectEntry.Value = static_cast< int16_t >( damage.first ); effectEntry.Type = ActionEffectType::CALC_RESULT_TYPE_DAMAGE_HP; effectEntry.Arg0 = static_cast< uint8_t >( damage.second ); - effectEntry.Arg2 = 0x71; + //effectEntry.Arg2 = 0x71; effectPacket->addEffect( effectEntry, static_cast< uint64_t >( pTarget->getId() ) ); sendToInRangeSet( effectPacket ); diff --git a/src/world/Actor/Player.cpp b/src/world/Actor/Player.cpp index b3de384b..d183bf50 100644 --- a/src/world/Actor/Player.cpp +++ b/src/world/Actor/Player.cpp @@ -1173,6 +1173,11 @@ void Sapphire::Entity::Player::update( uint64_t tickCount ) Chara::update( tickCount ); } +void Sapphire::Entity::Player::setLastAttack( uint64_t tickCount ) +{ + m_lastAttack = tickCount; +} + void Sapphire::Entity::Player::freePlayerSpawnId( uint32_t actorId ) { auto spawnId = m_actorSpawnIndexAllocator.freeUsedSpawnIndex( actorId ); @@ -1506,12 +1511,12 @@ void Sapphire::Entity::Player::autoAttack( CharaPtr pTarget ) if( getClass() == ClassJob::Machinist || getClass() == ClassJob::Bard || getClass() == ClassJob::Archer ) { effectPacket->setAnimationId( 8 ); - entry.Arg2 = 0x72; + //entry.Arg2 = 0x72; } else { effectPacket->setAnimationId( 7 ); - entry.Arg2 = 0x73; + //entry.Arg2 = 0x73; } effectPacket->setRotation( Util::floatToUInt16Rot( getRot() ) ); diff --git a/src/world/Actor/Player.h b/src/world/Actor/Player.h index a5d10de8..0830e567 100644 --- a/src/world/Actor/Player.h +++ b/src/world/Actor/Player.h @@ -94,6 +94,8 @@ namespace Sapphire::Entity /*! Event called on every session iteration */ void update( uint64_t tickCount ) override; + void setLastAttack( uint64_t tickCount ); + // Quest ////////////////////////////////////////////////////////////////////////////////////////////////////// /*! load data for currently active quests */ diff --git a/src/world/Manager/ActionMgr.cpp b/src/world/Manager/ActionMgr.cpp index 6ece6cf4..071f467e 100644 --- a/src/world/Manager/ActionMgr.cpp +++ b/src/world/Manager/ActionMgr.cpp @@ -134,6 +134,7 @@ void World::Manager::ActionMgr::bootstrapAction( Entity::Player& player, // todo: what do in cases of swiftcast/etc? script callback? currentAction->start(); + player.setLastAttack( Common::Util::getTimeMs() ); } } diff --git a/src/world/Math/CalcStats.cpp b/src/world/Math/CalcStats.cpp index bf5c7106..eec5070f 100644 --- a/src/world/Math/CalcStats.cpp +++ b/src/world/Math/CalcStats.cpp @@ -587,7 +587,7 @@ std::pair< float, Sapphire::Common::ActionHitSeverityType > CalcStats::calcAutoA // Logger::debug( format, pot, aa, ap, det, ten, factor ); } - return std::pair( factor * 3, hitType ); + return std::pair( factor, hitType ); } std::pair< float, Sapphire::Common::ActionHitSeverityType > CalcStats::calcActionDamage( const Sapphire::Entity::Chara& chara, uint32_t ptc, float wepDmg ) diff --git a/src/world/Network/PacketWrappers/EffectPacket.h b/src/world/Network/PacketWrappers/EffectPacket.h index 89e552c9..106a5a8c 100644 --- a/src/world/Network/PacketWrappers/EffectPacket.h +++ b/src/world/Network/PacketWrappers/EffectPacket.h @@ -20,7 +20,9 @@ namespace Sapphire::Network::Packets::WorldPackets::Server m_data.Flag = 0; m_data.ActionKey = actionId; m_data.Action = static_cast< uint16_t >( actionId ); + m_data.ActionKind = 1; + m_data.LockTime = 0.6f; m_data.MainTarget = static_cast< uint64_t >( targetId ); m_data.ActionArg = Common::ActionEffectDisplayType::ShowActionName;