todo others...
This commit is contained in:
Anthony Calosa
2016-06-09 15:35:59 +08:00
parent 76e7827ebf
commit 06fdf3f0a5
8 changed files with 115 additions and 9 deletions
+9
View File
@@ -2361,6 +2361,15 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
}
//imprint
found = s.find("imprint");
if (found != string::npos)
{
MTGAbility * a = NEW AAMover(observer, id, card, target, "exile",newName,NULL,false,false,true);
a->oneShot = 1;
return a;
}
//phaseout
found = s.find("phaseout");
if (found != string::npos)
{