* Aether Vial - Added info about added counter to game log.

This commit is contained in:
LevelX2 2014-08-29 14:59:58 +02:00
parent 1f196f0bc7
commit 2dc7bbaf08

View file

@ -61,7 +61,7 @@ public class AEtherVial extends CardImpl {
this.expansionSetCode = "DST";
// At the beginning of your upkeep, you may put a charge counter on AEther Vial.
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.CHARGE.createInstance()), TargetController.YOU, true));
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new AddCountersSourceEffect(CounterType.CHARGE.createInstance(), true), TargetController.YOU, true));
// {tap}: You may put a creature card with converted mana cost equal to the number of charge counters on AEther Vial from your hand onto the battlefield.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new AEtherVialEffect(), new TapSourceCost()));
}