MArcomage

Free multiplayer on-line fantasy card game

Please log in


0 C
Judge
Judge

If opponent lowered your stock last round he loses twice the amount of lost stock (max 8)
No effect on Judge

Id
364
Name
Judge
Rarity
Common
Keywords
Cost (B / G / R)
0 / 0 / 0
Modes
0
Level
10
Created
30. Jul, 2008
Modified
1. Nov, 2010
Played
1089 / 16783
Discarded
1833 / 18810
Drawn
3715 / 46226

BB code

Effect

If opponent lowered your stock last round he loses twice the amount of lost stock (max 8)
No effect on Judge

Code

    if (($t->myChange('Bricks') < 0 || $t->myChange('Gems') < 0 || $t->myChange('Recruits') < 0) && $t->hisLastCard()->id() != 364) {
      $t->hisData()
        ->addBricks(min(0, max(-8, 2 * $t->myChange('Bricks'))))
        ->addGems(min(0, max(-8, 2 * $t->myChange('Gems'))))
        ->addRecruits(min(0, max(-8, 2 * $t->myChange('Recruits'))));
    }