Abyssal viper
If targeting self, gain recruits cost of the matching card (max 10), else replace a card in hand with self
Cost (B / G / R)
0 / 0 / 1
BB code
Effect
If targeting self, gain recruits cost of the matching card (max 10), else replace a card in hand with self
Code
if ($t->mode() == $t->cardPos()) {
$t->myData()->addRecruits(min($t->getCard($t->hisData()->Hand[$t->cardPos()])->getResources('Recruits'), 10));
}
else {
$t->replaceCard('my', $t->mode(), $t->card()->id());
}