Package mage.game.permanent.token

Examples of mage.game.permanent.token.InsectToken


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

        // Whenever another nontoken Elf enters the battlefield, you may put a 1/1 green Insect creature token onto the battlefield.
        this.addAbility(new EntersBattlefieldControlledTriggeredAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new InsectToken(), 1), filter, true));
    }
View Full Code Here


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

        // When Symbiotic Wurm dies, put seven 1/1 green Insect creature tokens onto the battlefield.
        this.addAbility(new DiesTriggeredAbility(new CreateTokenEffect(new InsectToken(), 7)));

    }
View Full Code Here

        // Reach
        this.addAbility(ReachAbility.getInstance());

        // Whenever an opponent casts a spell, put a 1/1 green Insect creature token onto the battlefield.
        this.addAbility(new SpellCastOpponentTriggeredAbility(new CreateTokenEffect(new InsectToken()), false));


    }
View Full Code Here

    public CarrionCall (UUID ownerId) {
        super(ownerId, 115, "Carrion Call", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{3}{G}");
        this.expansionSetCode = "SOM";
        this.color.setGreen(true);
        this.getSpellAbility().addEffect(new CreateTokenEffect(new InsectToken("SOM"), 2));
    }
View Full Code Here

        this.expansionSetCode = "5DN";

        this.color.setGreen(true);

        // Put a 1/1 green Insect creature token onto the battlefield for each Forest you control.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new InsectToken(), new PermanentsOnBattlefieldCount(filter)));
        // Shuffle Beacon of Creation into its owner's library.
        this.getSpellAbility().addEffect(ShuffleSpellEffect.getInstance());
    }
View Full Code Here

        this.getSpellAbility().getModes().setMaxModes(1);
        // Put a 5/5 green Beast creature token onto the battlefield;
        this.getSpellAbility().addEffect(new CreateTokenEffect(new OneDozenEyesBeastToken()));
        // or put five 1/1 green Insect creature tokens onto the battlefield.
        Mode mode = new Mode();
        mode.getEffects().add(new CreateTokenEffect(new InsectToken(),5));
        this.getSpellAbility().addMode(mode);
        // Entwine {G}{G}{G}
        this.addAbility(new EntwineAbility("{G}{G}{G}"));
    }
View Full Code Here

TOP

Related Classes of mage.game.permanent.token.InsectToken

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.