mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Couple of fixes.
This commit is contained in:
parent
f62fe42973
commit
7bdfa60116
2 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ public class SquadronHawk extends CardImpl<SquadronHawk> {
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
TargetCardInLibrary target = new TargetCardInLibrary(3, filter);
|
TargetCardInLibrary target = new TargetCardInLibrary(0, 3, filter);
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryRevealPutInHandEffect(target), true));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryRevealPutInHandEffect(target), true));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ public class Gravedigger extends CardImpl<Gravedigger> {
|
||||||
this.subtype.add("Zombie");
|
this.subtype.add("Zombie");
|
||||||
this.color.setBlack(true);
|
this.color.setBlack(true);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(), true);
|
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(), true);
|
||||||
ability.addTarget(new TargetCardInYourGraveyard());
|
ability.addTarget(new TargetCardInYourGraveyard());
|
||||||
|
|
Loading…
Reference in a new issue