From b6445377d68619eba97d75882e23f1579bf01bdf Mon Sep 17 00:00:00 2001 From: magenoxx Date: Sun, 5 Dec 2010 19:31:30 +0000 Subject: [PATCH] Fixed Ethersworn Adjudicator cost. --- Mage.Sets/src/mage/sets/conflux/EtherswornAdjudicator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/conflux/EtherswornAdjudicator.java b/Mage.Sets/src/mage/sets/conflux/EtherswornAdjudicator.java index 478c63e8f13..70ab066ff12 100644 --- a/Mage.Sets/src/mage/sets/conflux/EtherswornAdjudicator.java +++ b/Mage.Sets/src/mage/sets/conflux/EtherswornAdjudicator.java @@ -61,14 +61,14 @@ public class EtherswornAdjudicator extends CardImpl { } public EtherswornAdjudicator(UUID ownerId) { - super(ownerId, 26, "Ethersworn Adjudicator", Rarity.MYTHIC, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}{W}"); + super(ownerId, 26, "Ethersworn Adjudicator", Rarity.MYTHIC, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}{U}"); this.expansionSetCode = "CON"; this.supertype.add("Legendary"); this.subtype.add("Vedalken"); this.subtype.add("Knight"); this.color.setBlue(true); this.power = new MageInt(4); - this.toughness = new MageInt(4); + this.toughness = new MageInt(4); this.addAbility(FlyingAbility.getInstance()); Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ManaCostsImpl("{1}{W}{B}")); ability.addCost(new TapSourceCost());