The Land Worm is an enemy in Final Fantasy VII, located in Corel Desert.
Stats[]
Formations[]
# | Formation |
---|---|
524 | Land Worm |
Locations[]
Corel Desert | |
---|---|
Endless Desert | 524 |
Battle[]
The Land Worm uses Sandstorm (an attack that hits all allies and may inflict Darkness) and Earthquake (a weaker variant of Quake3). Even though it has plenty of HP, using Ice magic will defeat it quickly. Turbo Ethers can be stolen from them, and this is an early way to obtain these items.
AI script[]
AI: Main {
- If (Land Worm has Poison or Confusion Status) Then
- {
- Choose All Opponents
- Use Sandstorm on Target
- } Else {
- If (Land Worm's HP <= 50% of Land Worm's Max HP) Then
- {
- Choose All Opponents
- 1/2 Chance: Use Sandstorm on Target
- 1/2 Chance: Use Earthquake on Target
- } Else {
- Choose All Opponents
- Use Earthquake on Target
- }
- }
}