added moverandom(tc) from(zone) to(zone) ability...example

moverandom(creature[green]) from(mygraveyard) to(opponentbattlefield)
example card

[card]
name=Tariel, Reckoner of Souls
auto={t}:moverandom(creature) from(opponentgraveyard) to(mybattlefield)
mana={4}{W}{B}{R}
abilities=Flying,vigilance
type=Legendary Creature
subtype=Angel
power=4
toughness=7
text=Flying, vigilance {T}: Choose a creature card at random from target opponent's graveyard. Put that card onto the battlefield under your control.
[/card]
This commit is contained in:
omegablast2002@yahoo.com
2012-02-02 03:52:20 +00:00
parent 228fe23e49
commit 99ab44a20e
3 changed files with 109 additions and 1 deletions

View File

@@ -1047,6 +1047,21 @@ public:
~AAMover();
};
// AARandomMover
class AARandomMover: public ActivatedAbility
{
public:
string abilityTC;
string fromZone;
string toZone;
AARandomMover(GameObserver* observer, int _id, MTGCardInstance * _source, MTGCardInstance * _target, string tcs, string from, string to);
MTGGameZone * destinationZone(Targetable * target = NULL,string zone = "");
int resolve();
const char * getMenuText();
AARandomMover * clone() const;
~AARandomMover();
};
//-----------------------------------------------------------------------------------------------
class AABuryCard: public ActivatedAbility