mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -08:00
Some more token image handling changes.
This commit is contained in:
parent
f065315b2f
commit
61b5609ae9
4 changed files with 78 additions and 71 deletions
|
|
@ -45,11 +45,10 @@ public class FeralIncarnation extends CardImpl {
|
|||
super(ownerId, 174, "Feral Incarnation", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{8}{G}");
|
||||
this.expansionSetCode = "M15";
|
||||
|
||||
|
||||
// Convoke
|
||||
this.addAbility(new ConvokeAbility());
|
||||
// Put three 3/3 green Beast creature tokens onto the battlefield.
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new BeastToken("M15", 1), 3));
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new BeastToken(), 3));
|
||||
}
|
||||
|
||||
public FeralIncarnation(final FeralIncarnation card) {
|
||||
|
|
|
|||
|
|
@ -58,9 +58,9 @@ public class SoulOfZendikar extends CardImpl {
|
|||
// Reach
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
// {3}{G}{G}: Put a 3/3 green Beast creature token onto the battlefield.
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new BeastToken("M15")), new ManaCostsImpl("{3}{G}{G}")));
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new BeastToken()), new ManaCostsImpl("{3}{G}{G}")));
|
||||
// {3}{G}{G}, Exile Soul of Zendikar from your graveyard: Put a 3/3 green Beast creature token onto the battlefield.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.GRAVEYARD, new CreateTokenEffect(new BeastToken("M15")), new ManaCostsImpl("{3}{G}{G}"));
|
||||
Ability ability = new SimpleActivatedAbility(Zone.GRAVEYARD, new CreateTokenEffect(new BeastToken()), new ManaCostsImpl("{3}{G}{G}"));
|
||||
ability.addCost(new ExileSourceFromGraveCost());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue