Doppelganger
If targeting self and not New, summons the matching card, else replace a card in hand with self
Cost (B / G / R)
0 / 5 / 0
BB code
Effect
If targeting self and not New, summons the matching card, else replace a card in hand with self
Code
if (!$t->isMyNew($t->cardPos()) && $t->mode() == $t->cardPos()) {
$t->nextCard($t->hisData()->Hand[$t->cardPos()], true);
}
else {
if ($t->mode() == $t->cardPos()) {
$t->noNextCard();
}
else {
$t->replaceCard('my', $t->mode(), $t->card()->id());
}
}