Added / fixed primitives from ONE set, fixed Treasure name in all sets and primitives, updated missing cards by sets list, improved token creator ability by trying to retrieve the token id from the same set of source card (e.g. Urza's Saga), improved toxic ability adding a new target chooser "hastoxic" and adding a new keyword "toxicity" to retrieve the toxic amount of card.
This commit is contained in:
@@ -52,18 +52,20 @@ class CardDescriptor: public MTGCardInstance
|
||||
int hasFlashbackCost;
|
||||
int hasBackSide;
|
||||
int modified;
|
||||
int toxicity;
|
||||
int hasPartner;
|
||||
int hasXCost;
|
||||
int anyCounter;
|
||||
int init();
|
||||
CardDescriptor();
|
||||
void unsecureSetKicked(int i);
|
||||
void unsecureSetHasKickerCost(int i);
|
||||
void unsecureSetHasConvokeCost(int i);
|
||||
void unsecureSetHasFlashbackCost(int i);
|
||||
void unsecureSetHasBackSide(int i);
|
||||
void unsecureSetModified(int i);
|
||||
void unsecureSetHasPartner(int i);
|
||||
void unsecureSetKicked(int k);
|
||||
void unsecureSetHasKickerCost(int k);
|
||||
void unsecureSetHasConvokeCost(int k);
|
||||
void unsecureSetHasFlashbackCost(int k);
|
||||
void unsecureSetHasBackSide(int k);
|
||||
void unsecureSetModified(int k);
|
||||
void unsecureSetHasToxic(int k);
|
||||
void unsecureSetHasPartner(int k);
|
||||
void unsecureSetTapped(int i);
|
||||
void unsecuresetfresh(int k);
|
||||
void unsecuresetrecent(int j);
|
||||
|
||||
Reference in New Issue
Block a user