[DSK] Implement Overlord of the Hauntwoods

This commit is contained in:
theelk801 2024-09-04 16:15:03 -04:00
parent a090349100
commit dc4bc6ccb2
3 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,27 @@
package mage.game.permanent.token;
import mage.abilities.mana.AnyColorManaAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class EverywhereToken extends TokenImpl {
public EverywhereToken() {
super("Everywhere", "colorless land token named Everywhere that is every basic land type");
cardType.add(CardType.LAND);
subtype.add(SubType.PLAINS, SubType.ISLAND, SubType.SWAMP, SubType.MOUNTAIN, SubType.FOREST);
this.addAbility(new AnyColorManaAbility());
}
private EverywhereToken(final EverywhereToken token) {
super(token);
}
public EverywhereToken copy() {
return new EverywhereToken(this);
}
}