forked from External/mage
refactor: improved tokens structure (#13487)
- removed duplicate tokens - fixed names of some tokens - corrected tokens used in tokens database
This commit is contained in:
parent
08135af525
commit
730bd8e63d
33 changed files with 112 additions and 367 deletions
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class Plant11Token extends TokenImpl {
|
||||
|
||||
public Plant11Token() {
|
||||
super("Plant Token", "1/1 green Plant creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.PLANT);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private Plant11Token(final Plant11Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Plant11Token copy() {
|
||||
return new Plant11Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue