Final Fantasy Wiki
Advertisement

Template:Sideicon Template:FFVII Enemy The Gigas is an enemy from Final Fantasy VII fought in the slope of Whirlwind Maze and in the seventh round of the Battle Square after the player acquires the Highwind and Cloud Strife rejoins the party. When fought on the Battle Square its stats are enhanced with double the normal HP and its Attack and Magic Attack are increased by 25%.

For some reason, the Gigas doesn't appear in the European Final Fantasy VII strategy guide bestiary.

Formations

# Formation
721 Gigas

Locations

North Crater
Descent 721
Battle Square (with Highwind available)
Group A - Battle 7 721

Battle

Gigas uses two physical attacks, Moon Wars and Squash. His first attack, inflicts non-elemental damage to one party member, this attack may it uses up to three times instead of Quake3 when his MP is lower that 68. In the case of Squash attack, which it can use as a counter against magical damage up to three times once its HP drops to HP Critical status. It can also use the powerful Quake3 spell, which can inflict up to 1500-3000 damage. It is advised to use Frog Song to inflict Sleep, then use L4 Suicide to reduce its HP low enough that the next party member can finish it off.

Gigas has the rare Gigas Armlet to steal, and also the extremely rare Earth Mallet to win, which the player can only obtain from the Gigas as long as the player did not steal the Gigas Armlet first.

AI script

AI: Setup
{
   Count = Rnd(0..3)
   SpclChance = 5
}
AI: Main
{
   If (Count == 0 or 1) Then
   {
      Choose Random Opponent
      Use Moon Wars on Target
      Count = Count + 1
   } Else If (Count == 2) Then {
      Choose Random Opponent
      Use <Squash> on Target
      Count = 3
   } Else {
      If (Rnd(1..SpclChance) == 1) Then
      {
         If (Gigas' MP >= 68) Then
         {
            Choose All Opponents
            Use Quake3 on Target
         } Else {
            If (SpclChance < 4) Then
            {
               Choose Random Opponent
               Use Moon Wars on Target
               Choose Random Opponent
               Use Moon Wars on Target
               Choose Random Opponent
               Use Moon Wars on Target
            } Else {
               Choose Random Opponent
               Use Moon Wars on Target
               If (Rnd(1..SpclChance) == 1) Then
               {
                  Choose Random Opponent
                  Use Moon Wars on Target
               }
               If (Rnd(1..SpclChance) == 1) Then
               {
                  Choose Random Opponent
                  Use Moon Wars on Target
               }
            }
         }
      } Else {
         Choose Random Opponent
         Use <Squash> on Target
      }
      Count = 0
   }
}
AI: Counter - General
{
   If (Gigas' HP <= 25% of Gigas' Max HP) Then
   {
      SpclChance = 2
   } Else If (Gigas' HP <= 50% of Gigas' Max HP) Then {
      SpclChance = 3
   } Else If (Gigas' HP <= 75% of Gigas' Max HP) Then {
      SpclChance = 4
   } Else {
      SpclChance = 5
   }
}
AI: Counter - Magical
{
   If ((SpclChance < 4) AND (Rnd(1..SpclChance) == 1)) Then
   {
      Choose Random Opponent
      Use <Squash> on Target
      Choose Random Opponent
      Use <Squash> on Target
      Choose Random Opponent
      Use <Squash> on Target
   } Else {
      Choose Random Opponent
      Use <Squash> on Target
      If (Rnd(1..SpclChance) == 1) Then
      {
         Choose Random Opponent
         Use <Squash> on Target
      }
      If (Rnd(1..SpclChance) == 1) Then
      {
         Choose Random Opponent
         Use <Squash> on Target
      }
   }
}

Gallery

Etymology

Gigas is a popular term for races of giants in fantasy games. Gigas is a Greek word meaning "giant", originally used to describe the race of Gigantes in Greek mythology and is used in the scientific name, as the specific epithet, of hundreds of species of animals and dozens of plant species to denote their size.

Advertisement