ab445c9758
- Added a few cards - Creature attacks, blocks, is re-ordered in blocking list events
21 lines
506 B
C++
21 lines
506 B
C++
#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;
|
|
attacker = 0;
|
|
defenser = NULL;
|
|
banding = NULL;
|
|
mCache = source->mCache;
|
|
|
|
} |