rebounded trigger

for use with rebound cards only
This commit is contained in:
Anthony Calosa
2016-08-25 22:25:34 +08:00
parent 5b49530df9
commit f3dd1be125
2 changed files with 44 additions and 0 deletions

View File

@@ -425,6 +425,19 @@ public:
};
class TriggerRebound : public TriggerAtPhase
{
public:
int destroyActivated;
bool sourceUntapped;
bool sourceTap;
bool once,activeTrigger;
TriggerRebound(GameObserver* observer, int id, MTGCardInstance * source, Targetable * target,int _phaseId, int who = 0,bool sourceUntapped = false,bool sourceTap = false,bool once = false);
virtual TriggerRebound* clone() const;
virtual int testDestroy();
};
class GenericTriggeredAbility : public TriggeredAbility, public NestedAbility
{