Imprint Class

This commit is contained in:
Anthony Calosa
2016-06-16 07:15:24 +08:00
parent b38275123a
commit 9d79a85b96
3 changed files with 51 additions and 11 deletions

View File

@@ -2378,7 +2378,7 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
found = s.find("imprint");
if (found != string::npos)
{
MTGAbility * a = NEW AAMover(observer, id, card, target, "exile",newName,NULL,false,false,true);
MTGAbility * a = NEW AAImprint(observer, id, card, target);
a->oneShot = 1;
return a;
}