From 87f3054f5df854c5d8bef6cc900bc587484500e7 Mon Sep 17 00:00:00 2001 From: LoneFox Date: Mon, 5 Oct 2015 09:51:54 +0300 Subject: [PATCH] Fix Tithe's card number --- Mage.Sets/src/mage/sets/visions/Tithe.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/sets/visions/Tithe.java b/Mage.Sets/src/mage/sets/visions/Tithe.java index dd0563cc515..d36db987a05 100644 --- a/Mage.Sets/src/mage/sets/visions/Tithe.java +++ b/Mage.Sets/src/mage/sets/visions/Tithe.java @@ -49,7 +49,7 @@ import mage.target.common.TargetOpponent; 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. @@ -68,26 +68,26 @@ public class Tithe extends CardImpl { } 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);