added gatecrash "evole" mechanic.

auto=evole
This commit is contained in:
omegablast2002@yahoo.com
2012-12-24 16:19:32 +00:00
parent 2b4df1cc68
commit 651d0b4623
2 changed files with 33 additions and 0 deletions
+6
View File
@@ -2284,6 +2284,12 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
return NEW ARampageAbility(observer, id, card, power, toughness, MaxOpponent);
}
//evole
if (s.find("evole") != string::npos)
{
return NEW AEvoleAbility(observer, id, card);
}
//flanking
if (s.find("flanker") != string::npos)
{