- opponentshroud small bug fix
- added "kicker=" line and "kicker" auto keyword. See Vines of Vastwood (ZEN) for an example. WARNING: kicker= line has to be AFTER "mana=" line
- daily build
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-09-27 09:53:29 +00:00
parent e464b8616a
commit 9704ee4a24
17 changed files with 126 additions and 27 deletions

View File

@@ -20,7 +20,12 @@ class ManaCost{
int extraCostsIsCopy;
public:
enum{
MANA_PAID = 1,
MANA_PAID_WITH_KICKER = 2
};
ExtraCosts * extraCosts;
ManaCost * kicker;
static ManaCost * parseManaCost(string value, ManaCost * _manacost = NULL, MTGCardInstance * c = NULL);
virtual void init();
void x();