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
2057 / 13399
Discarded
729 / 3183
Drawn
3258 / 19982

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