forked from External/mage
[CMR] added tokens support, added tokens download
This commit is contained in:
parent
92f9bc0c65
commit
9dd09c970a
34 changed files with 281 additions and 168 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue