mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
fixed Seasoned Pyromancer's activated ability zone
This commit is contained in:
parent
d63278214d
commit
d09c04b8a7
1 changed files with 2 additions and 0 deletions
|
@ -13,6 +13,7 @@ import mage.cards.CardSetInfo;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.Zone;
|
||||||
import mage.filter.StaticFilters;
|
import mage.filter.StaticFilters;
|
||||||
import mage.game.Game;
|
import mage.game.Game;
|
||||||
import mage.game.permanent.token.YoungPyromancerElementalToken;
|
import mage.game.permanent.token.YoungPyromancerElementalToken;
|
||||||
|
@ -38,6 +39,7 @@ public final class SeasonedPyromancer extends CardImpl {
|
||||||
|
|
||||||
// {3}{R}{R}, Exile Seasoned Pyromancer from your graveyard: Create two 1/1 red Elemental creature tokens.
|
// {3}{R}{R}, Exile Seasoned Pyromancer from your graveyard: Create two 1/1 red Elemental creature tokens.
|
||||||
Ability ability = new SimpleActivatedAbility(
|
Ability ability = new SimpleActivatedAbility(
|
||||||
|
Zone.GRAVEYARD,
|
||||||
new CreateTokenEffect(new YoungPyromancerElementalToken(), 2),
|
new CreateTokenEffect(new YoungPyromancerElementalToken(), 2),
|
||||||
new ManaCostsImpl("{3}{R}{R}")
|
new ManaCostsImpl("{3}{R}{R}")
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue