1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-09 01:01:06 -09:00

* Sliver Overlord - Fixed that the searched card was not revealed.

This commit is contained in:
LevelX2 2015-05-18 21:03:38 +02:00
parent 27cbe6a463
commit d6d7a72851
2 changed files with 2 additions and 9 deletions
Mage.Sets/src/mage/sets

View file

@ -52,9 +52,6 @@ public class EladamrisCall extends CardImpl {
super(ownerId, 106, "Eladamri's Call", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{G}{W}");
this.expansionSetCode = "PLS";
this.color.setGreen(true);
this.color.setWhite(true);
// Search your library for a creature card, reveal that card, and put it into your hand. Then shuffle your library.
this.getSpellAbility().addEffect(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true));
}

View file

@ -65,16 +65,12 @@ public class SliverOverlord extends CardImpl {
this.subtype.add("Sliver");
this.subtype.add("Mutant");
this.color.setRed(true);
this.color.setBlue(true);
this.color.setGreen(true);
this.color.setBlack(true);
this.color.setWhite(true);
this.power = new MageInt(7);
this.toughness = new MageInt(7);
// {3}: Search your library for a Sliver card, reveal that card, and put it into your hand. Then shuffle your library.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter)), new ManaCostsImpl("{3}")));
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true), new ManaCostsImpl("{3}")));
// {3}: Gain control of target Sliver.
Ability ability = (new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainControlTargetEffect(Duration.EndOfGame), new ManaCostsImpl("{3}")));
Target target = new TargetPermanent(new FilterCreaturePermanent("Sliver","Sliver"));