mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 12:49:39 -08:00
* Some fixes to token image downloading.
This commit is contained in:
parent
7e99a027d2
commit
c9603d1994
14 changed files with 231 additions and 255 deletions
|
|
@ -59,9 +59,13 @@ public class WandOfTheElements extends CardImpl {
|
|||
|
||||
public WandOfTheElements(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{4}");
|
||||
|
||||
// {T}, Sacrifice an Island: Create a 2/2 blue Elemental creature token with flying.
|
||||
Ability firstAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WandOfTheElementsFirstToken()), new TapSourceCost());
|
||||
firstAbility.addCost(new SacrificeTargetCost(new TargetControlledPermanent(islandFilter)));
|
||||
this.addAbility(firstAbility);
|
||||
|
||||
// {T}, Sacrifice a Mountain: Create a 3/3 red Elemental creature token.
|
||||
Ability secondAbility = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new WandOfTheElementsSecondToken()), new TapSourceCost());
|
||||
secondAbility.addCost(new SacrificeTargetCost(new TargetControlledPermanent(mountainFilter)));
|
||||
this.addAbility(secondAbility);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue