// Flying
this.addAbility(FlyingAbility.getInstance());
// Battalion - Whenever Firemane Avenger and at least two other creatures attack, Firemane Avenger deals 3 damage to target creature or player and you gain 3 life.
Ability ability = new BattalionAbility(new DamageTargetEffect(3));
ability.addTarget(new TargetCreatureOrPlayer());
ability.addEffect(new GainLifeEffect(3));
this.addAbility(ability);
}
public FiremaneAvenger(final FiremaneAvenger card) {