From 21b8c6ea8f4557eabccb035285e603dd8a556e28 Mon Sep 17 00:00:00 2001 From: hide_d Date: Tue, 22 Feb 2022 00:28:35 +0900 Subject: [PATCH] =?UTF-8?q?game:=20=EC=9E=91=EC=9C=84=20=EB=B3=B4=EC=83=81?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EC=95=84=EC=9D=B4=ED=85=9C=EC=9D=B4=20?= =?UTF-8?q?=EC=97=86=EB=8A=94=20=EC=82=AC=EB=9E=8C=EC=9D=B4=20=EB=B0=9B?= =?UTF-8?q?=EC=9D=84=20=ED=99=95=EB=A5=A0=20=EB=8C=80=ED=8F=AD=20=EC=A6=9D?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/func_gamerule.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hwe/func_gamerule.php b/hwe/func_gamerule.php index b97d230c..af09524d 100644 --- a/hwe/func_gamerule.php +++ b/hwe/func_gamerule.php @@ -673,17 +673,17 @@ function updateNationState() continue; } - $score = $nationGen->getVar('belong') + 5; + $score = $nationGen->getVar('belong') + 10; if ($nationGen->getVar('officer_level') == 12) { - $score += 100; //NOTE: 꼬우면 군주하세요. + $score += 60; } else if ($nationGen->getVar('officer_level') == 11) { - $score += 50; + $score += 30; } else if ($nationGen->getVar('officer_level') > 4) { - $score += 35; + $score += 15; } - $score *= $trialCnt; + $score *= 2**$trialCnt; $uniqueLotteryWeightList[$nationGen->getID()] = [$nationGen, $score]; }