mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Zameck Guildmage - Fixed that the first ability could be activated in all zones instead of only on the battlefield.
This commit is contained in:
parent
df04cc7229
commit
4af5368fc2
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public class ZameckGuildmage extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// {G}{U}: This turn, each creature you control enters the battlefield with an additional +1/+1 counter on it.
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.ALL, new ZameckGuildmageEntersBattlefieldEffect(), new ManaCostsImpl("{G}{U}")));
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new ZameckGuildmageEntersBattlefieldEffect(), new ManaCostsImpl("{G}{U}")));
|
||||
|
||||
// {G}{U}, Remove a +1/+1 counter from a creature you control: Draw a card.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), new ManaCostsImpl("{G}{U}"));
|
||||
|
|
Loading…
Reference in a new issue