Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.CreateTokenEffect


* @author BetaSteward_at_googlemail.com
*/
public class CreateTokenActivatedAbility extends ActivatedAbilityImpl<CreateTokenActivatedAbility> {

  public CreateTokenActivatedAbility(Zone zone, Token token, Cost cost) {
    super(zone, new CreateTokenEffect(token), cost);
  }
View Full Code Here


  public GargoyleCastleAbility() {
    super(Zone.BATTLEFIELD, null);
    addCost(new TapSourceCost());
    addCost(new GenericManaCost(5));
    addCost(new SacrificeSourceCost());
    addEffect(new CreateTokenEffect(new GargoyleToken()));
  }
View Full Code Here

    this.color.setGreen(true);
//    this.art = "122179_typ_reg_sty_010.jpg";
    this.power = new MageInt(5);
    this.toughness = new MageInt(5);

    this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(insectToken), new ManaCostsImpl("{1}{G}")));
  }
View Full Code Here

    this.color.setWhite(true);
    this.power = new MageInt(0);
    this.toughness = new MageInt(3);

    this.addAbility(DefenderAbility.getInstance());
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(rocEggToken, 1), false));
  }
View Full Code Here

    LoyaltyAbility ability1 = new LoyaltyAbility(new UntapTargetEffect(), 1);
    ability1.addTarget(new TargetLandPermanent(2));
    this.addAbility(ability1);

    this.addAbility(new LoyaltyAbility(new CreateTokenEffect(beastToken), -1));

    Effects effects1 = new Effects();
    effects1.add(new BoostControlledEffect(3, 3, Duration.EndOfTurn));
    effects1.add(new GainAbilityControlledEffect(TrampleAbility.getInstance(), Duration.EndOfTurn, FilterCreaturePermanent.getDefault()));
    this.addAbility(new LoyaltyAbility(effects1, -4));
View Full Code Here

    this.expansionSetCode = "ALA";
    this.subtype.add("Elspeth");
    this.color.setWhite(true);
    this.loyalty = new MageInt(4);

    this.addAbility(new LoyaltyAbility(new CreateTokenEffect(soldierToken), 1));

    Effects effects1 = new Effects();
    effects1.add(new BoostTargetEffect(3, 3, Duration.EndOfTurn));
    effects1.add(new GainAbilityTargetEffect(FlyingAbility.getInstance(), Duration.EndOfTurn));
    LoyaltyAbility ability1 = new LoyaltyAbility(effects1, 1);
View Full Code Here

    this.subtype.add("Elemental");
    this.color.setGreen(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(4);

    MultikickerAbility ability = new MultikickerAbility(new CreateTokenEffect(new WolfToken()), false);
    ability.addManaCost(new ColoredManaCost(ColoredManaSymbol.G));
    this.addAbility(ability);
  }
View Full Code Here

    this.color.setGreen(true);
    this.subtype.add("Lizard");
    this.power = new MageInt(3);
    this.toughness = new MageInt(3);

    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(saprolingToken, 3), false));
  }
View Full Code Here

  public KhalniGarden(UUID ownerId) {
    super(ownerId, 138, "Khalni Garden", Rarity.COMMON, new CardType[]{CardType.LAND}, null);
    this.expansionSetCode = "WWK";
    this.addAbility(new EntersBattlefieldTappedAbility());
    this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new PlantToken()), false));
    this.addAbility(new GreenManaAbility());
  }
View Full Code Here

  public BestialMenace(UUID ownerId) {
    super(ownerId, 97, "Bestial Menace", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{3}{G}{G}");
    this.expansionSetCode = "WWK";
    this.color.setGreen(true);
    this.getSpellAbility().addEffect(new CreateTokenEffect(new SnakeToken()));
    this.getSpellAbility().addEffect(new CreateTokenEffect(new WolfToken()));
    this.getSpellAbility().addEffect(new CreateTokenEffect(new ElephantToken()));
  }
View Full Code Here

TOP

Related Classes of mage.abilities.effects.common.CreateTokenEffect

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.