예제 #1
0
파일: Healer.php 프로젝트: macseem/bee-game
 public function beforeTakeHit()
 {
     $this->heal($this->searchBee(), $this->getHoneyPool());
     return parent::beforeTakeHit();
 }
예제 #2
0
파일: Worker.php 프로젝트: macseem/bee-game
 public function beforeTakeHit()
 {
     $this->makeHoney($this->getHoneyPool());
     return parent::beforeTakeHit();
 }