[VOW] Implemented Torens, Fist of the Angels

This commit is contained in:
Evan Kranzler 2021-10-29 22:34:06 -04:00
parent 51ee418701
commit 492d1ce957
3 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.TrainingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public class HumanSoldierTrainingToken extends TokenImpl {
public HumanSoldierTrainingToken() {
super("Human Soldier", "1/1 green and white Human Soldier creature token with training");
cardType.add(CardType.CREATURE);
color.setGreen(true);
color.setWhite(true);
subtype.add(SubType.HUMAN);
subtype.add(SubType.SOLDIER);
power = new MageInt(1);
toughness = new MageInt(1);
this.addAbility(new TrainingAbility());
}
private HumanSoldierTrainingToken(final HumanSoldierTrainingToken token) {
super(token);
}
@Override
public HumanSoldierTrainingToken copy() {
return new HumanSoldierTrainingToken(this);
}
}