Paper golem
            
               
               
               
            
            Bricks prod x2
If #Aria in hand > 1
Attack: 15
If #Aqua in opponent's hand = 0
Wall: +15
           
          
          
          
          
          
            Cost (B / G / R)
            0 / 0 / 0
           
          
          
          
          
          
          
          
          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);
    }