From c5486f3e77e3d04ab223ee5da161fae0f434e05f Mon Sep 17 00:00:00 2001 From: hide_d Date: Sat, 9 May 2020 17:00:36 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/sammo/GeneralAI.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hwe/sammo/GeneralAI.php b/hwe/sammo/GeneralAI.php index 7699f0e6..cadaf846 100644 --- a/hwe/sammo/GeneralAI.php +++ b/hwe/sammo/GeneralAI.php @@ -1064,7 +1064,7 @@ class GeneralAI } $crewtype = $targetUserGeneral->getCrewTypeObj(); - $reqMoney = $crewtype->costWithTech($this->nation['tech'], $targetUserGeneral->getLeadership(false)) * 2 * 4 * 1.1; + $reqMoney = $crewtype->costWithTech($this->nation['tech'], $targetUserGeneral->getLeadership(false)) * 100 * 2 * 2 * 1.1; if ($this->env['year'] > $this->env['startyear'] + 3) { $reqMoney = max($reqMoney, $reqHumanMinRes); } @@ -1164,7 +1164,7 @@ class GeneralAI } $crewtype = $targetUserGeneral->getCrewTypeObj(); - $reqMoney = $crewtype->costWithTech($this->nation['tech'], $targetUserGeneral->getLeadership(false)) * 2 * 4 * 1.1; + $reqMoney = $crewtype->costWithTech($this->nation['tech'], $targetUserGeneral->getLeadership(false)) * 100 * 2 * 2 * 1.1; if ($this->env['year'] > $this->env['startyear'] + 3) { $reqMoney = max($reqMoney, $reqHumanMinRes); } @@ -1248,7 +1248,7 @@ class GeneralAI } $crewtype = $targetNPCGeneral->getCrewTypeObj(); - $reqMoney = $crewtype->costWithTech($this->nation['tech'], $targetNPCGeneral->getLeadership(false)) * 2 * 4 * 1.1; + $reqMoney = $crewtype->costWithTech($this->nation['tech'], $targetNPCGeneral->getLeadership(false)) * 100 * 2 * 2 * 1.1; if ($this->env['year'] > $this->env['startyear'] + 5) { $reqMoney = max($reqMoney, $reqNPCMinWarRes); } @@ -1335,7 +1335,7 @@ class GeneralAI } $crewtype = $targetNPCGeneral->getCrewTypeObj(); - $reqMoney = $crewtype->costWithTech($nation['tech'], $targetNPCGeneral->getLeadership(false)) * 2 * 4 * 1.1; + $reqMoney = $crewtype->costWithTech($nation['tech'], $targetNPCGeneral->getLeadership(false)) * 100 * 2 * 2 * 1.1; if ($this->env['year'] > $this->env['startyear'] + 5) { $reqMoney = max($reqMoney, $reqNPCMinWarRes); }