From f190b74a7eb9dd35bebbb41e87ff8d8e59ac6458 Mon Sep 17 00:00:00 2001 From: hide_d Date: Wed, 15 Jul 2020 02:52:14 +0900 Subject: [PATCH] =?UTF-8?q?=ED=95=84=EC=82=B4=20=EC=A1=B0=EA=B8=88=20?= =?UTF-8?q?=EB=8D=94=20=EA=B0=95=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/ActionItem/event_전투특기_필살.php | 4 ++-- hwe/sammo/ActionSpecialWar/che_필살.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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; }