[KHM] Implemented Koma, Cosmos Serpent

This commit is contained in:
Daniel Bomar 2021-01-11 18:02:18 -06:00
parent 1b80ecb7b4
commit efca24d617
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,26 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public final class KomasCoilToken extends TokenImpl {
public KomasCoilToken() {
super("Koma's Coil", "3/3 blue Serpent creature token named Koma's Coil");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SERPENT);
color.setBlue(true);
power = new MageInt(3);
toughness = new MageInt(3);
}
private KomasCoilToken(final KomasCoilToken token) {
super(token);
}
@Override
public KomasCoilToken copy() {
return new KomasCoilToken(this);
}
}