Final Fantasy Wiki
Register
Advertisement

The Malboro is an enemy from Final Fantasy IX. It can be found in Pandemonium and in various Mist Continent overworld locations during the endgame. It is a large plant monster that uses status ailment attacks.

Stats[]

Battle[]

Malboro uses Bad Breath from FFIX Remastered

Bad Breath.

While less powerful than the Malboros of other games, it still gives quite an bit of Experience and AP. If eaten, Quina will learn the useful Bad Breath spell. Malboro can inflict Virus.

Strategy[]

Curing Virus with Vaccines should be a priority. Eiko can bypass the effects of Virus by equipping the Guardian Mog ability. Quina's LV3 Def-less works against the Malboro.

AI script[]

Function Malboro_Loop
   if ( GetRandom & 1 )
      set SV_FunctionEnemy[ATB] = SV_FunctionEnemy[MAX_ATB]
      set floatatstart = 1
   set SV_FunctionEnemy[ELEMENT_IMMUNE] &= ~EARTH
   set SV_FunctionEnemy[ELEMENT_WEAK] &= ~WIND
   set phaseremainingcounter = GetRandom & 1


Function Malboro_ATB
   if ( floatatstart )
      set floatatstart = 0
      set phaseremainingcounter = 0
      set SV_Target = SV_FunctionEnemy
      Attack( Continue1 )
   if ( SV_FunctionEnemy[STAND_ANIMATION] == 0 )
      if ( !( phaseremainingcounter++ ) )
         if ( GetRandom & 1 )
            set SV_Target = RandomInTeam( SV_PlayerTeam & ~nastyattackchecklist )
            if ( #SV_Target )
               set nastyattackchecklist |= SV_Target
               Attack( Bad Breath )
      if ( !( GetRandom % 4 ) || ( phaseremainingcounter > 3 ) )
         set phaseremainingcounter = 0
         set SV_Target = SV_FunctionEnemy
         Attack( Continue1 )
      if ( ( GetRandom & 1 ) && ( SV_FunctionEnemy[MP] >= 24 ) )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
         Attack( Thundaga )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
      Attack( Osmose )
   else
      if ( !( phaseremainingcounter++ ) )
         if ( GetRandom & 1 )
            set SV_Target = RandomInTeam( SV_PlayerTeam & ~nastyattackchecklist )
            if ( #SV_Target )
               set nastyattackchecklist |= SV_Target
               Attack( Virus Tentacles )
      if ( !( GetRandom % 4 ) || ( phaseremainingcounter > 3 ) )
         set phaseremainingcounter = 0
         set SV_Target = SV_FunctionEnemy
         Attack( Continue2 )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
      Attack( Absorb )

Function Malboro_Counter
   if ( ( GetAttackCommandId == Skill ) && ( GetAttackId == What's That?! ) )
      return
   if ( !badbreathflag && ( SV_FunctionEnemy[STAND_ANIMATION] == 0 ) && ( SV_FunctionEnemy[HP] < SV_FunctionEnemy[MAX_HP] / 5 ) )
      if ( IsCommandPhysical( GetAttackCommandId ) )
         set SV_Target = GetAttacker
         if ( SV_Target == SV_FunctionEnemy )
            set SV_Target = RandomInTeam(SV_PlayerTeam)
         set badbreathflag = 1
         Attack( Bad Breath )

Function Malboro_CounterEx
   if ( GetAttackId == Continue1 )
      set SV_FunctionEnemy[ELEMENT_IMMUNE] |= EARTH
      set SV_FunctionEnemy[ELEMENT_WEAK] |= WIND
   if ( GetAttackId == Continue2 )
      set SV_FunctionEnemy[ELEMENT_IMMUNE] &= ~EARTH
      set SV_FunctionEnemy[ELEMENT_WEAK] &= ~WIND


Tetra Master[]

Tetra Master
Malboro
#049
Location: Treno Card Stadium "Malboro Master Joe" and Lucious Ellie (Treno Dome disc 3)


Other appearances[]

Final Fantasy Record Keeper[]

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

Gallery[]

Etymology[]

The name may be a reference to Marlboro Cigarettes, since the creatures often spew horrid fumes from their mouths.

Advertisement