Fixed primitives, changed type of "isFlipped" card variable from bool to int and fixed a related bug on targeting cards with "isFlipped" attribute, improved "disturb" ability (now fi you counter a card casted with disturb it correctly goes to exile), added "decayed" ability, added two new zone alias "mycommandplay" and "opponentcommandplay" for targeting Battlefield and CommandZone at the same time.

This commit is contained in:
Vittorio Alfieri
2021-09-06 17:31:36 +02:00
parent ccae9673e6
commit 9dabf121d3
15 changed files with 47 additions and 34 deletions

View File

@@ -96,7 +96,7 @@ public:
bool exerted;
bool turningOver;
bool isMorphed;
bool isFlipped;
int isFlipped;
string MeldedFrom;
bool isPhased;
bool isCascaded;

View File

@@ -326,7 +326,8 @@ class Constants
HASDISTURB = 199,
DAYBOUND = 200,
NIGHTBOUND = 201,
NB_BASIC_ABILITIES = 202,
DECAYED = 202,
NB_BASIC_ABILITIES = 203,
RARITY_S = 'S', //Special Rarity
RARITY_M = 'M', //Mythics