untap target as cost.

This commit is contained in:
omegablast2002@yahoo.com
2012-04-01 17:39:41 +00:00
parent 26fba2d7aa
commit 4dfacaa409
3 changed files with 58 additions and 1 deletions
+6 -1
View File
@@ -159,10 +159,15 @@ ManaCost * ManaCost::parseManaCost(string s, ManaCost * _manaCost, MTGCardInstan
break;
}
case 'q':
if(value == "q")
{
manaCost->addExtraCost(NEW UnTapCost);
break;
}
else
{
manaCost->addExtraCost(NEW UnTapTargetCost(tc));
}
break;
case 'c': //Counters or cycle
{
if(value == "chosencolor")