forked from External/mage
[MOM] Implement Ghalta and Mavren
This commit is contained in:
parent
d94e699d0e
commit
8c2ee477fa
3 changed files with 142 additions and 0 deletions
|
|
@ -0,0 +1,38 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DinosaurXXToken extends TokenImpl {
|
||||
|
||||
public DinosaurXXToken() {
|
||||
this(0);
|
||||
}
|
||||
|
||||
public DinosaurXXToken(int xValue) {
|
||||
super("Dinosaur Token", "X/X green Dinosaur creature token with trample");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.DINOSAUR);
|
||||
power = new MageInt(xValue);
|
||||
toughness = new MageInt(xValue);
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("MOM");
|
||||
}
|
||||
|
||||
private DinosaurXXToken(final DinosaurXXToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public DinosaurXXToken copy() {
|
||||
return new DinosaurXXToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue