mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
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:
parent
8b6863e6f3
commit
0b5099746f
4 changed files with 34 additions and 33 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue