mirror of
https://github.com/correl/mage.git
synced 2024-12-29 03:00:15 +00:00
[BRO] two small fixes
This commit is contained in:
parent
5f1dc3005a
commit
e8c9bb17e1
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ public final class BlitzAutomaton extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Prototype {2}{R} - 3/2
|
||||
this.addAbility(new PrototypeAbility(this, "{2}{R}", 2, 2));
|
||||
this.addAbility(new PrototypeAbility(this, "{2}{R}", 3, 2));
|
||||
|
||||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
|
|
@ -34,13 +34,13 @@ public final class PhyrexianFleshgorger extends CardImpl {
|
|||
this.addAbility(new PrototypeAbility(this, "{1}{B}{B}", 3, 3));
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Lifelink
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// Ward--Pay life equal to Phyrexian Fleshgorger's power.
|
||||
this.addAbility(new WardAbility(new PayLifeCost(xValue, "pay life equal to {this}'s power")));
|
||||
this.addAbility(new WardAbility(new PayLifeCost(xValue, "pay life equal to {this}'s power"), false));
|
||||
}
|
||||
|
||||
private PhyrexianFleshgorger(final PhyrexianFleshgorger card) {
|
||||
|
|
Loading…
Reference in a new issue