[CMR] Implemented Amphin Mutineer

This commit is contained in:
Evan Kranzler 2020-10-29 08:26:40 -04:00
parent ee03e4e862
commit 0c6891e323
3 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SalamnderWarriorToken extends TokenImpl {
public SalamnderWarriorToken() {
super("Salamander Warrior", "4/3 blue Salamander Warrior creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
subtype.add(SubType.SALAMANDER);
subtype.add(SubType.WARRIOR);
power = new MageInt(4);
toughness = new MageInt(3);
}
public SalamnderWarriorToken(final SalamnderWarriorToken token) {
super(token);
}
public SalamnderWarriorToken copy() {
return new SalamnderWarriorToken(this);
}
}