mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Fixed Necrogen Scudder. Fixed Issue 112.
This commit is contained in:
parent
e9992ada3d
commit
8bcc228aa4
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@ import mage.Constants.Rarity;
|
|||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.LoseLifeSourceEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
|
||||
/**
|
||||
|
@ -50,6 +51,7 @@ public class NecrogenScudder extends CardImpl<NecrogenScudder> {
|
|||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new LoseLifeSourceEffect(3)));
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
public NecrogenScudder (final NecrogenScudder card) {
|
||||
|
|
Loading…
Reference in a new issue