mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
Some changes to the convoke ability.
This commit is contained in:
parent
a6ac24c403
commit
c8ae5fb9ca
4 changed files with 6 additions and 14 deletions
|
|
@ -54,7 +54,7 @@ public class KavuPrimarch extends CardImpl<KavuPrimarch> {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)
|
||||
this.addAbility(ConvokeAbility.getInstance());
|
||||
this.addAbility(new ConvokeAbility());
|
||||
|
||||
// Kicker {4} (You may pay an additional {4} as you cast this spell.)
|
||||
this.getSpellAbility().addOptionalCost(new KickerManaCost("{4}"));
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public class AutochthonWurm extends CardImpl<AutochthonWurm> {
|
|||
this.toughness = new MageInt(14);
|
||||
|
||||
// Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)
|
||||
this.addAbility(ConvokeAbility.getInstance());
|
||||
this.addAbility(new ConvokeAbility());
|
||||
|
||||
// Trample
|
||||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ public class Overwhelm extends CardImpl<Overwhelm> {
|
|||
this.expansionSetCode = "RAV";
|
||||
|
||||
// Convoke (Each creature you tap while casting this spell reduces its cost by {1} or by one mana of that creature's color.)
|
||||
this.addAbility(ConvokeAbility.getInstance());
|
||||
this.addAbility(new ConvokeAbility());
|
||||
|
||||
// Creatures you control get +3/+3 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostControlledEffect(3, 3, Duration.EndOfTurn));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue