Package mage.abilities.keyword

Examples of mage.abilities.keyword.BloodthirstAbility


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

        this.addAbility(new BloodthirstAbility(2));
    }
View Full Code Here


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

        this.addAbility(new BloodthirstAbility(3));
        this.addAbility(TrampleAbility.getInstance());
    }
View Full Code Here

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

        this.addAbility(new BloodthirstAbility(1));
        this.addAbility(new IslandwalkAbility());
    }
View Full Code Here

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

        this.addAbility(new BloodthirstAbility(2));
        this.addAbility(LifelinkAbility.getInstance());
    }
View Full Code Here

        this.subtype.add("Berserker");
        this.color.setRed(true);
        this.color.setGreen(true);
        this.power = new MageInt(1);
        this.toughness = new MageInt(1);
        this.addAbility(new BloodthirstAbility(2));
        this.addAbility(TrampleAbility.getInstance());
    }
View Full Code Here

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

        this.addAbility(new BloodthirstAbility(1));
        // Creatures with power less than Battering Wurm's power can't block it.
        this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByCreaturesWithLessPowerEffect()));
    }
View Full Code Here

TOP

Related Classes of mage.abilities.keyword.BloodthirstAbility

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.