MArcomage

Free multiplayer on-line fantasy card game

Please log in

Keywords > Aqua

Icon

Aqua

Effect

High tide - if an Aqua card is played after playing a different, non-common Aqua card, it raises your tower and wall by 3, opponent's stock is reduced by 3.

Lore

Little is known about the deep sea creatures. They occasionally ambush a merchant ship or a lightly defended port, but few men came back to tell the tale. They are unmatched when they are in their element, often turning the tide of the battle - literally.

The power of the deep sea creatures is reflected in the water itself - it has many shapes and forms ranging from destruction and sabotage to protection and healing.

Code

    if ($t->myLastCard()->hasKeyword('Aqua') && $t->myLastAction() == 'play'
      && $t->myLastCard()->getRarity() != 'Common' && $t->card()->id() != $t->myLastCard()->id()) {
      $t->myData()->addTower(3)->addWall(3);
      $t->hisData()->addStock(-3);
    }