- Dragon Whelp bug fix
- Rampage bug fix
- AI can use mana abilities.
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-07-19 04:19:24 +00:00
parent 72e10fab24
commit 9b263eaee1
6 changed files with 130 additions and 78 deletions

View File

@@ -217,7 +217,7 @@ class AbilityFactory{
class AManaProducer: public MTGAbility{
protected:
ManaCost * output;
string menutext;
float x0,y0,x1,y1,x,y;
float animation;
@@ -226,6 +226,7 @@ class AManaProducer: public MTGAbility{
hgeParticleSystem * mParticleSys;
public:
ManaCost * output;
int tap;
static int currentlyTapping;
AManaProducer(int id, MTGCardInstance * card, ManaCost * _output, ManaCost * _cost = NULL, int doTap = 1 );