mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[VOW] Implemented Toxrill, the Corrosive
This commit is contained in:
parent
f83002b43b
commit
e30ba1b62a
3 changed files with 142 additions and 0 deletions
28
Mage/src/main/java/mage/game/permanent/token/SlugToken.java
Normal file
28
Mage/src/main/java/mage/game/permanent/token/SlugToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue