Final Fantasy Wiki
Register
Advertisement

The Poodler is an enemy from Final Fantasy VII. Unlike most other enemies in the Sunken Gelnika, it is rather weak with relatively low HP and only two attacks, a physical and a Fire attack, which it use only as a counter-attack when below 25% of its Max HP. It drops rare X-Potions and can be morphed into a Speed Source. Magic Breath can help defeat groups of them.

Stats[]

Formations[]

# Formation
796 Row 1: Poodler A
Row 2: Poodler B
797 Row 1: Poodler
Row 2: Bad Rap A, Bad Rap B
799 Bad Rap A, Bad Rap B, Poodler (Attack from both sides)

Locations[]

Sunken Gelnika
Hallway 796, 797, 799 (Attack from both sides)

AI script[]

AI: Setup {

Count = Rnd(0..2)

} AI: Main {

If (Count == 0) Then
{
If (2nd Opponent doesn't have Death Status) Then
{
Choose 2nd Opponent
Use <Bodyblow> on Target
}
Count = 1
} Else If (Count == 1) Then {
If (1st Opponent doesn't have Death Status) Then
{
Choose 1st Opponent
Use <Bodyblow> on Target
}
Count = 2
} Else {
If (3rd Opponent doesn't have Death Status) Then
{
Choose 3rd Opponent
Use <Bodyblow> on Target
}
Count = 0
}

} AI: Counter - General {

If ((Poodler's HP <= 25% of Poodler's Max HP) & (1/3 Chance)) Then
{
If (Poodler's MP >= 4) Then
{
Choose Poodler's Last Attacker (General)
Use Fire on Target
}
}

}

Related enemies[]

Advertisement