ajani steadfast

ajani steadfast emblem
This commit is contained in:
Anthony Calosa
2016-05-29 14:31:29 +08:00
parent d7fd36ddeb
commit d4715ddc81
7 changed files with 125 additions and 92 deletions
+10
View File
@@ -2561,6 +2561,16 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
return a;
}
//Forcefield
found = s.find("forcefield");
if (found != string::npos)
{
MTGAbility * a = NEW AAEPIC(observer, id, card, target,"Forcefield",NULL,true);
a->oneShot = 1;
return a;
}
//Damage
vector<string> splitDamage = parseBetween(s, "damage:", " ", false);
if (splitDamage.size())