Shred is an enemy from Final Fantasy VII, fought on the Great Glacier and in the fifth 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%. Shreds are also fought on the fifth round of the PC version Battle Square demo.
It uses two physical attacks, and its Crazy Claw always inflicts Berserk. It may counter attacks with Cure3 to heal any of its party that are at or below 25% of their Max HP. It can cast Cure3 once per battle. It is susceptible to L4 Suicide.
Stats[]
Formations[]
# | Formation |
---|---|
672 | Row 1: Shred A, Shred B Row 2: Shred C |
674 | Row 1: Shred A, Shred B Row 2: Frozen Nail |
Locations[]
Great Glacier | |
---|---|
Ice Gate | 672, 674 |
Forest | 672, 674 |
Frostbite Cave Entrance | 672, 674 |
Snow Paths | 672, 674 |
Ice Paths | 672, 674 |
Forest Paths | 672, 674 |
Rock Paths | 672, 674 |
Upward Paths | 672, 674 |
Downward Paths | 672, 674 |
Battle Square (with Highwind available) | |
Group A - Battle 5 | 672 |
Group B - Battle 5 | 674 |
AI script[]
AI: Main {
- If (TempVar:Cure3 == 0) Then
- {
- Choose Random Opponent with Highest HP
- 1/3 Chance: TempVar:ChosenAtt = Crazy Claw
- 2/3 Chance: TempVar:ChosenAtt = <Tail>
- } Else {
- Choose Random Opponent with Lowest HP
- 1/2 Chance: TempVar:ChosenAtt = Crazy Claw
- 1/2 Chance: TempVar:ChosenAtt = <Tail>
- }
- Use TempVar:ChosenAtt on Target
} AI: Counter - General {
- If ((TempVar:Cure3 == 0) & (Shred's MP >= 64)
- & (Shred's HP <= 25% of Shred's Max HP)) Then
- {
- Choose All Allies with HP Less or Equal to 25% of their Max HP
- Use Cure3 on Target
- TempVar:Cure3 = 1
- }
}