[CMR] added tokens support, added tokens download

This commit is contained in:
Oleg Agafonov 2020-12-19 21:42:12 +04:00
parent 92f9bc0c65
commit 9dd09c970a
34 changed files with 281 additions and 168 deletions

View file

@ -1,12 +1,12 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
*
* @author spjspj
*/
public final class BreedingPitThrullToken extends TokenImpl {
@ -18,6 +18,8 @@ public final class BreedingPitThrullToken extends TokenImpl {
color.setBlack(true);
power = new MageInt(0);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("CMR");
}
public BreedingPitThrullToken(final BreedingPitThrullToken token) {
@ -27,4 +29,9 @@ public final class BreedingPitThrullToken extends TokenImpl {
public BreedingPitThrullToken copy() {
return new BreedingPitThrullToken(this);
}
@Override
public void setExpansionSetCodeForImage(String code) {
super.setExpansionSetCodeForImage(code);
}
}