Final Fantasy Wiki
Register
Advertisement

The Carve Spider is an insect enemy from Final Fantasy IX. It can be found on the Mist Continent overworld areas on the plateaus around Dali and Treno and Lindblum. It is not a difficult enemy to defeat, but can be annoying due to its ability to inflict Slow through its Web attack. Its strongest attack, Antenna, can be dealt with Protect, and Fire is hardly a threat at the time it is fought. Eating it learns LV3 Def-less, which also works against itself to reduce its defenses, but this is not needed to defeat it. By backtracking to Lindblum after recruiting Quina, the player can learn LV3 Def-less before even going to Gizamaluke's Grotto.

Stats[]

Formations[]

Enemies Frequency AP
????
None
Carve Spider 0% 2
Carve Spider x2 30% 2
Carve Spider, Axe Beak 40% 2
Axe Beak 0% 2
Axe Beak x2 30% 2
????
None
Python x2 0% 2
Python x3 25% 2
Python, Carve Spider, Python 0% 2
Carve Spider 20% 1
Carve Spider x2 20% 1
Carve Spider, Python 35% 1
????
None
Carve Spider 25% 1
Carve Spider x2 25% 2
Trick Sparrow 25% 1
Trick Sparrow x2 25% 2
????
None
Carve Spider 17% 1
Carve Spider x2 18% 2
Trick Sparrow 17% 1
Trick Sparrow x2 18% 2
Trick Sparrow, Carve Spider 30% 2

AI script[]

Function Carve_Spider_Init
   set attacklist = [ Antenna ; Fire ; Web ]


Function Carve_Spider_ATB
   set selectedattack = RandomAttack( attacklist )
   if ( selectedattack == Antenna )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Fire )
      set SV_Target = RandomInTeam(SV_PlayerTeam)
   elseif ( selectedattack == Web )
      set SV_Target = RandomInTeam( NotMatching(SV_PlayerTeam[STATUS_CURRENT], PETRIFY | DEATH | JUMP | SLOW) )
   Attack( selectedattack )


Gallery[]

Advertisement