Edge of autumn
	Mirrorworks

	Clone of the card now have the same image as original
	Issue with cloning and trigger "nontoken * enters"

	Blitzkrig rules
	Hermit druid rules
This commit is contained in:
pankdm
2013-09-23 19:40:12 +00:00
parent 93ebca3041
commit 11f541a627
8 changed files with 56 additions and 7 deletions
+3 -2
View File
@@ -2459,7 +2459,8 @@ int AACloner::resolve()
if (!_target)
return 0;
MTGCard* clone = (_target->isToken ? _target: MTGCollection()->getCardByName(_target->name));
// Use id of the card to have the same image as the original
MTGCard* clone = (_target->isToken ? _target: MTGCollection()->getCardById(_target->getId()));
Player * targetPlayer = who == 1 ? source->controller()->opponent() : source->controller();
@@ -2467,8 +2468,8 @@ int AACloner::resolve()
targetPlayer->game->temp->addCard(myClone);
Spell * spell = NEW Spell(game, myClone);
spell->resolve();
spell->source->isToken = 1;
spell->resolve();
spell->source->fresh = 1;
spell->source->model = spell->source;
spell->source->model->data = spell->source;