1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 09:11:04 -09:00

Fixed Ethersworn Adjudicator cost.

This commit is contained in:
magenoxx 2010-12-05 19:31:30 +00:00
parent b20b572f60
commit b6445377d6

View file

@ -61,14 +61,14 @@ public class EtherswornAdjudicator extends CardImpl<EtherswornAdjudicator> {
}
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());