Gighee is an enemy from Final Fantasy VII fought in the Northern Cave marshland area.
Stats[]
Formations[]
# | Formation |
---|---|
884 | Christopher, Gighee |
907 | Christopher, Gighee |
Locations[]
Northern Cave | |
---|---|
Water Crossing | 884 |
Water Path | 884 |
Battle[]
Gighee is one of the only enemies that the player can steal Elixirs from. They are always fought alongside Christophers.
It often uses Guitar Slap, which always inflicts Fury and has a chance to be used twice in one turn. Its Petrif-Eye attack always inflicts Petrify, while its Voice of Ages attack will always inflict Silence. Voice of Ages is only used to counter a magical attack by a party member.
It can also use Sun Diver to eject a party member from battle.
AI script[]
AI: Setup {
- Count = Rnd(0..2)
- SpclChance = 6
} AI: Main {
- If (Count == 0 or 1) Then
- {
- If (At Least One Opponent doesn't have Petrify Status) Then
- {
- Choose Random Opponent without Petrify Status
- Use <Guitar Slap> on Target
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use <Guitar Slap> on Target
- }
- }
- Count = Count + 1
- } Else If (Count == 2) Then {
- If ((At Least One Opponent doesn't have Petrify) Then
- {
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use Petrif-Eye on Target
- } Else {
- Choose Random Opponent without Petrify Status
- Use <Guitar Slap> on Target
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use <Guitar Slap> on Target
- }
- }
- }
- If (Rnd(1..SpclChance) == 1) Then
- {
- Count = 3
- } Else {
- Count = Rnd(0..1)
- }
- } Else {
- If ((At Least One Opponent doesn't have Petrify) Then
- {
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use Sun Diver on Target
- } Else {
- Choose Random Opponent without Petrify Status
- Use <Guitar Slap> on Target
- If (Rnd(1..SpclChance) == 1) Then
- {
- Choose Random Opponent without Petrify Status
- Use <Guitar Slap> on Target
- }
- }
- }
- Count = Rnd(0..1)
- }
} AI: Counter - General {
- If (Gighee's HP <= 25% of Gighee's Max HP) Then
- {
- SpclChance = 3
- } Else If (Gighee's HP <= 50% of Gighee's Max HP) Then {
- SpclChance = 4
- } Else If (Gighee's HP <= 75% of Gighee's Max HP) Then {
- SpclChance = 5
- } Else {
- SpclChance = 6
- }
} AI: Counter - Magical {
- If (SpclChance > 2) Then
- {
- If (At Least One Opponent doesn't have Silence Status) Then
- {
- Choose All Opponents
- Use Voice of Ages on Target
- SpclChance = 2
- }
- }
}
Other appearances[]
Mobius Final Fantasy[]
Etymology[]
The katakana for Gighee (a play on 'Gee-gee', an insulting nickname for a bad horse) can also be read as "Ziggy", the persona of David Bowie, "Ziggy Stardust". The model is largely based on this pun, looking like Ziggy Stardust, and with a guitar for a tail. Both Gighee and Christopher use song attacks, and Christopher uses an attack called Stardust March only if Gighee is alive.