Merge pull request #7372 from weirddan455/koma

[KHM] Implemented Koma, Cosmos Serpent
This commit is contained in:
Oleg Agafonov 2021-01-12 05:21:05 +01:00 committed by GitHub
commit 2e611b98f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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);
}
}