mirror of
https://github.com/correl/mage.git
synced 2024-11-29 03:00:12 +00:00
fixed some escape costs
This commit is contained in:
parent
aa678a3b00
commit
70bf7e4098
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ public final class KroxaTitanOfDeathsHunger extends CardImpl {
|
|||
this.addAbility(new EntersBattlefieldOrAttacksSourceTriggeredAbility(new KroxaTitanOfDeathsHungerDiscardEffect()));
|
||||
|
||||
// Escape—{B}{B}{R}{R}, Exile five other cards from your graveyard.
|
||||
this.addAbility(new EscapeAbility(this, "{B}{B}{R}{R}", 1));
|
||||
this.addAbility(new EscapeAbility(this, "{B}{B}{R}{R}", 5));
|
||||
}
|
||||
|
||||
private KroxaTitanOfDeathsHunger(final KroxaTitanOfDeathsHunger card) {
|
||||
|
|
|
@ -46,7 +46,7 @@ public final class UroTitanOfNaturesWrath extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Escape-{G}{G}{U}{U}, Exile five other cards from your graveyard.
|
||||
this.addAbility(new EscapeAbility(this, "{G}{G}{U}{U}", 1));
|
||||
this.addAbility(new EscapeAbility(this, "{G}{G}{U}{U}", 5));
|
||||
}
|
||||
|
||||
private UroTitanOfNaturesWrath(final UroTitanOfNaturesWrath card) {
|
||||
|
|
Loading…
Reference in a new issue