mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 12:52:06 -08:00
[40K] Implemented Canoptek Scarab Swarm
This commit is contained in:
parent
5a3bc1e813
commit
4546766c1a
3 changed files with 126 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class InsectColorlessToken extends TokenImpl {
|
||||
|
||||
public InsectColorlessToken() {
|
||||
super("Insect Token", "1/1 colorless Insect creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.INSECT);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("40K");
|
||||
}
|
||||
|
||||
public InsectColorlessToken(final InsectColorlessToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public InsectColorlessToken copy() {
|
||||
return new InsectColorlessToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue