Elven market
Production x2
You lose 1 random resource for each non-Alliance card in hand
Cost (B / G / R)
0 / 0 / 1
BB code
Effect
Production x2
You lose 1 random resource for each non-Alliance card in hand
Code
$t->production()->multiply(2);
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($i != $t->cardPos() && !$t->getCard($t->myData()->Hand[$i])->hasKeyword('Alliance')) {
$t->myData()->addRandomResources(-1);
}
}