Package mage.abilities.keyword

Examples of mage.abilities.keyword.BushidoAbility


        power = new MageInt(3);
        toughness = new MageInt(4);

        // Double strike; bushido 2 (When this blocks or becomes blocked, it gets +2/+2 until end of turn.)
        this.addAbility(DoubleStrikeAbility.getInstance());
        this.addAbility(new BushidoAbility(2));
    }
View Full Code Here


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

        // Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)
        this.addAbility(new BushidoAbility(1));
       
        // You may pay {X} rather than pay the mana cost for Samurai spells you cast, where X is that spell's converted mana cost.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new KentaroTheSmilingCatCostReductionEffect()));
       
View Full Code Here

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

        // Bushido 1 (When this blocks or becomes blocked, it gets +1/+1 until end of turn.)
        this.addAbility(new BushidoAbility(1));

        // Whenever a Samurai you control dies, you may put a +1/+1 counter on Indebted Samurai.
        this.addAbility(new DiesCreatureTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()), true, filter));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.BushidoAbility

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.