Final Fantasy Wiki
Advertisement

Sculpture is an enemy from Final Fantasy VII. It can be found at the Whirlwind Maze and in the sixth 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%.

Stats[]

Formations[]

# Formation
725 Sculpture A, Sculpture B
727 Row 1: Gremlin A, Gremlin B
Row 2: Sculpture

Locations[]

Whirlwind Maze
Winding Path 725, 727
Battle Square (with Highwind available)
Group A - Battle 6 727

Battle[]

Sculpture's only attacks are a physical, and a Fire attack, which may it use up three times depending on his HP. One use of L4 Suicide and a physical attack is more than enough to defeat it. Furthermore, an attack that is Holy-elemental, such as a physical attack from a character with Alexander Materia linked to Elemental in their weapon, will instantly destroy them.

AI script[]

AI: Setup {

Stage = 2
SpclChance = 4

} AI: Main {

If (Rnd(1..SpclChance) == 1) Then
{
If (Stage < 1) Then
{
Choose Random Opponent
Use Fire Shell on Target
}
If (Stage < 2) Then
{
Choose Random Opponent
Use Fire Shell on Target
}
Choose Random Opponent
Use Fire Shell on Target
} Else {
Choose Random Opponent
Use <Bodyblow> on Target
}

} AI: Counter - General {

If (Sculpture's HP <= 1 * [Sculpture's Max HP / 3]) Then
{
Stage = 0
SpclChance = 2
} Else If (Sculpture's HP <= 1 * [Sculpture's Max HP / 3]) Then {
Stage = 1
SpclChance = 3
} Else {
Stage = 2
SpclChance = 4
}

}

Advertisement