From 56fd26935d6675d2c8397359b583bfcb81ef5c9e Mon Sep 17 00:00:00 2001 From: Hide_D Date: Mon, 16 May 2022 23:47:26 +0900 Subject: [PATCH] =?UTF-8?q?game:=20=EB=8F=84=EA=B8=B0=20=EC=A3=BC=EA=B8=B0?= =?UTF-8?q?=EB=A5=BC=205=EB=85=84=EC=97=90=EC=84=9C=202=EB=85=84=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C,=20=EA=B8=88=EC=95=A1=20=EC=9D=BC=EB=B6=80=20?= =?UTF-8?q?=EC=83=81=ED=96=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/ActionItem/che_보물_도기.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hwe/sammo/ActionItem/che_보물_도기.php b/hwe/sammo/ActionItem/che_보물_도기.php index 34236d63..d85da20d 100644 --- a/hwe/sammo/ActionItem/che_보물_도기.php +++ b/hwe/sammo/ActionItem/che_보물_도기.php @@ -13,7 +13,7 @@ class che_보물_도기 extends \sammo\BaseItem protected $rawName = '도기'; protected $name = '도기(보물)'; - protected $info = '[개인] 판매 시 장수 소지금과 국고에 금, 쌀 중 하나를 추가 (총 +10,000, 5년마다 +10,000)'; + protected $info = '[개인] 판매 시 장수 소지금과 국고에 금, 쌀 중 하나를 추가 (총 +10,000, 2년마다 +5,000)'; protected $cost = 200; protected $consumable = false; @@ -37,7 +37,7 @@ class che_보물_도기 extends \sammo\BaseItem [$year, $startYear] = $gameStor->getValuesAsArray(['year', 'startyear']); $relYear = $year - $startYear; - $score = 10000 * (1 + Util::valueFit(intdiv($relYear, 5), 0)); + $score = 10000 + 5000 * Util::valueFit(intdiv($relYear, 2), 0); [$resName, $resKey] = Util::choiceRandom([ ['금', 'gold'],