mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Implemented Experimental Overload
This commit is contained in:
parent
0af261aeb3
commit
e8a99ec7f3
3 changed files with 111 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue