[MID] added tokens and images support

This commit is contained in:
Oleg Agafonov 2022-02-05 12:22:39 +04:00
parent 9015b156e5
commit 54a1efec63
24 changed files with 141 additions and 86 deletions

View file

@ -4,6 +4,9 @@ import mage.MageInt;
import mage.abilities.keyword.DecayedAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.util.RandomUtil;
import java.util.Arrays;
/**
* @author TheElk801
@ -18,6 +21,8 @@ public final class ZombieDecayedToken extends TokenImpl {
power = new MageInt(2);
toughness = new MageInt(2);
this.addAbility(new DecayedAbility());
availableImageSetCodes.addAll(Arrays.asList("MID"));
}
public ZombieDecayedToken(final ZombieDecayedToken token) {