- Added a few cards
- Creature attacks, blocks, is re-ordered in blocking list events
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-07-12 12:27:55 +00:00
parent feedb16eae
commit ab445c9758
19 changed files with 280 additions and 148 deletions

View File

@@ -24,4 +24,14 @@ WEventPhaseChange::WEventPhaseChange(Phase * _from, Phase * _to):WEvent(CHANGE_P
to = _to;
}
WEventCardTap::WEventCardTap(MTGCardInstance * card, bool before, bool after):WEvent(), card(card),before(before), after(after){}
WEventCardTap::WEventCardTap(MTGCardInstance * card, bool before, bool after)
:WEventCardUpdate(card), before(before), after(after){}
WEventCreatureAttacker::WEventCreatureAttacker(MTGCardInstance * card,Targetable * before, Targetable * after)
:WEventCardUpdate(card), before(before), after(after){}
WEventCreatureBlocker::WEventCreatureBlocker(MTGCardInstance * card,MTGCardInstance * from,MTGCardInstance * to)
:WEventCardUpdate(card), before(before), after(after){}
WEventCreatureBlockerRank::WEventCreatureBlockerRank(MTGCardInstance * card,MTGCardInstance * exchangeWith, MTGCardInstance * attacker)
:WEventCardUpdate(card), exchangeWith(exchangeWith), attacker(attacker){}