Necromancy
Summons Undead of a rarity based on #Undead in hand (C - 0 to 3, U - 4 to 6, R - 7)
Cost (B / G / R)
0 / 4 / 0
BB code
Effect
Summons Undead of a rarity based on #Undead in hand (C - 0 to 3, U - 4 to 6, R - 7)
Code
$tmp = $t->keywordCount($t->myData()->Hand, 'Undead');
$rarity = ($tmp == 7) ? 'Rare' : (($tmp < 7 && $tmp > 3) ? 'Uncommon' : 'Common');
$t->nextCard($t->drawCard($t->getList(['rarity'=>$rarity, 'keyword'=>'Undead']), $t->myData()->Hand, $t->cardPos(), 'drawCardList'));