[ECL] Implement Clachan Festival

This commit is contained in:
theelk801 2026-01-08 14:00:36 -05:00
parent b69ccdb53e
commit bbce7998ec
3 changed files with 72 additions and 0 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 KithkinGreenWhiteToken extends TokenImpl {
public KithkinGreenWhiteToken() {
super("Kithkin Token", "1/1 green and white Kithkin creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
color.setWhite(true);
subtype.add(SubType.KITHKIN);
power = new MageInt(1);
toughness = new MageInt(1);
}
private KithkinGreenWhiteToken(final KithkinGreenWhiteToken token) {
super(token);
}
public KithkinGreenWhiteToken copy() {
return new KithkinGreenWhiteToken(this);
}
}