From ec6f19f41f2e8f4ee2cf915570e60c3a04b8b61a Mon Sep 17 00:00:00 2001 From: drmDev Date: Sun, 23 Apr 2017 19:48:04 -0400 Subject: [PATCH] fixes #3226 wirefly tokens have flying --- Mage.Sets/src/mage/cards/w/WireflyHive.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/w/WireflyHive.java b/Mage.Sets/src/mage/cards/w/WireflyHive.java index a57ec8e7668..e843b17b297 100644 --- a/Mage.Sets/src/mage/cards/w/WireflyHive.java +++ b/Mage.Sets/src/mage/cards/w/WireflyHive.java @@ -35,6 +35,7 @@ import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.effects.common.CreateTokenEffect; import mage.abilities.effects.common.DestroyAllEffect; import mage.abilities.effects.common.FlipCoinEffect; +import mage.abilities.keyword.FlyingAbility; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; @@ -74,12 +75,13 @@ public class WireflyHive extends CardImpl { class WireflyToken extends Token { WireflyToken() { - super("Wirefly", "2/2 colorless Insect artifact creature token named Wirefly"); + super("Wirefly", "2/2 colorless Insect artifact creature token with flying named Wirefly"); this.setOriginalExpansionSetCode("DST"); this.getPower().modifyBaseValue(2); this.getToughness().modifyBaseValue(2); this.getSubtype(null).add("Insect"); this.addCardType(CardType.ARTIFACT); this.addCardType(CardType.CREATURE); + this.addAbility(FlyingAbility.getInstance()); } }