diff --git a/hwe/sammo/ActionItem/event_전투특기_필살.php b/hwe/sammo/ActionItem/event_전투특기_필살.php index 27f3fe99..5efa89f5 100644 --- a/hwe/sammo/ActionItem/event_전투특기_필살.php +++ b/hwe/sammo/ActionItem/event_전투특기_필살.php @@ -12,7 +12,7 @@ class event_전투특기_필살 extends \sammo\BaseItem{ protected $id = 71; protected $rawName = '비급'; protected $name = '비급(필살)'; - protected $info = '[전투] 필살 확률 +25%p, 필살 발동시 대상 회피 불가'; + protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가'; protected $cost = 100; protected $buyable = true; protected $consumable = false; @@ -20,7 +20,7 @@ class event_전투특기_필살 extends \sammo\BaseItem{ public function onCalcStat(General $general, string $statName, $value, $aux=null){ if($statName === 'warCriticalRatio'){ - return $value + 0.25; + return $value + 0.3; } return $value; } diff --git a/hwe/sammo/ActionSpecialWar/che_필살.php b/hwe/sammo/ActionSpecialWar/che_필살.php index b1f2824e..68ce99e5 100644 --- a/hwe/sammo/ActionSpecialWar/che_필살.php +++ b/hwe/sammo/ActionSpecialWar/che_필살.php @@ -11,7 +11,7 @@ class che_필살 extends \sammo\BaseSpecial{ protected $id = 71; protected $name = '필살'; - protected $info = '[전투] 필살 확률 +25%p, 필살 발동시 대상 회피 불가'; + protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가'; static $selectWeightType = SpecialityHelper::WEIGHT_NORM; static $selectWeight = 1; @@ -23,7 +23,7 @@ class che_필살 extends \sammo\BaseSpecial{ public function onCalcStat(General $general, string $statName, $value, $aux=null){ if($statName === 'warCriticalRatio'){ - return $value + 0.25; + return $value + 0.30; } return $value; }