Пример #1
0
    protected function isBoostedDmg(AttackResult $result) {
        $boostedDmg = parent::isBoostedDmg($result);
        if (!$boostedDmg && $this->getSim()->isBoostDamage() && $this->curFury > 0) {
            $boostedDmg = true;
            $this->curFury--;
        }

        return $boostedDmg;
    }