Added new primitives from LTR set, added notrigger option for special tokens such as "The Monarch" and "The Ring" and "The Initiative", fixed LTR dat file, updated missing cards by sets list, added "untp" option for "rehook" and "retarget" ability to untap the equipped creature, added new restriction "oppoattacked" to check if your opponent has attacked during the current turn.

This commit is contained in:
Vittorio Alfieri
2023-06-28 17:07:09 +02:00
parent 9760ab39b7
commit 1ab4e4ebfd
7 changed files with 760 additions and 12 deletions

View File

@@ -4960,7 +4960,8 @@ public:
bool newhook;
int mutation;
bool fromplay;
AANewTarget(GameObserver* observer, int id, MTGCardInstance * card, MTGCardInstance * _target, ManaCost * _cost = NULL, bool retarget = false, bool reequip = false, bool newhook = false, int mutation = 0, bool fromplay = false);
bool untap;
AANewTarget(GameObserver* observer, int id, MTGCardInstance * card, MTGCardInstance * _target, ManaCost * _cost = NULL, bool retarget = false, bool reequip = false, bool newhook = false, int mutation = 0, bool fromplay = false, bool untap = false);
int resolve();
const string getMenuText();
AANewTarget * clone() const;