Examples of ProvokeAbility


Examples of mage.abilities.keyword.ProvokeAbility

        // Trample
        this.addAbility(TrampleAbility.getInstance());
       
        // Provoke
        this.addAbility(new ProvokeAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.ProvokeAbility

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

        // Provoke
        this.addAbility(new ProvokeAbility());
        // Krosan Vorine can't be blocked by more than one creature.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByMoreThanOneSourceEffect()));
    }
View Full Code Here

Examples of mage.abilities.keyword.ProvokeAbility

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

        // Provoke
        this.addAbility(new ProvokeAbility());
        // {1}{W}: Prevent all combat damage that would be dealt to and dealt by Deftblade Elite this turn.
        Effect effect = new PreventCombatDamageToSourceEffect(Duration.EndOfTurn);
        effect.setText("Prevent all combat damage that would be dealt to");
        Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new ManaCostsImpl("{1}{W}"));
        effect = new PreventCombatDamageBySourceEffect(Duration.EndOfTurn);
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.