Example #1
0
    protected function isBoostedDmg(AttackResult $result) {
        $boostedDmg = parent::isBoostedDmg($result);
        if (!$boostedDmg && $this->getSim()->isBoostDamage() && $this->curFury < $this->fury) {
            $boostedDmg = true;
            $this->curFury++;
        }

        return $boostedDmg;
    }