Implemented Experimental Overload

This commit is contained in:
Evan Kranzler 2020-06-15 20:09:31 -04:00
parent 0af261aeb3
commit e8a99ec7f3
3 changed files with 111 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author TheElk801
*/
public final class WeirdToken2 extends TokenImpl {
public WeirdToken2(int xValue) {
super("Weird", "X/X blue and red Weird creature token");
cardType.add(CardType.CREATURE);
color.setBlue(true);
color.setRed(true);
subtype.add(SubType.WEIRD);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
}
private WeirdToken2(final WeirdToken2 token) {
super(token);
}
public WeirdToken2 copy() {
return new WeirdToken2(this);
}
}