MArcomage

Free multiplayer on-line fantasy card game

Please log in


10 R
Anomaly sphere
Anomaly sphere

Illusion

Negates the positive effect of opponent's last round on his tower, wall, facilities and stock

Id
390
Name
Anomaly sphere
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 10 / 0
Modes
0
Level
9
Created
24. Dec, 2008
Modified
31. Mar, 2013
Played
171 / 1864
Discarded
63 / 787
Drawn
379 / 4210

BB code

Effect

Negates the positive effect of opponent's last round on his tower, wall, facilities and stock

Code

    $t->hisData()
      ->addTower(-max(0, $t->hisChange('Tower')))
      ->addWall(-max(0, $t->hisChange('Wall')))
      ->addQuarry(-max(0, $t->hisChange('Quarry')))
      ->addMagic(-max(0, $t->hisChange('Magic')))
      ->addDungeons(-max(0, $t->hisChange('Dungeons')))
      ->addBricks(-max(0, $t->hisChange('Bricks')))
      ->addGems(-max(0, $t->hisChange('Gems')))
      ->addRecruits(-max(0, $t->hisChange('Recruits')));