fix: 필살 비급 패치 누락

This commit is contained in:
2022-05-18 17:28:38 +09:00
parent e3716bda56
commit 5b19c24f84
2 changed files with 12 additions and 2 deletions
@@ -11,7 +11,7 @@ class che_event_필살 extends \sammo\BaseSpecial{
protected $id = 71;
protected $name = '필살';
protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가';
protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가, 필살 계수 항상 최대';
static $selectWeightType = SpecialityHelper::WEIGHT_NORM;
static $selectWeight = 1;
@@ -25,6 +25,11 @@ class che_event_필살 extends \sammo\BaseSpecial{
if($statName === 'warCriticalRatio'){
return $value + 0.30;
}
if($statName === 'criticalDamageRange'){
[, $rangeMax] = $value;
return [$rangeMax, $rangeMax];
}
return $value;
}