Final Fantasy Wiki
Register
Advertisement

Diver Nest is an enemy from Final Fantasy VII. Both its Bodyblow and Tornade Wave attacks may be used twice in one turn. They can use Big Wave, which hits the entire party, but Diver Nests can be weakened with statuses, as they are immune to none. They are fought in Junon on the way to the Underwater Reactor.

Stats[]

Formations[]

# Formation
764 Diver Nest

Locations[]

Junon Path
Underwater Tunnel 764
Underwater Reactor Entrance 764

AI script[]

AI: Main {

If (Stage == 0) Then
{
Choose Random Opponent
Use <Bodyblow> on Target
} Else If (Stage == 1) Then {
Choose Random Opponent
Use <Bodyblow> on Target
If (1/2 Chance) Then
{
Choose Random Opponent
Use <Bodyblow> on Target
}
} Else If (Stage == 2) Then {
If (1/3 Chance) Then
{
Choose Random Opponent
Use <Bodyblow> on Target
If (1/2 Chance) Then
{
Choose Random Opponent
Use <Bodyblow> on Target
}
} Else {
Choose Random Opponent
Use Tornade Wave on Target
If (1/2 Chance) Then
{
Choose Random Opponent
Use Tornade Wave on Target
}
}
} Else {
If (1/3 Chance) Then
{
Choose Random Opponent
Use Tornade Wave on Target
If (1/2 Chance) Then
{
Choose Random Opponent
Use Tornade Wave on Target
}
} Else {
Choose All Opponents
Use Big Wave on Target
}
}

} AI: Counter - General {

If (Diver Nest's HP <= 25% of Diver Nest's Max HP) Then
{
Stage = 3
} Else If (Diver Nest's HP <= 50% of Diver Nest's Max HP) Then {
Stage = 2
} Else If (Diver Nest's HP <= 75% of Diver Nest's Max HP) Then {
Stage = 1
} Else {
Stage = 0
}

}

Gallery[]

Advertisement