示例#1
0
文件: Vampirism.php 项目: gregwar/php
 /**
  * Frappe l'adversaire
  */
 public function attack(BaseCreature $runner, BaseCreature $target)
 {
     $life = 15 + mt_rand(0, 10);
     $target->hit($life);
     $runner->heal($life / 2.0);
 }
示例#2
0
文件: Heal.php 项目: gregwar/php
 /**
  * Frappe l'adversaire
  */
 public function attack(BaseCreature $runner, BaseCreature $target)
 {
     $runner->heal(25 + mt_rand(0, 10));
 }