- fix issue 111
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-10-24 13:06:02 +00:00
parent fb52ea5452
commit 60845ee3b3
3 changed files with 24 additions and 5 deletions

View File

@@ -82,6 +82,9 @@ class MTGCardInstance: public MTGCard, public Damageable {
int toggleDefenser(MTGCardInstance * opponent);
int raiseBlockerRankOrder(MTGCardInstance * blocker);
int bringBlockerToFrontOfOrder(MTGCardInstance * blocker);
//Returns rank of the card in blockers if it is a blocker of this (starting at 1), 0 otherwise
int getDefenserRank(MTGCardInstance * blocker);
int toggleAttacker();
MTGCardInstance * banding; // If belongs to a band when attacking
int canBlock();
@@ -141,8 +144,8 @@ class MTGCardInstance: public MTGCard, public Damageable {
ostream& toString(ostream&) const;
static MTGCardInstance AnyCard;
static MTGCardInstance NoCard;
static MTGCardInstance AnyCard;
static MTGCardInstance NoCard;
};