Merge pull request #2322 from spjspj/master

KLD fixes - paradoxical outcome + bad forest
This commit is contained in:
spjspj 2016-09-19 00:51:07 +10:00 committed by GitHub
commit 44d9836be9
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ import java.util.UUID;
public class Forest1 extends mage.cards.basiclands.Forest {
public Forest1(UUID ownerId) {
super(ownerId, 261);
super(ownerId, 264);
this.expansionSetCode = "KLD";
}

View file

@ -88,7 +88,7 @@ class ParadoxicalOutcomeEffect extends OneShotEffect {
ParadoxicalOutcomeEffect() {
super(Outcome.Benefit);
this.staticText = "Return any number of target artifact cards from target player's graveyard to the top of his or her library in any order";
this.staticText = "Return any number of target nonland, nontoken permanents you control to their owners' hands. Draw a card for each card returned to your hand this way";
}
ParadoxicalOutcomeEffect(final ParadoxicalOutcomeEffect effect) {