MArcomage

Free multiplayer on-line fantasy card game

Please log in


2 1 C
Shrine
Shrine

If Wall is divisible by 5
Wall: +9
Gems: +4
else
Wall: +4

Id
420
Name
Shrine
Rarity
Common
Keywords
Cost (B / G / R)
2 / 1 / 0
Modes
0
Level
10
Created
11. Apr, 2009
Modified
24. Dec, 2012
Played
6877 / 32920
Discarded
4633 / 18611
Drawn
13639 / 61699

BB code

Effect

If Wall is divisible by 5
Wall: +9
Gems: +4
else
Wall: +4

Code

    if (($t->myData()->Wall % 5) == 0) {
      $t->myData()->addWall(9)->addGems(4);
    }
    else {
      $t->myData()->addWall(4);
    }