mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
[ECL] Implement Clachan Festival
This commit is contained in:
parent
b69ccdb53e
commit
bbce7998ec
3 changed files with 72 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue