The XCannon is an enemy from Final Fantasy VII. It will target the party at the start of the battle, then countdown on the 5th turn of every run of 6 to Dragon Cannon, a weak attack that hits the entire party for about 100 HP. Otherwise, it never attacks, instead using Search, which does nothing. It boasts 20,000 HP.
XCannon is not immune to Berserk, but does not have an attack specified to use when Berserk. As such, it attempts to use a spell that costs an infinite amount of MP for the rest of the battle, and so the game repeatedly prints "XCannon's skill power is used up".
Stats[]
Formations[]
# | Formation |
---|---|
849 | XCannon |
Locations[]
Sector 8 | |
---|---|
Cannon Infrastructure | 849 |
AI script[]
AI: Main {
- If (Count == 0) Then
- {
- If (2nd Opponent doesn't have Death Status) Then
- {
- Choose 2nd Opponent
- Use Search on Target
- }
- If (1st Opponent doesn't have Death Status) Then
- {
- Choose 1st Opponent
- Use Search on Target
- }
- If (3rd Opponent doesn't have Death Status) Then
- {
- Choose 3rd Opponent
- Use Search on Target
- }
- Print Message [Target: set]
- Print Message [Countdown]
- Count = 1
- } Else If (Count == 1) Then {
- Print Message [3]
- Choose Self
- Use <> on Target
- XCannon's IdleAnim = Cannon Ready
- Count = 2
- } Else If (Count == 2) Then {
- Print Message [2]
- XCannon's IdleAnim = Cannon Primed
- Count = 3
- } Else If (Count == 3) Then {
- Print Message [1]
- Count = 4
- } Else If (Count == 4) Then {
- Print Message [0]
- Choose All Opponents
- Use Dragon Cannon on Target
- Count = 5
- } Else {
- Choose Self
- Use <> on Target
- XCannon's IdleAnim = Cannon Idle
- Count = 0
- }
} AI: Counter - General {
- If (XCannon's IdleAnim == Cannon Idle) Then
- {
- XCannon's HurtAnim = Flinch (Cannon Idle)
- } Else {
- XCannon's HurtAnim = Flinch (Cannon Ready)
- }
}
Other appearances[]
Pictlogica Final Fantasy[]
This section about an enemy in Pictlogica Final Fantasy is empty or needs to be expanded. You can help the Final Fantasy Wiki by expanding it.
Final Fantasy Record Keeper[]
This section about an enemy in Final Fantasy Record Keeper is empty or needs to be expanded. You can help the Final Fantasy Wiki by expanding it.
Mobius Final Fantasy[]
This section in Mobius Final Fantasy is empty or needs to be expanded. You can help the Final Fantasy Wiki by expanding it.