-Fix issue 107 as well as another issue with doesnotuntap mentioned by leungcl
-Changed wording for Paralyzing Graps (to match oracle), please verify
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-10-25 14:01:25 +00:00
parent eab2086160
commit dd7c307c7a
7 changed files with 90 additions and 12 deletions
+8 -9
View File
@@ -363,15 +363,6 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
}
//Untapper (Ley Druid...)
found = s.find("untap");
if (found != string::npos){
MTGAbility * a = NEW AAUntapper(id,card,target);
a->oneShot = 1;
return a;
}
//Regeneration
found = s.find("regenerate");
if (found != string::npos){
@@ -679,6 +670,14 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
}
}
//Untapper (Ley Druid...)
found = s.find("untap");
if (found != string::npos){
MTGAbility * a = NEW AAUntapper(id,card,target);
a->oneShot = 1;
return a;
}
//Tapper (icy manipulator)
found = s.find("tap");
if (found != string::npos){