Please log in
Discard all rare cards from opponent's hand (opponent can't draw rare cards)
BB code
Effect
Code
for ($i = 1; $i <= $t->handSize(); $i++) { if ($t->getCard($t->hisData()->Hand[$i])->getRarity() == 'Rare') { $t->setCard('his', $i, $t->drawCard($t->hisDeck(), $t->hisData()->Hand, $i, 'drawCardNoRare')); } }
An error has occurred