Grangalan is an enemy in Final Fantasy VII found on the beaches in the Corel Area and Gold Saucer Area, and can also be fought in the final 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%.
Stats[]
Formations[]
# | Formation |
---|---|
084 | Row 1: Grangalan Jr.Jr. A, Grangalan Jr.Jr. B, Grangalan Jr.Jr. C Row 2: Grangalan Jr.* Covered by Grangalan Jr.Jr. A Row 3: Grangalan* Covered by Grangalan Jr.Jr. A, Grangalan Jr. |
085 | Row 1: Grangalan Jr.Jr. A, Grangalan Jr.Jr. B, Grangalan Jr.Jr. C Row 2: Grangalan Jr.* Covered by Grangalan Jr.Jr. A Row 3: Grangalan* Covered by Grangalan Jr.Jr. A, Grangalan Jr. |
086 | Row 1: Grangalan Jr.Jr. A, Grangalan Jr.Jr. B, Grangalan Jr.Jr. C Row 2: Grangalan Jr.* Covered by Grangalan Jr.Jr. A Row 3: Grangalan* Covered by Grangalan Jr.Jr. A, Grangalan Jr. |
087 | Row 1: Grangalan Jr.Jr. A, Grangalan Jr.Jr. B, Grangalan Jr.Jr. C Row 2: Grangalan Jr.* Covered by Grangalan Jr.Jr. A Row 3: Grangalan* Covered by Grangalan Jr.Jr. A, Grangalan Jr. |
Locations[]
Corel Area | |
---|---|
Grass | 084 |
Dirt | 086 |
Beach | 085 |
Gold Saucer Area | |
Beach | 085 |
Gongaga Area | |
Beach | 085 |
Battle Square (before Tiny Bronco) | |
Group A - Battle 8 | 085 |
Group B - Battle 8 | 085 |
Battle[]
Grangalan will either attack or spawn miniature versions of itself. Its Darkeye attack may inflict Darkness on one character. The smaller versions can spawn even smaller versions, resulting in up to three different sizes of Grangalan. If the original Grangalan is defeated, the smaller versions will also be defeated and the battle won without having to fight them. However, the Grangalan cannot be attacked physically after it spawns miniatures without a long range weapon or a spell. It is susceptible to L4 Suicide.
AI script[]
AI: Main {
- If (Stage == 0) Then
- {
- Choose Random Opponent
- Use Silver Wheel on Target
- } Else {
- If (Grangalan's [402B] == 1) Then
- {
- If (Count >= 4) Then
- {
- Count = 0
- Choose Random Opponent
- Use Silver Wheel on Target
- } Else {
- Count = Count + 1
- }
- } Else {
- If (Count >= 4) Then
- {
- Count = 0
- Use Darkeye on Target
- } Else {
- Count = Count + 1
- Use Silver Wheel on Target
- }
- }
- }
} AI: Counter - General {
- Count = Count + 1
- If ((Count >= 3) AND (Stage == 0)) Then
- {
- Choose Self
- Use <Put out> on Target
- Activate Grangalan Jr.
- Stage = 1
- }
- If (Count > 3) Then
- {
- Count = 0
- }
} AI: Counter - Death {
- Choose Self
- Use <Vanish> on Target
- Remove Grangalan Jr.
- Remove all Grangalan Jr.Jrs.
}