fixed Fell Specter not having power or toughness (fixes #5052)

This commit is contained in:
Evan Kranzler 2018-06-22 08:06:24 -04:00
parent b7ae908c6d
commit a418fcf832

View file

@ -1,6 +1,7 @@
package mage.cards.f;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.DiscardsACardOpponentTriggeredAbility;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
@ -24,6 +25,8 @@ public final class FellSpecter extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
this.subtype.add(SubType.SPECTER);
this.power = new MageInt(1);
this.toughness = new MageInt(3);
// Flying
this.addAbility(FlyingAbility.getInstance());