Laurent -

Added ability DOESNOTUNTAP , see _cards.dat from 10E (Colossus of sardia, dehydratation). Test suite OK. The ability does not work with enchant creature (as for protection from...) So Dehydratation is hardcoded (can be aliased if necessary) Small bug with dehydratation, will untap creature when cast... WHY ? Any Idea/Solution welcome...
This commit is contained in:
wagic.laurent
2009-06-17 23:54:05 +00:00
parent ba83a42fa4
commit cf35acd3f3
8 changed files with 44 additions and 20 deletions

View File

@@ -1458,7 +1458,6 @@ class AUntaper:public TargetAbility{
}
};
// Add life of gives damage if a given zone has more or less than [condition] cards at the beginning of [phase]
//Ex : the rack, ivory tower...
class ALifeZoneLink:public MTGAbility{

View File

@@ -22,6 +22,7 @@ class Blocker : public MTGAbility {
virtual int unblock(){return 1;};
Blocker(int id, MTGCardInstance * card, ManaCost * _cost);
Blocker(int id, MTGCardInstance * card);
Blocker(int id, MTGCardInstance * card, MTGCardInstance *_target);
Blocker(int id, MTGCardInstance * card, MTGCardInstance *_target, ManaCost * _cost);
~Blocker();
virtual void Update(float dt);

View File

@@ -95,8 +95,9 @@ class Constants
CANTATTACK = 37,
MUSTATTACK = 38,
CANTBLOCK = 39,
DOESNOTUNTAP =40,
NB_BASIC_ABILITIES = 40,
NB_BASIC_ABILITIES = 41,
RARITY_M = 'M',