Merge pull request #1 from WagicProject/master

added abilities= keyword "devoid"
This commit is contained in:
Anthony Calosa
2016-06-02 08:50:37 +08:00
3 changed files with 19 additions and 2 deletions

View File

@@ -241,7 +241,8 @@ class Constants
TRINISPHERE = 120, TRINISPHERE = 120,
CANPLAYFROMEXILE = 121, CANPLAYFROMEXILE = 121,
LIBRARYEATER = 122, LIBRARYEATER = 122,
NB_BASIC_ABILITIES = 123, DEVOID = 123,
NB_BASIC_ABILITIES = 124,
RARITY_S = 'S', //Special Rarity RARITY_S = 'S', //Special Rarity

View File

@@ -638,6 +638,21 @@ void GameObserver::gameStateBasedEffects()
zone->cards[c]->cardistargetter = 0; zone->cards[c]->cardistargetter = 0;
} }
} }
///while checking all these zones, lets also strip devoid cards of thier colors
for (int w = 0; w < zone->nb_cards; w++)
{
MTGCardInstance * card = zone->cards[w];
for (int i = Constants::MTG_COLOR_GREEN; i <= Constants::MTG_COLOR_WHITE; ++i)
{
if (card->has(Constants::DEVOID))
{
card->removeColor(i);
}
}
}
}//check for losers if its GAMEOVER clear the stack to allow gamestateeffects to continue }//check for losers if its GAMEOVER clear the stack to allow gamestateeffects to continue
players[d]->DeadLifeState(); players[d]->DeadLifeState();
} }

View File

@@ -152,7 +152,8 @@ const char* Constants::MTGBasicAbilities[] = {
"zerocast", "zerocast",
"trinisphere", "trinisphere",
"canplayfromexile", "canplayfromexile",
"libraryeater" "libraryeater",
"devoid"
}; };
map<string,int> Constants::MTGBasicAbilitiesMap; map<string,int> Constants::MTGBasicAbilitiesMap;