$t->hisData()->attack(12);
$t->myData()->addStock(-5);
$t->setCard('his', $t->cardPos(), 97, ['reveal' => true]);
$storage = array();
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($i != $t->cardPos() && $t->getCard($t->hisData()->Hand[$i])->getRarity() == 'Common') {
$storage[] = $i;
}
}
$count = min(count($storage), 2);
if ($count > 0) {
shuffle($storage);
for ($k = 0; $k < $count; $k++) {
$i = $storage[$k];
$t->setCard('his', $i, 97, ['reveal' => true]);
}
}