$t->production()->multiplyRecruits(2);
$list = array_diff(array_intersect($t->getList(['keyword'=>'Beast']), $t->getList(['keyword'=>'Frenzy'])), [$t->card()->id()]);
if ($t->cardPos() > 1) {
$t->setCard('my', $t->cardPos() - 1, $t->drawCard($list, $t->myData()->Hand, $t->cardPos() - 1, 'drawCardList'));
}
if ($t->cardPos() < $t->handSize()) {
$t->setCard('my', $t->cardPos() + 1, $t->drawCard($list, $t->myData()->Hand, $t->cardPos() + 1, 'drawCardList'));
}