From d6d7a72851a109830e5923e9b6687cf1cb0a9034 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 18 May 2015 21:03:38 +0200 Subject: [PATCH] * Sliver Overlord - Fixed that the searched card was not revealed. --- Mage.Sets/src/mage/sets/planeshift/EladamrisCall.java | 3 --- Mage.Sets/src/mage/sets/scourge/SliverOverlord.java | 8 ++------ 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Mage.Sets/src/mage/sets/planeshift/EladamrisCall.java b/Mage.Sets/src/mage/sets/planeshift/EladamrisCall.java index 02770df1c8e..f4c633499b5 100644 --- a/Mage.Sets/src/mage/sets/planeshift/EladamrisCall.java +++ b/Mage.Sets/src/mage/sets/planeshift/EladamrisCall.java @@ -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)); } diff --git a/Mage.Sets/src/mage/sets/scourge/SliverOverlord.java b/Mage.Sets/src/mage/sets/scourge/SliverOverlord.java index d1bf984773c..082a5673240 100644 --- a/Mage.Sets/src/mage/sets/scourge/SliverOverlord.java +++ b/Mage.Sets/src/mage/sets/scourge/SliverOverlord.java @@ -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"));