Package mage.abilities.common

Examples of mage.abilities.common.EntersAnotherCreatureYourControlTriggeredAbility


        this.color.setWhite(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);

        // Whenever another creature enters the battlefield under your control, creatures you control get +1/+1 until end of turn.
        this.addAbility(new EntersAnotherCreatureYourControlTriggeredAbility(new BoostControlledEffect(1, 1, Duration.EndOfTurn)));
    }
View Full Code Here


        // Creatures with power less than Champion of Lambholt's power can't block creatures you control.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ChampionOfLambholtEffect()));

        // Whenever another creature enters the battlefield under your control, put a +1/+1 counter on Champion of Lambholt.
        this.addAbility(new EntersAnotherCreatureYourControlTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
    }
View Full Code Here

    }

    @Override
    public void build() {
        // Whenever another creature enters the battlefield under your control, you gain 2 life.
        this.addAbility(new EntersAnotherCreatureYourControlTriggeredAbility(new GainLifeEffect(2)));
    }
View Full Code Here

    @Override
    public void build() {
        // Flying
        this.addAbility(FlyingAbility.getInstance());
        // Whenever another creature enters the battlefield under your control, Griffin Protector gets +1/+1 until end of turn.
        this.addAbility(new EntersAnotherCreatureYourControlTriggeredAbility(new BoostSourceEffect(1, 1, Duration.EndOfTurn)));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.common.EntersAnotherCreatureYourControlTriggeredAbility

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.