forked from External/mage
Update SliverOverlord.java
This commit is contained in:
parent
5396cd4cf0
commit
8eda8b9bc3
1 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ import mage.abilities.Ability;
|
|||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.continious.GainControlTargetEffect;
|
||||
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
||||
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
|
|
@ -74,7 +74,7 @@ public class SliverOverlord extends CardImpl<SliverOverlord> {
|
|||
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 SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter)), new ManaCostsImpl("{3}")));
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter)), 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"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue