mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Fixed Wandering Fumarole calling the wrong token on its activated ability.
This commit is contained in:
parent
f1f2bd5a6f
commit
3d4d137970
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class WanderingFumarole extends CardImpl {
|
||||||
|
|
||||||
// {2}{U}{R}: Until end of turn, Wandering Fumarole becomes a 1/4 blue and red Elemental creature with
|
// {2}{U}{R}: Until end of turn, Wandering Fumarole becomes a 1/4 blue and red Elemental creature with
|
||||||
// "0: Switch this creature's power and toughness until end of turn." It's still a land.
|
// "0: Switch this creature's power and toughness until end of turn." It's still a land.
|
||||||
Effect effect = new BecomesCreatureSourceEffect(new HissingQuagmireToken(), "land", Duration.EndOfTurn);
|
Effect effect = new BecomesCreatureSourceEffect(new WanderingFumaroleToken(), "land", Duration.EndOfTurn);
|
||||||
effect.setText("{this} becomes a 1/4 blue and red Elemental creature with \"0: Switch this creature's power and toughness until end of turn.\" It's still a land");
|
effect.setText("{this} becomes a 1/4 blue and red Elemental creature with \"0: Switch this creature's power and toughness until end of turn.\" It's still a land");
|
||||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl("{2}{U}{R}")));
|
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl("{2}{U}{R}")));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue