Move selected card from opponent's hand to matching position in hand (can't discard self)
If targeting self
Gems: +16
if ($t->mode() == $t->cardPos()) {
$t->myData()->addGems(16);
}
else {
$t->setCard('my', $t->mode(), $t->hisData()->Hand[$t->mode()], ['reveal' => true]);
}
$t->setCard('his', $t->mode(), $t->drawCard($t->hisDeck(), $t->hisData()->Hand, $t->mode(), 'drawCardDifferent'));