Package mage.game.permanent.token

Examples of mage.game.permanent.token.BeastToken


        this.expansionSetCode = "M14";

        this.color.setGreen(true);

        // Whenever you cast a creature spell, put a 3/3 green Beast creature token onto the battlefield.
        this.addAbility(new SpellCastControllerTriggeredAbility(new CreateTokenEffect(new BeastToken()), filterCreature, false));

        // Whenever you cast a noncreature spell, put three +1/+1 counters on target creature you control.
        Effect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance(3));
        Ability ability = new SpellCastControllerTriggeredAbility(effect, filterNonCreature, false);
        ability.addTarget(new TargetControlledCreaturePermanent());
View Full Code Here


    @Override
    public boolean apply(Game game, Ability source) {
        Permanent permanent = (Permanent) game.getLastKnownInformation(targetPointer.getFirst(game, source), Zone.BATTLEFIELD);
        if (permanent != null) {
            BeastToken token = new BeastToken();
            token.putOntoBattlefield(1, game, source.getSourceId(), permanent.getControllerId());
        }
        return true;
    }
View Full Code Here

        this.color.setGreen(true);

        // Convoke
        this.addAbility(new ConvokeAbility());
        // Put three 3/3 green Beast creature tokens onto the battlefield.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new BeastToken("M15", 1), 3));
    }
View Full Code Here

        this.expansionSetCode = "NPH";

        this.color.setGreen(true);

        this.addWatcher(new FreshMeatWatcher());
        this.getSpellAbility().addEffect(new CreateTokenEffect(new BeastToken(), new FreshMeatDynamicValue()));
    }
View Full Code Here

        this.toughness = new MageInt(6);

        // Reach
        this.addAbility(ReachAbility.getInstance());
        // {3}{G}{G}: Put a 3/3 green Beast creature token onto the battlefield.
        this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new BeastToken("M15")), new ManaCostsImpl("{3}{G}{G}")));
        // {3}{G}{G}, Exile Soul of Zendikar from your graveyard: Put a 3/3 green Beast creature token onto the battlefield.
        Ability ability = new SimpleActivatedAbility(Zone.GRAVEYARD, new CreateTokenEffect(new BeastToken("M15"))new ManaCostsImpl("{3}{G}{G}"));
        ability.addCost(new ExileSourceFromGraveCost());
        this.addAbility(ability);
    }
View Full Code Here

        this.expansionSetCode = "EVE";

        this.color.setGreen(true);

        // Put a 3/3 green Beast creature token onto the battlefield.
        this.getSpellAbility().addEffect(new CreateTokenEffect(new BeastToken()));
        // Retrace
        this.addAbility(new RetraceAbility(new ManaCostsImpl("{3}{G}{G}"), TimingRule.SORCERY));
    }
View Full Code Here

        // You may pay {W}{U}{B}{R}{G} rather than pay Bringer of the Green Dawn's mana cost.
        this.addAbility(new AlternativeCostSourceAbility(new ManaCostsImpl("{W}{U}{B}{R}{G}")));
        // Trample
        this.addAbility(TrampleAbility.getInstance());
        // At the beginning of your upkeep,s you may put a 3/3 green Beast creature token onto the battlefield.
        Ability ability = new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new BeastToken()), TargetController.YOU, true);
        this.addAbility(ability);
    }
View Full Code Here

        this.color.setGreen(true);

        this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.LOYALTY.createInstance(3)), false));
       
        // +1: Put a 3/3 green Beast creature token onto the battlefield.
        this.addAbility(new LoyaltyAbility(new CreateTokenEffect(new BeastToken()), 1));
       
        // -3: Draw cards equal to the greatest power among creatures you control.
        this.addAbility(new LoyaltyAbility(new GarrukPrimalHunterEffect(), -3));

        // -6: Put a 6/6 green Wurm creature token onto the battlefield for each land you control.
View Full Code Here

        // When Thragtusk enters the battlefield, you gain 5 life.
        this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(5)));

        // When Thragtusk leaves the battlefield, put a 3/3 green Beast creature token onto the battlefield.
        this.addAbility(new LeavesBattlefieldTriggeredAbility(new CreateTokenEffect(new BeastToken()), false));
    }
View Full Code Here

TOP

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

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.