Added/fixed primitives, updated the "missing_cards_by_sets" folder, added new ability "hasstrive" to implement Strive cost with multikicker and refactored all cards with Strive cost (now they use a special version of multikicker but they don't count as kicked spell), improved "targeted" and "vampired" trigger to allow the "turnlimited" option, improved Android gesture to emulate "option menu" button pressure (slide down) and emulate "back" button pressure (slide up).

This commit is contained in:
Vittorio Alfieri
2021-09-07 21:41:24 +02:00
parent 9dabf121d3
commit 9aa15766d4
21 changed files with 424 additions and 512 deletions

View File

@@ -233,7 +233,8 @@ const char* Constants::MTGBasicAbilities[] = {
"hasdisturb", //Retrace cost is a disturb cost (e.g. "Beloved Beggar")
"daybound", //Card has daybound (e.g. "Brutal Cathar")
"nightbound", //Card has nightbound (e.g. "Moonrage Brute")
"decayed" //Card has decayd.
"decayed", //Card has decayed.
"hasstrive" //Kicker cost is a strive cost (e.g. "Aerial Formation")
};
map<string,int> Constants::MTGBasicAbilitiesMap;