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;
}