forked from External/mage
Implemented Bands With Other
This commit is contained in:
parent
4e640dc8ab
commit
5a08632d59
14 changed files with 727 additions and 43 deletions
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
package mage.game.permanent.token;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.BandsWithOtherAbility;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author L_J
|
||||
*/
|
||||
public final class WolvesOfTheHuntToken extends TokenImpl {
|
||||
|
||||
public WolvesOfTheHuntToken() {
|
||||
super("Wolves of the Hunt", "1/1 green Wolf creature token named Wolves of the Hunt");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.WOLF);
|
||||
color.setGreen(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(new BandsWithOtherAbility("Wolves of the Hunt"));
|
||||
}
|
||||
|
||||
public WolvesOfTheHuntToken(final WolvesOfTheHuntToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public WolvesOfTheHuntToken copy() {
|
||||
return new WolvesOfTheHuntToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue