From 4e97c6f7a2dbb070d6eec01d25890d93627b4cbe Mon Sep 17 00:00:00 2001 From: hide_d Date: Sun, 20 Feb 2022 03:04:45 +0900 Subject: [PATCH] =?UTF-8?q?game:=20=EC=82=AC=EA=B8=B0,=20=ED=9B=88?= =?UTF-8?q?=EB=A0=A8=20=EC=9C=A0=EB=8B=88=ED=81=AC=20=EC=88=98=EC=B9=98=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/ActionItem/che_사기_초선화.php | 4 ++-- hwe/sammo/ActionItem/che_사기_춘화첩.php | 4 ++-- hwe/sammo/ActionItem/che_훈련_단결도.php | 4 ++-- hwe/sammo/ActionItem/che_훈련_철벽서.php | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/hwe/sammo/ActionItem/che_사기_초선화.php b/hwe/sammo/ActionItem/che_사기_초선화.php index 35b92058..f18736d4 100644 --- a/hwe/sammo/ActionItem/che_사기_초선화.php +++ b/hwe/sammo/ActionItem/che_사기_초선화.php @@ -7,13 +7,13 @@ class che_사기_초선화 extends \sammo\BaseItem{ protected $rawName = '초선화'; protected $name = '초선화(사기)'; - protected $info = '[전투] 사기 보정 +14'; + protected $info = '[전투] 사기 보정 +15'; protected $cost = 200; protected $consumable = false; public function onCalcStat(General $general, string $statName, $value, $aux=null){ if($statName === 'bonusAtmos'){ - return $value + 14; + return $value + 15; } return $value; } diff --git a/hwe/sammo/ActionItem/che_사기_춘화첩.php b/hwe/sammo/ActionItem/che_사기_춘화첩.php index f25580de..e01421a5 100644 --- a/hwe/sammo/ActionItem/che_사기_춘화첩.php +++ b/hwe/sammo/ActionItem/che_사기_춘화첩.php @@ -7,13 +7,13 @@ class che_사기_춘화첩 extends \sammo\BaseItem{ protected $rawName = '춘화첩'; protected $name = '춘화첩(사기)'; - protected $info = '[전투] 사기 보정 +14'; + protected $info = '[전투] 사기 보정 +15'; protected $cost = 200; protected $consumable = false; public function onCalcStat(General $general, string $statName, $value, $aux=null){ if($statName === 'bonusAtmos'){ - return $value + 14; + return $value + 15; } return $value; } diff --git a/hwe/sammo/ActionItem/che_훈련_단결도.php b/hwe/sammo/ActionItem/che_훈련_단결도.php index 3c3a74f2..f422e3c3 100644 --- a/hwe/sammo/ActionItem/che_훈련_단결도.php +++ b/hwe/sammo/ActionItem/che_훈련_단결도.php @@ -7,13 +7,13 @@ class che_훈련_단결도 extends \sammo\BaseItem{ protected $rawName = '단결도'; protected $name = '단결도(훈련)'; - protected $info = '[전투] 훈련 보정 +14'; + protected $info = '[전투] 훈련 보정 +15'; protected $cost = 200; protected $consumable = false; public function onCalcStat(General $general, string $statName, $value, $aux=null){ if($statName === 'bonusTrain'){ - return $value + 14; + return $value + 15; } return $value; } diff --git a/hwe/sammo/ActionItem/che_훈련_철벽서.php b/hwe/sammo/ActionItem/che_훈련_철벽서.php index 021cb8ed..aa93e690 100644 --- a/hwe/sammo/ActionItem/che_훈련_철벽서.php +++ b/hwe/sammo/ActionItem/che_훈련_철벽서.php @@ -7,13 +7,13 @@ class che_훈련_철벽서 extends \sammo\BaseItem{ protected $rawName = '철벽서'; protected $name = '철벽서(훈련)'; - protected $info = '[전투] 훈련 보정 +14'; + protected $info = '[전투] 훈련 보정 +15'; protected $cost = 200; protected $consumable = false; public function onCalcStat(General $general, string $statName, $value, $aux=null){ if($statName === 'bonusTrain'){ - return $value + 14; + return $value + 15; } return $value; }