Final Fantasy Wiki
mNo edit summary
m (Bot: Changing template: Enemy-stub)
(36 intermediate revisions by 16 users not shown)
Line 1: Line 1:
  +
{{sideicon|prime=FFIX|PFF|FFRK}}
{{FFIX Enemies
 
  +
{{infobox enemy
  +
| release = FFIX
 
|name = Worm Hydra
 
|name = Worm Hydra
|image = [[Image:WormHydra-FFIX.jpg|250px]]
+
| image = WormHydra-FFIX.jpg
 
| japanese = ワームヒュドラ
|Location = Mount Gulug, Salvage Archipelago, Uaho Island
 
 
| romaji = Wāmuhyudora
|level = 37
 
 
|location = [[Mount Gulug (Final Fantasy IX)|Mount Gulug]], Salvage Archipelago, Uaho Island, Seqay Canyon
|HP = 4,846
 
  +
|aiscript=true
|MP = 1,268
 
|Speed = 46
 
|Battle Power = 50
 
|Defense = 28
 
|Magic Power = 16
 
|Magic Defense = 10
 
|Evade = 4
 
|MBlock = 6
 
|japan = ワームヒュドラ
 
|romaji = Wāmuhyudora
 
|Exp = 8,010
 
|Gil = 1,345
 
|AP = 3
 
|Steal = Hi-Potion, Antidote
 
|Win = Nothing
 
|Card = Feather Circle
 
|Weak Against = [[Ice (Element)|Ice]]
 
|Resistant to = [[Fire (Element)|Fire]]
 
|Immune to = N/A
 
|Absorbs = N/A
 
|Protected Against = [[Confusion]], [[Berserk (Status)|Berserk]], [[Vanish]]
 
|Attack = [[List of Final Fantasy IX Enemy Abilities#L|Lightning]], Aero Breath, Flame, Venom Breath, Cold Breath
 
|Eat = Bad Breath
 
|Class = Dragon
 
|Other Information =
 
 
}}
 
}}
The '''Worm Hydra''' is a dragon enemy from ''[[Final Fantasy IX]]''. The party can find it on [[Mount Gulug (Final Fantasy IX)|Mount Gulug]] and the [[List of Final Fantasy IX Locations#Salvage Archipelago|Salvage Archipelago]] on the [[Forgotten Continent]], as well as various forests throughout the world on disc four. It can also be found in the forest on Uaho Island, outside of [[Chocobo's Paradise]].
+
The '''Worm Hydra''' is a dragon enemy from ''[[Final Fantasy IX]]''. The party can find it on [[Mount Gulug (Final Fantasy IX)|Mount Gulug]] and the [[Final Fantasy IX locations#Salvage Archipelago|Salvage Archipelago]] on the [[Forgotten Continent]], as well as various [[forest]]s throughout [[Gaia (Final Fantasy IX)|Gaia]] on disc four. It can also be found in the forest on Uaho Island, outside of [[Chocobo's Paradise]].
  +
[[Category:Final Fantasy IX Enemies]]
 
  +
==Stats==
  +
{{infobox enemy stats FFIX
  +
| name = Worm Hydra
  +
| prev = Grenade (Final Fantasy IX)
  +
| bestiary = 134
  +
| next = Wraith (Final Fantasy IX)
  +
| location = [[Mount Gulug (Final Fantasy IX)|Mount Gulug]], Salvage Archipelago, Uaho Island, Seqay Canyon
 
| level = 37
  +
| hp = 4846
  +
| mp = 1268
  +
| attack power = 50
 
| speed = 46
  +
| strength = 16
 
| magic = 16
 
| spirit = 28
  +
| defense = 10
 
| evade = 4
  +
| magic defense = 10
  +
| magic evade = 6
  +
| exp = 8010
  +
| gil = 1345
  +
| dragon = true
  +
| fire = Half
  +
| ice = Weak
  +
| virus = Immune
  +
| confuse = Immune
  +
| berserk = Immune
  +
| auto-life = Immune
  +
| trance = Immune
  +
| defend = Immune
  +
| vanish = Immune
  +
| steal 1 = [[Final Fantasy IX items#Hi-Potion|Hi-Potion]]
  +
| steal 2 = [[Final Fantasy IX items#Antidote|Antidote]]
 
| card = Feather Circle
 
| blue magic = Bad Breath
  +
| abilities = [[Final Fantasy IX enemy abilities#Lightning|Lightning]], [[Final Fantasy IX enemy abilities#Flame|Flame]], [[Final Fantasy IX enemy abilities#Aero Breath|Aero Breath]], [[Final Fantasy IX enemy abilities#Venom Breath|Venom Breath]], [[Final Fantasy IX enemy abilities#Cold Breath|Cold Breath]]
 
| ap = 3
  +
}}
  +
  +
== Battle ==
  +
The party can catch [[Freeze (status)|Freeze]] and [[Venom (status)|Venom]] from Worm Hydra's [[Cold Breath]] and [[Poison Breath|Venom Breath]] attacks, respectively. If the player has not learned it yet, [[Quina Quen|Quina]] can [[Eat (command)#Final Fantasy IX)|eat]] a Worm Hydra for the [[Bad Breath]] spell.
  +
  +
=== Strategy ===
  +
Before fighting a Worm Hydra, it is advised to equip the [[Final Fantasy IX support abilities#Antibody|Antibody]] and [[Final Fantasy IX support abilities#Body Temp|Body Temp]] support abilities. It is also recommended to equip any equipment that reduces elemental damage or absorbs [[Lightning (element)|Lightning]], [[Wind (element)|Wind]], or [[Fire (element)|Fire]] to help with its remaining attacks. It can then be dealt with through the use of [[Attack (command)#Final Fantasy IX|physical attacks]] or Ice-elemental attacks, such as [[Blizzaga (ability)|Blizzaga]].
  +
  +
== AI script ==
  +
{{AI FFIX|code=
  +
Function Worm_Hydra_ATB
  +
:set tmpattackcounter = attackcounter
  +
:set attackcounter++
  +
:if ( attackcounter >= 5 )
  +
::set attackcounter = 0
  +
:if ( tmpattackcounter == 0 )
  +
::set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY │ DEATH │ JUMP │ VENOM) )
  +
::Attack( Venom Breath )
  +
:elseif ( tmpattackcounter == 1 )
  +
::set SV_Target = RandomInTeam(SV_PlayerTeam)
  +
::Attack( Aero Breath )
  +
:elseif ( tmpattackcounter == 2 )
  +
::set SV_Target = SV_PlayerTeam
  +
::Attack( Flame )
  +
:elseif ( tmpattackcounter == 3 )
  +
::set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY │ DEATH │ JUMP │ FREEZE) )
  +
::Attack( Cold Breath )
  +
:else
  +
::set SV_Target = RandomInTeam(SV_PlayerTeam)
  +
::Attack( Lightning )
  +
}}
  +
  +
==Other appearances==
  +
===''[[Pictlogica Final Fantasy]]''===
  +
{{Enemy section|Pictlogica Final Fantasy}}
  +
  +
=== ''[[Final Fantasy Record Keeper]]'' ===
  +
[[File:FFRK Worm Hydra FFIX.png|right|80px]]
  +
The Worm Hydra from ''Final Fantasy IX'' appears as an enemy in ''Final Fantasy Record Keeper''.
  +
{{clear}}
  +
  +
== Gallery ==
  +
<gallery>
  +
WormHydraArt.png|Artwork.
  +
Aero Breath.png|Aero Breath.
  +
FFIX Flame.png|[[Flame (ability)|Flame]].
  +
</gallery>
  +
[[Category:Enemies in Final Fantasy IX]]
 
[[Category:Final Fantasy IX Edible Enemies]]

Revision as of 16:48, 13 January 2020

Template:Sideicon

The Worm Hydra is a dragon enemy from Final Fantasy IX. The party can find it on Mount Gulug and the Salvage Archipelago on the Forgotten Continent, as well as various forests throughout Gaia on disc four. It can also be found in the forest on Uaho Island, outside of Chocobo's Paradise.

Stats

Battle

The party can catch Freeze and Venom from Worm Hydra's Cold Breath and Venom Breath attacks, respectively. If the player has not learned it yet, Quina can eat a Worm Hydra for the Bad Breath spell.

Strategy

Before fighting a Worm Hydra, it is advised to equip the Antibody and Body Temp support abilities. It is also recommended to equip any equipment that reduces elemental damage or absorbs Lightning, Wind, or Fire to help with its remaining attacks. It can then be dealt with through the use of physical attacks or Ice-elemental attacks, such as Blizzaga.

AI script

Function Worm_Hydra_ATB
   set tmpattackcounter = attackcounter
   set attackcounter++
   if ( attackcounter >= 5 )
      set attackcounter = 0
   if ( tmpattackcounter == 0 )
      set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | VENOM) )
      Attack( Venom Breath )
   elseif ( tmpattackcounter == 1 )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
      Attack( Aero Breath )
   elseif ( tmpattackcounter == 2 )
      set SV_Target = SV_PlayerTeam
      Attack( Flame )
   elseif ( tmpattackcounter == 3 )
      set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | FREEZE) )
      Attack( Cold Breath )
   else
      set SV_Target = RandomInTeam(SV_PlayerTeam)
      Attack( Lightning )


Other appearances

Pictlogica Final Fantasy

Baknamy FFTA2This section about an enemy in Pictlogica Final Fantasy is empty or needs to be expanded. You can help the Final Fantasy Wiki by expanding it.

Final Fantasy Record Keeper

FFRK Worm Hydra FFIX

The Worm Hydra from Final Fantasy IX appears as an enemy in Final Fantasy Record Keeper.

Gallery