Ejemplo n.º 1
0
 public function cast(Player $player, Boss $boss, EffectTracker $effects)
 {
     $player->reduceMana($this->getCost());
     $effects->add($this);
 }
Ejemplo n.º 2
0
 public function cast(Player $player, Boss $boss, EffectTracker $effects)
 {
     $player->reduceMana($this->getCost());
     $player->giveHealth(2);
     $boss->inflictDamage(2);
 }