From b2a676cd8b3adf7d4fae5166564d25c8b30c05d8 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sun, 2 Oct 2022 23:25:00 +0900 Subject: [PATCH] =?UTF-8?q?game:=20=EC=98=A5=EB=9E=80=EB=B0=B1=EC=9A=A9?= =?UTF-8?q?=EA=B5=AC=20=ED=96=A5=EC=83=81=20=EC=B5=9C=EB=8C=80=2030%=20->?= =?UTF-8?q?=2050%?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/ActionItem/che_명마_12_옥란백용구.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/ActionItem/che_명마_12_옥란백용구.php b/hwe/sammo/ActionItem/che_명마_12_옥란백용구.php index 4aa866b3..6c4776a1 100644 --- a/hwe/sammo/ActionItem/che_명마_12_옥란백용구.php +++ b/hwe/sammo/ActionItem/che_명마_12_옥란백용구.php @@ -10,7 +10,7 @@ class che_명마_12_옥란백용구 extends \sammo\BaseStatItem{ public function __construct() { parent::__construct(); - $this->info .= "
[전투] 남은 병력이 적을수록 회피 확률 증가. 최대 +30%p"; + $this->info .= "
[전투] 남은 병력이 적을수록 회피 확률 증가. 최대 +50%p"; } public function onCalcStat(General $general, string $statName, $value, $aux = null) @@ -20,7 +20,7 @@ class che_명마_12_옥란백용구 extends \sammo\BaseStatItem{ $leadership = $general->getLeadership(true, true, true, false); $crewL = $general->getVar('crew') / 100; - return $value + \sammo\Util::valueFit((1 - $crewL / $leadership) * 0.3, 0, 0.3); + return $value + \sammo\Util::valueFit((1 - $crewL / $leadership) * 0.5, 0, 0.5); } return $value; }