forked from External/mage
spjspj - Implement new method for image generation of tokens.
This commit is contained in:
parent
ac5f2ca6cc
commit
0f043d480d
15 changed files with 154 additions and 52 deletions
|
|
@ -74,6 +74,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
protected String cardNumber;
|
||||
public String expansionSetCode;
|
||||
protected String tokenSetCode;
|
||||
protected String tokenDescriptor;
|
||||
protected Rarity rarity;
|
||||
protected boolean canTransform;
|
||||
protected Card secondSideCard;
|
||||
|
|
@ -316,6 +317,11 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
public String getTokenSetCode() {
|
||||
return tokenSetCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTokenDescriptor() {
|
||||
return tokenDescriptor;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Mana> getMana() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue