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:
parent
b20b572f60
commit
b6445377d6
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue