Examples of CentaurToken


Examples of mage.game.permanent.token.CentaurToken

        this.power = new MageInt(1);
        this.toughness = new MageInt(1);

        // When Trostani's Summoner enters the battlefield, put a 2/2 white Knight creature token with vigilance, a 3/3 green Centaur creature token, and a 4/4 green Rhino creature token with trample onto the battlefield.
        Ability ability = new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new KnightToken()));
        ability.addEffect(new CreateTokenEffect(new CentaurToken()));
        ability.addEffect(new CreateTokenEffect(new RhinoToken()));
        this.addAbility(ability);

    }
View Full Code Here

Examples of mage.game.permanent.token.CentaurToken

        this.color.setGreen(true);
        this.color.setWhite(true);

        // Put a 3/3 green Centaur creature token onto the battlefield.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new CentaurToken()));
    }
View Full Code Here

Examples of mage.game.permanent.token.CentaurToken

        this.color.setGreen(true);
        this.color.setWhite(true);

        // Put a 3/3 green Centaur creature token onto the battlefield, then populate.
        // (Put a token onto the battlefield that's a copy of a creature token you control.)
        this.getSpellAbility().addEffect(new CreateTokenEffect(new CentaurToken()));
        this.getSpellAbility().addEffect(new PopulateEffect("then"));
    }
View Full Code Here

Examples of mage.game.permanent.token.CentaurToken

        this.color.setWhite(true);

        // Alive
        // Put a 3/3 green Centaur creature token onto the battlefield.
        getLeftHalfCard().getColor().setGreen(true);
        getLeftHalfCard().getSpellAbility().addEffect(new CreateTokenEffect(new CentaurToken()));


        // Well
        // You gain 2 life for each creature you control.
        getRightHalfCard().getColor().setWhite(true);
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.