Northern fortress
            
            Wall: +40
If not New and adjacent card is New
Tower: +20
           
          
          
          
          
          
            Cost (B / G / R)
            35 / 0 / 0
           
          
          
          
          
          
          
          
          BB code
          
            
          
          Effect
          Wall: +40
If not New and adjacent card is New
Tower: +20
          Code
          
            
    $t->myData()->addWall(40);
    if (!$t->isMyNew($t->cardPos()) && ($t->isMyNew($t->cardPos() - 1) || $t->isMyNew($t->cardPos() + 1))) {
      $t->myData()->addTower(20);
    }