Beachplug is an enemy in Final Fantasy VII found on the beaches in the Corel Area, Gold Saucer Area, and Gongaga Area, and can also be fought in the seventh round of the Battle Square before the player obtains the Tiny Bronco. When fought in the Battle Square its stats are enhanced with double the normal HP and its Attack and Magic Attack are increased by 25%.
The Beachplug has the valuable Big Guard enemy skill to learn, and they morph into Turbo Ethers.
Stats[]
- ↑ Beachplug never uses Big Guard, unless Manipulated.
Formations[]
# | Formation |
---|---|
092 | Row 1: Beachplug A Row 2: Beachplug B, Beachplug C |
093 | Row 1: Beachplug A, Beachplug B, Beachplug C Row 2: Beachplug D[note 1] |
094 | Beachplug A, Beachplug B, Beachplug C (Attack from both sides) |
260 | Beachplug |
261 | Beachplug |
262 | Beachplug |
263 | Beachplug |
- ↑ Covered by Beachplug B
Locations[]
Corel Area | |
---|---|
Beach | 092, 093, 094 |
Gold Saucer Area | |
Beach | 092, 093, 094 |
Gongaga Area | |
Beach | 092, 093, 094 |
Battle Square (before Tiny Bronco) | |
Group A - Battle 7 | 093 |
Battle[]
By using the Manipulate command on it, the party can learn the Enemy Skill Big Guard. Because Big Guard is one of the most useful Enemy Skills in the game, fighting Beachplug just to learn the spell is advisable. The player can't learn the skill from the Battle Square encounter; even if the character appears to have learned it, the spell will be gone from the Materia when they are transported back to the Battle Square area.
After finding the Morph Materia in the Temple of the Ancients, the player can return to the beach near Costa del Sol and morph the Beachplugs into the valuable Turbo Ethers. The process is made easier by using the L4 Suicide on them first.
Strategy[]
Casting Beta or Aqualung will take out a group of them.
AI script[]
AI: Setup {
- Count = Rnd(0..1)
} AI: Main {
- If (Count == 0) Then
- {
- Count = 1
- } Else If (Count == 1) Then {
- Choose Random Opponent
- Use <Bite> on Target
- Count = 0
- } Else If (Count == 2) Then {
- Choose Random Opponent
- If (Beachplug's MP < 4) Then
- {
- Use <Bite> on Target
- } Else {
- Use Ice on Target
- }
- Count = 3
- } Else If (Count == 3) Then {
- Count = 4
- } Else {
- Choose Random Opponent
- Use <Bite> on Target
- Count = 0
- }
} AI: Counter - Magical {
- Count = 2
}