Ninja
Production x0
Enemy tower: -3
Replace a card in hand with self
Cost (B / G / R)
0 / 0 / 0
BB code
Effect
Production x0
Enemy tower: -3
Replace a card in hand with self
Code
$t->production()->multiply(0);
$t->hisData()->addTower(-3);
if ($t->mode() == $t->cardPos()) {
$t->noNextCard();
}
else {
$t->replaceCard('my', $t->mode(), $t->card()->id());
}