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
4300 / 29289
Discarded
2690 / 14767
Drawn
8702 / 57838

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