MArcomage

Free multiplayer on-line fantasy card game

Please log in


1 C
Elven market
Elven market

Alliance

Production x2
You lose 1 random resource for each non-Alliance card in hand

Id
655
Name
Elven market
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 1
Modes
0
Level
10
Created
24. Sep, 2011
Modified
24. Sep, 2011
Played
1883 / 13225
Discarded
695 / 3149
Drawn
2971 / 19695

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);
      }
    }