Add artifact type to token created by Canoptek Scarab Swarm (#11020)

* Add a new token type for Canoptek Scarab Swarm

* clean the tokens

* touch tokens-database
This commit is contained in:
Susucre 2023-08-26 22:46:45 +02:00 committed by GitHub
parent 8b6863e6f3
commit 0b5099746f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 33 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class InsectColorlessArtifactToken extends TokenImpl {
public InsectColorlessArtifactToken() {
super("Insect Token", "1/1 colorless Insect artifact creature token with flying");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.INSECT);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(FlyingAbility.getInstance());
}
protected InsectColorlessArtifactToken(final InsectColorlessArtifactToken token) {
super(token);
}
public InsectColorlessArtifactToken copy() {
return new InsectColorlessArtifactToken(this);
}
}

View file

@ -1,30 +0,0 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @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());
}
protected InsectColorlessToken(final InsectColorlessToken token) {
super(token);
}
public InsectColorlessToken copy() {
return new InsectColorlessToken(this);
}
}