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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user