[BLB] Implement Wick, the Whorled Mind

This commit is contained in:
PurpleCrowbar 2024-07-28 17:25:51 +01:00
parent 9db54d7892
commit 21f5f93dd6
3 changed files with 139 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 PurpleCrowbar
*/
public final class SnailToken extends TokenImpl {
public SnailToken() {
super("Snail Token", "1/1 black Snail creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.SNAIL);
power = new MageInt(1);
toughness = new MageInt(1);
}
private SnailToken(final SnailToken token) {
super(token);
}
@Override
public SnailToken copy() {
return new SnailToken(this);
}
}