- Added deathtouch (TODO: update Combat rules for damage on multiple blockers)
- Added intimidate (untested)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-09-12 12:40:14 +00:00
parent baf49c9ebf
commit 23fb17e58e
9 changed files with 110 additions and 6 deletions
+6 -4
View File
@@ -95,11 +95,13 @@ class Constants
CANTATTACK = 37,
MUSTATTACK = 38,
CANTBLOCK = 39,
DOESNOTUNTAP =40,
OPPONENTSHROUD=41,
INDESTRUCTIBLE=42,
DOESNOTUNTAP = 40,
OPPONENTSHROUD = 41,
INDESTRUCTIBLE = 42,
INTIMIDATE = 43,
DEATHTOUCH = 44,
NB_BASIC_ABILITIES = 43,
NB_BASIC_ABILITIES = 45,
RARITY_M = 'M',
+13
View File
@@ -112,6 +112,19 @@ class MTGLifelinkRule:public MTGAbility{
virtual MTGLifelinkRule * clone() const;
};
/* Deathtouch */
class MTGDeathtouchRule:public MTGAbility{
public:
MTGDeathtouchRule(int _id);
int receiveEvent(WEvent * event);
int testDestroy();
const char * getMenuText(){return "Deathtouch";}
virtual MTGDeathtouchRule * clone() const;
};
/* HUD Display */