[VOW] Implemented Toxrill, the Corrosive

This commit is contained in:
Evan Kranzler 2021-11-10 07:41:21 -05:00
parent f83002b43b
commit e30ba1b62a
3 changed files with 142 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SlugToken extends TokenImpl {
public SlugToken() {
super("Slug", "1/1 black Slug creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.SLUG);
power = new MageInt(1);
toughness = new MageInt(1);
}
public SlugToken(final SlugToken token) {
super(token);
}
public SlugToken copy() {
return new SlugToken(this);
}
}