Examples of EldraziSpawnToken


Examples of mage.game.permanent.token.EldraziSpawnToken

    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

Examples of mage.game.permanent.token.EldraziSpawnToken

    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

Examples of mage.game.permanent.token.EldraziSpawnToken

  public AwakeningZone(UUID ownerId) {
    super(ownerId, 176, "Awakening Zone", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}");
    this.expansionSetCode = "ROE";
    this.getColor().setGreen(true);
    this.addAbility(new OnEventTriggeredAbility(EventType.UPKEEP_STEP_PRE, "beginning of your upkeep", new CreateTokenEffect(new EldraziSpawnToken()), true));
  }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

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

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

Examples of mage.game.permanent.token.EldraziSpawnToken

}

class PawnOfUlamogTriggeredAbility extends TriggeredAbilityImpl {

    public PawnOfUlamogTriggeredAbility() {
        super(Zone.BATTLEFIELD, new CreateTokenEffect(new EldraziSpawnToken()), true);
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

        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

Examples of mage.game.permanent.token.EldraziSpawnToken

        this.color.setBlack(true);

        this.getSpellAbility().addTarget(new TargetCreaturePermanent(filter));
        this.getSpellAbility().addEffect(new DestroyTargetEffect());
        this.getSpellAbility().addEffect(new CreateTokenEffect(new EldraziSpawnToken(), 2));
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

    public AwakeningZone(UUID ownerId) {
        super(ownerId, 176, "Awakening Zone", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}");
        this.expansionSetCode = "ROE";
        this.getColor().setGreen(true);
        this.addAbility(new OnEventTriggeredAbility(EventType.UPKEEP_STEP_PRE, "beginning of your upkeep", new CreateTokenEffect(new EldraziSpawnToken()), true));
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

        this.expansionSetCode = "ROE";

        this.color.setGreen(true);

        this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), true));
        this.getSpellAbility().addEffect(new CreateTokenEffect(new EldraziSpawnToken()));
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

        // Annihilator 1
        this.addAbility(new AnnihilatorAbility(1));

        // {4}: Put two 0/1 colorless Eldrazi Spawn creature tokens onto the battlefield. They have "Sacrifice this creature: Add {1} to your mana pool."
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new EldraziSpawnToken(), 2), new GenericManaCost(4)));

        // {20}: Cast any number of Eldrazi cards you own from outside the game without paying their mana costs.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CastCardFromOutsideTheGameEffect(filter, ruleText), new GenericManaCost(20)));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.