Examples of EldraziSpawnToken


Examples of mage.game.permanent.token.EldraziSpawnToken

        super(ownerId, 110, "Essence Feed", Rarity.COMMON, new CardType[]{CardType.SORCERY}, "{5}{B}");
        this.expansionSetCode = "ROE";
        this.color.setBlack(true);
        this.getSpellAbility().addEffect(new LoseLifeTargetEffect(3));
        this.getSpellAbility().addEffect(new GainLifeEffect(3));
        this.getSpellAbility().addEffect(new CreateTokenEffect(new EldraziSpawnToken(), 3));
        this.getSpellAbility().addTarget(new TargetPlayer());
    }
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

        this.subtype.add("Eldrazi");
        this.subtype.add("Drone");
        this.color.setBlack(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(1);
        this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new EldraziSpawnToken(), 2)));
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

    @Override
    public boolean checkTrigger(GameEvent event, Game game) {
        if (event.getType() == EventType.DAMAGED_PLAYER && event.getSourceId().equals(this.sourceId)
                && ((DamagedPlayerEvent) event).isCombatDamage()) {
            this.getEffects().clear();
            this.addEffect(new CreateTokenEffect(new EldraziSpawnToken(), event.getAmount()));
            return true;
        }
        return false;
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

    public boolean apply(Game game, Ability source) {
        FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Eldrazi Spawn");
        filter.add(new SubtypePredicate("Eldrazi"));
        filter.add(new SubtypePredicate("Spawn"));

        EldraziSpawnToken token = new EldraziSpawnToken();
        int count = game.getBattlefield().countAll(filter, source.getControllerId(), game) > 0 ? 3 : 1;
        token.putOntoBattlefield(count, game, source.getSourceId(), source.getControllerId());
        return true;
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

    public SkitteringInvasion (UUID ownerId) {
        super(ownerId, 10, "Skittering Invasion", Rarity.UNCOMMON, new CardType[]{CardType.TRIBAL, CardType.SORCERY}, "{7}");
        this.expansionSetCode = "ROE";
        this.subtype.add("Eldrazi");
        this.getSpellAbility().addEffect(new CreateTokenEffect(new EldraziSpawnToken(), 5));
    }
View Full Code Here

Examples of mage.game.permanent.token.EldraziSpawnToken

        this.color.setRed(true);

        this.getSpellAbility().addEffect(new DamageTargetEffect(1));
        this.getSpellAbility().addTarget(new TargetCreatureOrPlayer());
        this.getSpellAbility().addEffect(new CreateTokenEffect(new EldraziSpawnToken()));
    }
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
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.