Toxic Frog is an enemy from Final Fantasy VII fought in the Temple of the Ancients and in the third round of the Battle Square on Part II onwards after the player acquires the Highwind and Gold Saucer has reopened. 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%.
Stats[]
Battle[]
Toxic Frogs can be a nuisance, as their Enemy Skill ability Frog Song always puts party members to sleep and turns them into frogs unless they are immune. Its Frog Jab attack can both cause and reverse the Frog status. There is a one-in-three chance that Frog Song may be used as a counter to magic. Toxic Frog can also cast it after using a few Frog Jab attacks, but it will never cast Frog Song on party members who are already frogs. They are weak to Ice.
Strategy[]
Generally, they have no dangerous attacks and can be put down with Aqualung and similar Enemy Skills.
Formations[]
# | Formation |
---|---|
634 | Row 1: Kelzmelzer A, Kelzmelzer B Row 2: Toxic Frog A, Toxic Frog B |
635 | Row 1: Under Lizard Row 2: Toxic Frog A (Covered by Under Lizard), Toxic Frog B (Covered by Under Lizard) |
638 | Row 1: Kelzmelzer Row 2: Toxic Frog A (Covered by Kelzmelzer), Toxic Frog B (Covered by Kelzmelzer) (Back Attack) |
645 | Row 1: Toxic Frog A, Toxic Frog B Row 2: Jemnezmy |
646 | Row 1: Toxic Frog A, Toxic Frog B, Toxic Frog C Row 2: Jemnezmy |
647 | Row 1: Toxic Frog A, Toxic Frog B, Toxic Frog C Row 2: Jemnezmy |
Locations[]
Temple of the Ancients | |
---|---|
Labyrinth | 634, 635, 638 (Back Attack) |
Room I | 645 (event) |
Battle Square (with Highwind available) | |
Group A - Battle 3 | 647 |
Group B - Battle 3 | 645 |
AI script[]
AI: Setup {
- TempVar:Delay = Rnd(0..3)
- TempVar:FrogJabCount = Rnd(1..2)
} AI: Main {
- If (TempVar:FrogJabCount > 0) Then
- {
- Choose Random Opponent
- Use Frog Jab on Target
- TempVar:FrogJabCount = TempVar:FrogJabCount - 1
- } Else If (TempVar:Delay == 0) Then {
- If (At Least One Opponent doesn't have Frog Status) Then
- {
- Choose Random Opponent without Frog Status
- Use Frog Song on Target
- TempVar:Delay = Rnd(0..3)
- } Else {
- If (At Least One Opponent doesn't have Confusion Status) Then
- {
- Choose Random Opponent without Confusion Status
- } Else {
- Choose Random Opponent
- }
- Use Frog Jab on Target
- TempVar:Delay = 0
- }
- } Else {
- TempVar:Delay = TempVar:Delay - 1::
- }
} AI: Counter - Physical {
- If (1/3 Chance) Then
- {
- Choose Toxic Frog's Last Attacker (Physical)
- Use Frog Jab on Target
- }
} AI: Counter - Magical {
- If (1/3 Chance) Then
- {
- Choose Toxic Frog's Last Attacker (Magical)
- Use Frog Song on Target
- }
}