Ejemplo n.º 1
0
 public function play()
 {
     parent::play();
     #  Détruit un quartier
     # Ses quartiers militaires rapportent
     $this->districtGold($this->player);
 }
Ejemplo n.º 2
0
 public function play()
 {
     parent::play();
     # Est protégé contre le Condottiere
     # Ses quartier religieux raportent
     $this->districtGold($this->player);
 }
Ejemplo n.º 3
0
 public function play()
 {
     parent::play();
     # Gagne une pièce d'or
     $this->player->gold++;
     # Ses quartier marchands raportent
     $this->districtGold($this->player);
 }
Ejemplo n.º 4
0
 public function play()
 {
     parent::play();
     # Devient le premier joueur
     $game = Game::getGame();
     foreach ($game->players as $playerTmp) {
         $playerTmp->crown = false;
         if ($playerTmp->character instanceof self) {
             $player = $playerTmp;
             $playerTmp->crown = true;
         }
     }
     # Ses quartiers nobles raportent
     $this->districtGold($this->player);
 }