Erwan
- Added Tokens (needs testing !!!) - Added a few cards that create tokens
This commit is contained in:
19
projects/mtg/src/Token.cpp
Normal file
19
projects/mtg/src/Token.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#include "../include/Token.h"
|
||||
|
||||
Token::Token(string _name, MTGCardInstance * source, int _power, int _toughness):MTGCardInstance(){
|
||||
isToken = true;
|
||||
tokenSource = source;
|
||||
power = _power;
|
||||
toughness = _toughness;
|
||||
life=toughness;
|
||||
lifeOrig = life;
|
||||
name = _name;
|
||||
setMTGId(- source->getMTGId());
|
||||
setId = source->setId;
|
||||
model = this;
|
||||
owner = source->owner;
|
||||
belongs_to=source->controller()->game;
|
||||
initAttackersDefensers();
|
||||
mCache = source->mCache;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user