- Fix a bug with Nevinyrrals Disk
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-04-05 13:22:37 +00:00
parent a68478dcca
commit a8942331eb
8 changed files with 84 additions and 17 deletions

View File

@@ -220,13 +220,13 @@ class GenericTriggeredAbility:public TriggeredAbility{
class AbilityFactory{
private:
int countCards(TargetChooser * tc, Player * player = NULL, int option = 0);
int destroyAllInPlay(TargetChooser * tc, int bury = 0);
int putInPlayFromZone(MTGCardInstance * card, MTGGameZone * zone, Player * p);
int parsePowerToughness(string s, int *power, int *toughness);
Trigger * parseTrigger(string magicText);
Damageable * parseCollateralTarget(MTGCardInstance * card, string s);
public:
int magicText(int id, Spell * spell, MTGCardInstance * card = NULL);
int destroyAllInPlay(TargetChooser * tc, int bury = 0);
void addAbilities(int _id, Spell * spell);
};