Examples of BattleCryAbility


Examples of mage.abilities.keyword.BattleCryAbility

        this.subtype.add("Goblin");
        this.subtype.add("Warrior");
        this.color.setRed(true);
        this.power = new MageInt(2);
        this.toughness = new MageInt(2);
        this.addAbility(new BattleCryAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.BattleCryAbility

        this.subtype.add("Human");
        this.subtype.add("Knight");
        this.color.setWhite(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(1);
        this.addAbility(new BattleCryAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.BattleCryAbility

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

        this.addAbility(HasteAbility.getInstance());
        this.addAbility(new BattleCryAbility());
        this.addAbility(new AttacksTriggeredAbility(new HeroOfOxidRidgeEffect(), false));
    }
View Full Code Here

Examples of mage.abilities.keyword.BattleCryAbility

        this.subtype.add("Elephant");
        this.subtype.add("Soldier");
        this.color.setWhite(true);
        this.power = new MageInt(3);
        this.toughness = new MageInt(4);
        this.addAbility(new BattleCryAbility());
    }
View Full Code Here

Examples of mage.abilities.keyword.BattleCryAbility

        this.subtype.add("Pest");

        this.power = new MageInt(0);
        this.toughness = new MageInt(1);

        this.addAbility(new BattleCryAbility());
        this.addAbility(SignalPestAbility.getInstance());
    }
View Full Code Here

Examples of mage.abilities.keyword.BattleCryAbility

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

        // Battle cry (Whenever this creature attacks, each other attacking creature gets +1/+0 until end of turn.)
        this.addAbility(new BattleCryAbility());

        // Whenever Hero of Bladehold attacks, put two 1/1 white Soldier creature tokens onto the battlefield tapped and attacking.
        this.addAbility(new AttacksTriggeredAbility(new CreateTokenEffect(new SoldierToken(), 2, true, true), false));

    }
View Full Code Here

Examples of mage.abilities.keyword.BattleCryAbility

        this.subtype.add("Giant");
        this.subtype.add("Berserker");
        this.color.setRed(true);
        this.power = new MageInt(4);
        this.toughness = new MageInt(4);
        this.addAbility(new BattleCryAbility());
        this.addAbility(new AttacksEachTurnStaticAbility());
    }
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.