mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Implemented Teyo, the Shieldmage
This commit is contained in:
parent
9c3fb3eb30
commit
86f651b871
4 changed files with 74 additions and 0 deletions
|
|
@ -411,6 +411,7 @@ public enum SubType {
|
|||
SORIN("Sorin", SubTypeSet.PlaneswalkerType),
|
||||
TAMIYO("Tamiyo", SubTypeSet.PlaneswalkerType),
|
||||
TEFERI("Teferi", SubTypeSet.PlaneswalkerType),
|
||||
TEYO("Teyo", SubTypeSet.PlaneswalkerType),
|
||||
TEZZERET("Tezzeret", SubTypeSet.PlaneswalkerType),
|
||||
TIBALT("Tibalt", SubTypeSet.PlaneswalkerType),
|
||||
UGIN("Ugin", SubTypeSet.PlaneswalkerType),
|
||||
|
|
|
|||
27
Mage/src/main/java/mage/game/permanent/token/TeyoToken.java
Normal file
27
Mage/src/main/java/mage/game/permanent/token/TeyoToken.java
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.DefenderAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public final class TeyoToken extends TokenImpl {
|
||||
|
||||
public TeyoToken() {
|
||||
super("Wall", "0/3 white Wall creature token with defender");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.WALL);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(3);
|
||||
addAbility(DefenderAbility.getInstance());
|
||||
}
|
||||
|
||||
public TeyoToken(final TeyoToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public TeyoToken copy() {
|
||||
return new TeyoToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue