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

@ -5,25 +5,20 @@ import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author FenrisulfrX
* @author Quercitron
*/
public final class MinionToken extends TokenImpl {
public MinionToken() {
this("DDE");
}
public MinionToken(String setCode) {
super("Phyrexian Minion Token", "X/X black Phyrexian Minion creature token");
super("Minion Token", "1/1 black Minion creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.MINION);
color.setBlack(true);
power = new MageInt(0);
toughness = new MageInt(0);
power = new MageInt(1);
toughness = new MageInt(1);
}
private MinionToken(final MinionToken token) {
protected MinionToken(final MinionToken token) {
super(token);
}