mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[KHM] Implemented Koma, Cosmos Serpent
This commit is contained in:
parent
1b80ecb7b4
commit
efca24d617
3 changed files with 131 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue