Skip to content

Commit

Permalink
Fix Tithe's card number
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneFox78 committed Oct 5, 2015
1 parent 6c2e2ca commit 87f3054
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Mage.Sets/src/mage/sets/visions/Tithe.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
public class Tithe extends CardImpl {

public Tithe(UUID ownerId) {
super(ownerId, 84, "Tithe", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{W}");
super(ownerId, 123, "Tithe", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{W}");
this.expansionSetCode = "VIS";

// Search your library for a Plains card. If target opponent controls more lands than you, you may search your library for an additional Plains card. Reveal those cards and put them into your hand. Then shuffle your library.
Expand All @@ -68,26 +68,26 @@ public Tithe copy() {
}

class TitheEffect extends OneShotEffect {

private static final FilterCard filter = new FilterCard("Plains");
static {
filter.add(new SubtypePredicate("Plains"));
}

TitheEffect() {
super(Outcome.Benefit);
this.staticText = "Search your library for a Plains card. If target opponent controls more lands than you, you may search your library for an additional Plains card. Reveal those cards and put them into your hand. Then shuffle your library";
}

TitheEffect(final TitheEffect effect) {
super(effect);
}

@Override
public TitheEffect copy() {
return new TitheEffect(this);
}

@Override
public boolean apply(Game game, Ability source) {
int numYourLands = game.getBattlefield().countAll(new FilterLandPermanent(), source.getControllerId(), game);
Expand Down

0 comments on commit 87f3054

Please sign in to comment.