MArcomage

Free multiplayer on-line fantasy card game

Please log in


30 U
Poseidon's wrath
Poseidon's wrath

Destruction

Player(s) with fewest Aqua in hand suffers
Tower: -15
Wall: -15
Stock: -10

Id
525
Name
Poseidon's wrath
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 30 / 0
Modes
0
Level
10
Created
14. Mar, 2010
Modified
7. Apr, 2012
Played
1314 / 6498
Discarded
631 / 5342
Drawn
2590 / 14729

BB code

Effect

Player(s) with fewest Aqua in hand suffers
Tower: -15
Wall: -15
Stock: -10

Code

    $my_count = $t->keywordCount($t->myData()->Hand, 'Aqua');
    $his_count = $t->keywordCount($t->hisData()->Hand, 'Aqua');
    if ($my_count <= $his_count) {
      $t->myData()->addTower(-15)->addWall(-15)->addStock(-10);
    }
    if ($my_count >= $his_count) {
      $t->hisData()->addTower(-15)->addWall(-15)->addStock(-10);
    }