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

@ -1,25 +0,0 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public final class GrismoldPlantToken extends TokenImpl {
public GrismoldPlantToken() {
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 GrismoldPlantToken(final GrismoldPlantToken token) {
super(token);
}
public GrismoldPlantToken copy() {
return new GrismoldPlantToken(this);
}
}