forked from External/mage
fixed Fell Specter not having power or toughness (fixes #5052)
This commit is contained in:
parent
b7ae908c6d
commit
a418fcf832
1 changed files with 3 additions and 0 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue