Final Fantasy Wiki
Advertisement

Template:Sideicon Template:FFVII Enemies Tonadu is an enemy from Final Fantasy VII fought on the beaches near Temple of the Ancients and in the second round of the Battle Square on disc 2 onwards after Gold Saucer reopens. When fought in the Battle Square its stats are enhanced with double the regular HP and its Attack and Magic Attack are increased by 25%.

Battle

Tonadu uses one physical attack and one wind attack and is not a serious threat. The party can also avoid the area it is found with ease, but if it is fought, the player must not use Aqualung or Earth attacks.

AI Script

AI: Setup {

Count = Rnd(0..3)
SpclChance = 8

} AI: Main {

If (Count == 0 or 1) Then
{
Choose Random Opponent
Use <Claw> on Target
If (Rnd(1..SpclChance) == 1) Then
{
Choose Random Opponent
Use <Claw> on Target
}
Count = Count + 1
} Else If (Count == 2) Then {
Choose Random Opponent
Use <Claw> on Target
If (Rnd(1..SpclChance) == 1) Then
{
Choose Random Opponent
Use <Claw> on Target
}
If (Rnd(1..SpclChance) == 1) Then
{
Count = 3
} Else {
Count = 0
}
} Else {
Choose All Opponents
Use Great Gale on Target
Count = 0
}

} AI: Counter - General {

If (Tonadu's HP <= 25% of Tonadu's Max HP) Then
{
SpclChance = 2
} Else If (Tonadu's HP <= 50% of Tonadu's Max HP) Then {
SpclChance = 3
} Else If (Tonadu's HP <= 75% of Tonadu's Max HP) Then {
SpclChance = 4
} Else {
SpclChance = 8
}

}

Gallery

Template:Gallery

Related Enemies

Advertisement