mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Merge branch 'master' of https://github.com/magefree/mage
This commit is contained in:
commit
013eccb6fa
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.s;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -53,7 +52,10 @@ class SagesOfTheAnimaReplacementEffect extends ReplacementEffectImpl {
|
|||
|
||||
public SagesOfTheAnimaReplacementEffect() {
|
||||
super(Duration.WhileOnBattlefield, Outcome.Benefit);
|
||||
staticText = "If you would draw a card, instead reveal the top three cards of your library. Put all creature cards revealed this way into your hand and the rest on the bottom of your library in any order";
|
||||
staticText = "If you would draw a card, instead "
|
||||
+ "reveal the top three cards of your library. "
|
||||
+ "Put all creature cards revealed this way into your hand "
|
||||
+ "and the rest on the bottom of your library in any order";
|
||||
}
|
||||
|
||||
public SagesOfTheAnimaReplacementEffect(final SagesOfTheAnimaReplacementEffect effect) {
|
||||
|
@ -77,7 +79,7 @@ class SagesOfTheAnimaReplacementEffect extends ReplacementEffectImpl {
|
|||
Cards revealedCards = new CardsImpl(player.getLibrary().getTopCards(game, 3));
|
||||
player.revealCards(source, revealedCards, game);
|
||||
Cards creatures = new CardsImpl(revealedCards.getCards(StaticFilters.FILTER_CARD_CREATURE, game));
|
||||
player.moveCards(creatures, Zone.BATTLEFIELD, source, game);
|
||||
player.moveCards(creatures, Zone.HAND, source, game);
|
||||
revealedCards.removeAll(creatures);
|
||||
player.putCardsOnBottomOfLibrary(revealedCards, game, source, true);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue