added new functionality to AAMover...

you can now do 
moveto(targetzone) and((ability)) 
moveto(mybatlefield) and((transforms((zombie,black)) forever))
This commit is contained in:
omegablast2002@yahoo.com
2011-09-21 14:06:32 +00:00
parent ab7eb1b93e
commit 11095f3339
3 changed files with 48 additions and 2 deletions

View File

@@ -984,13 +984,14 @@ class AAMover: public ActivatedAbility
{
public:
string destination;
MTGAbility * andAbility;
AAMover(int _id, MTGCardInstance * _source, MTGCardInstance * _target, string dest, ManaCost * _cost = NULL);
MTGGameZone * destinationZone(Targetable * target = NULL);
int resolve();
const char * getMenuText();
const char * getMenuText(TargetChooser * fromTc);
AAMover * clone() const;
~AAMover();
};
//-----------------------------------------------------------------------------------------------