refactor: improved tokens structure (#13487)

- removed duplicate tokens
- fixed names of some tokens
- corrected tokens used in tokens database
This commit is contained in:
androosss 2025-04-01 11:58:05 +02:00 committed by GitHub
parent 08135af525
commit 730bd8e63d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 112 additions and 367 deletions

View file

@ -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);
}
}