$storage = array();
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($t->getCard($t->myData()->Hand[$i])->hasKeyword('Undead') && $i != $t->mode() && $i != $t->cardPos()) {
$storage[$i] = $i;
}
}
shuffle($storage); $tmp = 0;
for ($i = 0; ($i < count($storage) && $i < 5); $i++) {
$t->setCard('my', $storage[$i], $t->drawCard($t->myDeck(), $t->myData()->Hand, $storage[$i], 'drawCardRandom'));
$tmp++;
}
$t->myData()->addWall(10 * $tmp);