Package mage.abilities.effects.common

Examples of mage.abilities.effects.common.CreateTokenEffect


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

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


    cardType.add(CardType.CREATURE);
    subtype.add("Ooze");
    color.setGreen(true);
    power = new MageInt(2);
    toughness = new MageInt(2);
    this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new CreateTokenEffect(new Ooze1Token(), 2), false));
  }
View Full Code Here

    this.color.setGreen(true);
    this.color.setBlack(true);
    this.power = new MageInt(4);
    this.toughness = new MageInt(4);

    this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(dragonToken), false));
    this.addAbility(FlyingAbility.getInstance());
  }
View Full Code Here

    LoyaltyAbility ability = new LoyaltyAbility(effects2, -2);
    ability.addTarget(new TargetCreaturePermanent());
    this.addAbility(ability);

    this.addAbility(new LoyaltyAbility(new CreateTokenEffect(dragonToken), -6));
  }
View Full Code Here

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

    this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new EldraziSpawnToken()), false));
  }
View Full Code Here

  public ConquerorsPledge(UUID ownerId) {
    super(ownerId, 8, "Conqueror's Pledge", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{2}{W}{W}{W}");
    this.expansionSetCode = "ZEN";
    this.color.setWhite(true);
    this.getSpellAbility().addEffect(new CreateTokenEffect(new KorSoldierToken(), 6));
    KickerAbility ability = new KickerAbility(new CreateTokenEffect(new KorSoldierToken(), 12), true);
    ability.addManaCost(new GenericManaCost(6));
    this.addAbility(ability);
  }
View Full Code Here

    this.subtype.add("Beast");
    this.color.setGreen(true);
    this.power = new MageInt(6);
    this.toughness = new MageInt(6);
    this.addAbility(TrampleAbility.getInstance());
    this.addAbility(new LandfallAbility(new CreateTokenEffect(new RampagingBalothsToken()), true));
  }
View Full Code Here

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

    this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new EldraziSpawnToken(), 2), false));
  }
View Full Code Here

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

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

    Effects effects1 = new Effects();
    effects1.add(new AddPlusOneCountersControlledEffect(1));
    effects1.add(new GainAbilityControlledEffect(VigilanceAbility.getInstance(), Duration.EndOfTurn, FilterCreaturePermanent.getDefault()));
    this.addAbility(new LoyaltyAbility(effects1, -1));

    this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new AvatarToken()), -6));

  }
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.