Couple of fixes.

This commit is contained in:
Viserion 2011-03-06 23:36:12 -06:00
parent f62fe42973
commit 7bdfa60116
2 changed files with 2 additions and 2 deletions

View file

@ -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));
} }

View file

@ -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());