MArcomage

Free multiplayer on-line fantasy card game

Please log in


5 5 C
Mithril mine
Mithril mine

If Quarry < Enemy quarry
Quarry: +1
else
Bricks: +11

Id
187
Name
Mithril mine
Rarity
Common
Keywords
Cost (B / G / R)
5 / 5 / 0
Modes
0
Level
5
Created
26. Mar, 2007
Modified
19. Oct, 2013
Played
3995 / 28984
Discarded
2346 / 14423
Drawn
7836 / 56972

BB code

Effect

If Quarry < Enemy quarry
Quarry: +1
else
Bricks: +11

Code

    if ($t->myData()->Quarry < $t->hisData()->Quarry) {
      $t->myData()->addQuarry(1);
    }
    else {
      $t->myData()->addBricks(11);
    }