Final Fantasy Wiki
Advertisement

Ralvurahva is a boss from Final Fantasy IX. It attacks Dagger, Steiner, and Marcus as they travel to Alexandria through Gargan Roo.

Stats[]

Battle[]

Ralvurahva can inflict Poison with Devil's Kiss, as well as Slow with String. The boss escapes before the battle is over, letting the party's Gargant continue its journey.

Strategy[]

Marcus should steal the items Ralvurahva has. Steiner should attack, and Dagger should heal the party.

AI script[]

Function Ralvurahva_Init
   set attacklist = [ Devil’s Kiss ; Devil’s Kiss ; Devil’s Kiss ; Devil’s Kiss ; String ; String ; Blizzara ]


Function Ralvurahva_Loop
   if ( !initflag )
      set initflag = TRUE
      set SV_FunctionEnemy[SHADOW] = 0
   if ( SV_FunctionEnemy[HP] <= 10000 )
      set escapeflag = TRUE
      set SV_FunctionEnemy[HP] = SV_FunctionEnemy[MAX_HP]
      if ( !attackcancelled )
         set attackcancelled = 1
         set SV_FunctionEnemy[PREVENT_ATTACK] = 1
         if ( SV_FunctionEnemy[ATB] != SV_FunctionEnemy[MAX_ATB] )
            set SV_FunctionEnemy[ATB] = SV_FunctionEnemy[MAX_ATB] - 1
   Wait( 1 )
   loop


Function Ralvurahva_ATB
   set selectedattack = RandomAttack( attacklist )
   if ( ( #Matching(SV_PlayerTeam[STATUS_CURRENT], POISON) >= 2 ) && !( #Matching(SV_PlayerTeam[STATUS_CURRENT], SLEEP) ) && ( GetRandom % 2 ) )
      set nightmp = 16
      set selectedattack = Night
   if ( ( SV_FunctionEnemy[MP] <= nightmp ) && ( GetRandom % 3) )
      set selectedattack = Devil’s Kiss
   if ( escapeflag )
      set selectedattack = Escape
   if ( selectedattack == Devil’s Kiss )
      set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | POISON) )
      Attack( Devil’s Kiss )
   elseif ( selectedattack == Blizzara )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
      Attack( Blizzara )
   elseif ( selectedattack == String )
      set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | SLOW) )
      Attack( String )
   elseif ( selectedattack == Escape )
      set SV_Target = SV_FunctionEnemy
      Attack( Escape )
   elseif ( selectedattack == Night )
      set SV_Target = SV_PlayerTeam


Other appearances[]

Pictlogica Final Fantasy[]

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

Ralvurahva from Final Fantasy IX appears as an enemy in Final Fantasy Record Keeper.

Gallery[]

Etymology[]

This enemy's name may be a pun on two meanings of the word "larva".

In Roman mythology, lemures (singular lemur) or larvae (singular larva) are shades or spirits of the restless or malignant dead.

A larva (plural: larvae) is a distinct juvenile form many animals undergo before metamorphosis into adults. This contrasts with imago in the adult form, Ralvuimago.

Related enemies[]

Advertisement