[J25] Implement Psemilla, Meletian Poet

This commit is contained in:
theelk801 2025-06-01 09:30:42 -04:00 committed by Failure
parent 81ba0e0ddf
commit d63aaf36f4
3 changed files with 133 additions and 2 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class NymphToken extends TokenImpl {
public NymphToken() {
super("Nymph Token", "2/2 white Nymph enchantment creature token");
cardType.add(CardType.ENCHANTMENT);
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add(SubType.NYMPH);
power = new MageInt(2);
toughness = new MageInt(2);
}
private NymphToken(final NymphToken token) {
super(token);
}
public NymphToken copy() {
return new NymphToken(this);
}
}