Final Fantasy Wiki
Advertisement

Gigan Toad is an enemy from Final Fantasy IX found in Qu's Marshes. Quina can learn Frog Drop from it via the Eat command. This is worth doing if the player is going to partake in the frog catching minigame, as by the endgame, Frog Drop can be Quina's most powerful ability, and it has a low MP cost. Gigan Toad is not a tough foe to defeat, but can put a party member to sleep with its Glowing Eyes attack.

Stats[]

#45

#46

AI script[]

Function Gigan_Toad_Init
   set attacklist = [ Glowing Eyes ; Blizzara ; Water ]


Function Gigan_Toad_ATB
   set selectedattack = RandomAttack( attacklist )
   if ( selectedattack == Glowing Eyes )
      set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | SLEEP) )
   elseif ( selectedattack == Blizzara )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Water )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   if ( ( #NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | VENOM | DEATH | STOP) == 1 ) && ( selectedattack == Glowing Eyes ) )
      set rnd = GetRandom % 3
      if ( rnd == 0 )
         set SV_Target = RandomInTeam(SV_PlayerTeam)
         set selectedattack = Blizzara
      elseif ( rnd == 1 )
         set SV_Target = RandomInTeam(SV_PlayerTeam)
         set selectedattack = Water
   Attack( selectedattack )


Gallery[]

Advertisement