MArcomage

Free multiplayer on-line fantasy card game

Please log in


0 R
Paper golem
Paper golem

Unliving Aria Forbidden

Bricks prod x2
If #Aria in hand > 1
Attack: 15
If #Aqua in opponent's hand = 0
Wall: +15

Id
754
Name
Paper golem
Rarity
Rare
Cost (B / G / R)
0 / 0 / 0
Modes
0
Level
10
Created
29. Oct, 2016
Modified
16. Sep, 2017
Played
162 / 252
Discarded
37 / 52
Drawn
0 / 70

BB code

Effect

Bricks prod x2
If #Aria in hand > 1
Attack: 15
If #Aqua in opponent's hand = 0
Wall: +15

Code

    $t->production()->multiplyBricks(2);
    if ($t->keywordCount($t->myData()->Hand, 'Aria') > 1) {
      $t->hisData()->attack(15);
    }
    if ($t->keywordCount($t->hisData()->Hand, 'Aqua') == 0) {
      $t->myData()->addWall(15);
    }