mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fixed Thrummingbird that missed Flying.
This commit is contained in:
parent
f01ea0c775
commit
32561892ac
1 changed files with 3 additions and 1 deletions
|
@ -36,6 +36,7 @@ import mage.Constants.Rarity;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.effects.common.counter.ProliferateEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.DamagedPlayerEvent;
|
||||
|
@ -43,7 +44,7 @@ import mage.game.events.GameEvent;
|
|||
import mage.game.permanent.Permanent;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
* @author Loki, nantuko
|
||||
*/
|
||||
public class Thrummingbird extends CardImpl<Thrummingbird> {
|
||||
|
||||
|
@ -55,6 +56,7 @@ public class Thrummingbird extends CardImpl<Thrummingbird> {
|
|||
this.color.setBlue(true);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
this.addAbility(new ThrummingbirdTriggeredAbility());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue