Final Fantasy Wiki
Advertisement

The Dracozombie is an undead dragon-type enemy from Final Fantasy IX. It can be found in the Iifa Tree during the party's venture there with Zidane, Dagger, Vivi and Eiko, and in certain areas of all the continents during the endgame: 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. It is susceptible to Quina's LV3 Def-less and LV4 Holy, but Quina is not in the party when the party heads to the Iifa Tree.

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[]

Dracozombies appear in the Final Fantasy IX event Iifa Tree, where they serve as bonus mobs, dropping massive amounts of Dracozombie's Talons, the event's currency.

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