Final Fantasy Wiki
Advertisement

The Gas Ducter is an enemy from Final Fantasy VII fought during the Huge Materia events on the train from North Corel.

Stats[]

Formations[]

# Formation
808 Gas Ducter
809 Gas Ducter A, Gas Ducter B

Locations[]

Coal Train
Cars 808 (event), 809 (event)

Battle[]

It has low HP and can be easily killed. It can use its Punch attack twice in one turn. Its only dangerous attack is Smog Alert, which inflicts a random status ailment—such as Sleep or Poison, Sadness and Darkness—on the target, and it may use it twice in one turn.

Strategy[]

Casting Aqualung is the most efficient way of dealing with these enemies.

AI script[]

AI: Setup {

1/2 Chance: Count = 1
1/2 Chance: Count = 2
SpclChance = 8

} AI: Main {

If (Count < 2) Then
{
Choose Random Opponent
Use <Punch> on Target
If (Rnd(1..SpclChance) == 1) Then
{
Choose Random Opponent
Use <Punch> on Target
}
Count = Count + 1
} Else {
Choose Random Opponent
Use Smog Alert on Target
If (Rnd(1..SpclChance) == 1) Then
{
Choose Random Opponent
Use Smog Alert on Target
}
Count = 0
}

} AI: Counter - General {

If (Gas Ducter's HP <= 25% of Gas Ducter's Max HP) Then
{
SpclChance = 2
} Else If (Gas Ducter's HP <= 50% of Gas Ducter's Max HP) Then {
SpclChance = 3
} Else If (Gas Ducter's HP <= 75% of Gas Ducter's Max HP) Then {
SpclChance = 6
} Else {
SpclChance = 8
}

}

Gallery[]

Related enemies[]

Advertisement