Final Fantasy Wiki
Advertisement

Template:Sideicon

The Dracozombie is an undead dragon enemy from Final Fantasy IX. It can be found in the Iifa Tree on Disc 2 and in certain areas of all the continents on Disc 4: the Zamo Basin on the Mist Continent, the Donna Plains, Magdelene Forest, Triquai Plains on the Outer Continent, the Gusty Valley on the Forgotten Continent, and the Mitmakis Ice Field forest on the Lost Continent.

If its Zombie Breath causes a character to become a zombie, the player can steal a Magic Tag to cure it. Dracozombie can easily be killed with a Life spell.

Stats

AI script

Function Dracozombie_Init (Iifa Tree)
   set attacklist = [ Strike ; Strike ; Thundara ; Thundara ; Zombie Breath ]
   set lvl5deathcounter = ( GetRandom % 3 ) + 2


Function Dracozombie_Init (World Map)
   set attacklist = [ Strike ; Strike ; Strike ; Thundara ; Zombie Breath ; Zombie Breath ; Zombie Breath ]


Function Dracozombie_ATB (Iifa Tree)
   if ( lvl5deathcounter )
      set lvl5deathcounter--
   if ( lvl5deathcounter == 1 )
      set lvl5deathcounter = 0
      if ( GetRandom & 1 )
         set SV_Target = SV_PlayerTeam
         Attack( LV5 Death )
   set selectedattack = RandomAttack( attacklist )
   if ( selectedattack == Strike )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Strike )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Thundara )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Thundara )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Zombie Breath )
         set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | ZOMBIE) )
   Attack( selectedattack )


Function Dracozombie_ATB (World Map)
   if ( !firstattackflag )
      set firstattackflag = TRUE
      if ( !( GetRandom % 3 ) )
         set SV_Target = SV_PlayerTeam
         Attack( LV5 Death )
   set selectedattack = RandomAttack( attacklist )
   if ( selectedattack == Strike )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Strike )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Strike )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Thundara )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Zombie Breath )
         set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | ZOMBIE) )
   elseif ( selectedattack == Zombie Breath )
         set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | ZOMBIE) )
   elseif ( selectedattack == Zombie Breath )
         set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | ZOMBIE) )
   Attack( selectedattack )


Other appearances

Pictlogica Final Fantasy

PFF Dracozombie FFIX
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 Dracozombie FFIX

Dracozombie appears as an enemy in Final Fantasy Record Keeper.

Final Fantasy Brave Exvius

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

Gallery

Etymology

A zombie is an animated corpse resurrected by mystical means, such as necromancy. Since the late 19th century, zombies have acquired popularity in North American and European folklore.

Advertisement