* Images: added Commander 2021 tokens;

This commit is contained in:
Oleg Agafonov 2021-07-03 22:49:15 +04:00
parent 03b012bc1e
commit 6a3f2ff420
49 changed files with 362 additions and 303 deletions

View file

@ -0,0 +1,36 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DeathtouchAbility;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author spjspj
*/
public final class InsectDeathToken extends TokenImpl {
public InsectDeathToken() {
super("Insect", "1/1 green Insect creature token with flying and deathtouch");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.INSECT);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(FlyingAbility.getInstance());
addAbility(DeathtouchAbility.getInstance());
availableImageSetCodes = Arrays.asList("M15", "C20", "C21");
}
public InsectDeathToken(final InsectDeathToken token) {
super(token);
}
public InsectDeathToken copy() {
return new InsectDeathToken(this);
}
}