some fixes
fixes fabricate fixes lorded lands add propagate keyword (like proliferate but it increases all counters) cards with proliferate can choose a player now
This commit is contained in:
@@ -3896,7 +3896,17 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG
|
||||
a->canBeInterrupted = false;
|
||||
return a;
|
||||
}
|
||||
|
||||
//proliferate all counters
|
||||
found = s.find("propagate");
|
||||
if (found != string::npos)
|
||||
{
|
||||
MTGAbility * a = NEW AAProliferate(observer, id, card, target);
|
||||
a->oneShot = 1;
|
||||
a->canBeInterrupted = false;
|
||||
((AAProliferate*)a)->allcounters = true;
|
||||
return a;
|
||||
}
|
||||
|
||||
//frozen, next untap this does not untap.
|
||||
found = s.find("frozen");
|
||||
if (found != string::npos)
|
||||
|
||||
Reference in New Issue
Block a user