Miracle
Player(s) with most Holy in hand gains
Stock: +8
His opponent gains
Stock: +2
Cost (B / G / R)
0 / 1 / 0
BB code
Effect
Player(s) with most Holy in hand gains
Stock: +8
His opponent gains
Stock: +2
Code
$my_count = $t->keywordCount($t->myData()->Hand, 'Holy');
$his_count = $t->keywordCount($t->hisData()->Hand, 'Holy');
if ($my_count >= $his_count) {
$t->myData()->addStock(8);
$t->hisData()->addStock(2);
}
if ($my_count <= $his_count) {
$t->myData()->addStock(2);
$t->hisData()->addStock(8);
}