mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[DSK] Implement Overlord of the Hauntwoods
This commit is contained in:
parent
a090349100
commit
dc4bc6ccb2
3 changed files with 73 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue