From 2da374410b3c15e2b472d6174c85567a0b4c8924 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 20 Aug 2022 14:29:54 +0900 Subject: [PATCH] =?UTF-8?q?game:=20=ED=95=84=EC=82=B4=20=EA=B3=84=EC=88=98?= =?UTF-8?q?=20=ED=96=A5=EC=83=81=20=EB=B0=A9=EC=8B=9D=20=EB=84=88=ED=94=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/ActionItem/event_전투특기_필살.php | 6 +++--- hwe/sammo/ActionSpecialDomestic/che_event_필살.php | 8 ++++---- hwe/sammo/ActionSpecialWar/che_필살.php | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/hwe/sammo/ActionItem/event_전투특기_필살.php b/hwe/sammo/ActionItem/event_전투특기_필살.php index 26cf530e..814a4fb8 100644 --- a/hwe/sammo/ActionItem/event_전투특기_필살.php +++ b/hwe/sammo/ActionItem/event_전투특기_필살.php @@ -11,7 +11,7 @@ class event_전투특기_필살 extends \sammo\BaseItem{ protected $rawName = '비급'; protected $name = '비급(필살)'; - protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가, 필살 계수 항상 최대'; + protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가, 필살 계수 향상'; protected $cost = 100; protected $buyable = true; protected $consumable = false; @@ -22,8 +22,8 @@ class event_전투특기_필살 extends \sammo\BaseItem{ return $value + 0.3; } if($statName === 'criticalDamageRange'){ - [, $rangeMax] = $value; - return [$rangeMax, $rangeMax]; + [$rangeMin, $rangeMax] = $value; + return [($rangeMin + $rangeMax) / 2, $rangeMax]; } return $value; diff --git a/hwe/sammo/ActionSpecialDomestic/che_event_필살.php b/hwe/sammo/ActionSpecialDomestic/che_event_필살.php index a3b5eec5..2d3c3d99 100644 --- a/hwe/sammo/ActionSpecialDomestic/che_event_필살.php +++ b/hwe/sammo/ActionSpecialDomestic/che_event_필살.php @@ -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; @@ -26,10 +26,10 @@ class che_event_필살 extends \sammo\BaseSpecial{ return $value + 0.30; } if($statName === 'criticalDamageRange'){ - [, $rangeMax] = $value; - return [$rangeMax, $rangeMax]; + [$rangeMin, $rangeMax] = $value; + return [($rangeMin + $rangeMax) / 2, $rangeMax]; } - + return $value; } diff --git a/hwe/sammo/ActionSpecialWar/che_필살.php b/hwe/sammo/ActionSpecialWar/che_필살.php index c52bdadb..38fb4d95 100644 --- a/hwe/sammo/ActionSpecialWar/che_필살.php +++ b/hwe/sammo/ActionSpecialWar/che_필살.php @@ -14,7 +14,7 @@ class che_필살 extends \sammo\BaseSpecial{ protected $id = 71; protected $name = '필살'; - protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가, 필살 계수 항상 최대'; + protected $info = '[전투] 필살 확률 +30%p, 필살 발동시 대상 회피 불가, 필살 계수 향상'; static $selectWeightType = SpecialityHelper::WEIGHT_NORM; static $selectWeight = 1; @@ -29,8 +29,8 @@ class che_필살 extends \sammo\BaseSpecial{ return $value + 0.30; } if($statName === 'criticalDamageRange'){ - [, $rangeMax] = $value; - return [$rangeMax, $rangeMax]; + [$rangeMin, $rangeMax] = $value; + return [($rangeMin + $rangeMax) / 2, $rangeMax]; } return $value;