수비 순서에 훈사 영향을 더 강하게 주도록 변경

This commit is contained in:
2019-03-06 00:38:35 +09:00
parent e9d1fdb4ee
commit 45d7a29a95
+1 -1
View File
@@ -217,7 +217,7 @@ function extractBattleOrder($general){
getGeneralIntel($general, false, true, true, true);
$totalStat = ($realStat + $fullStat) / 2;
$totalCrew = $general['crew'] / 10000 * $general['train'] * $general['atmos'];
$totalCrew = $general['crew'] / 1000000 * (($general['train'] * $general['atmos']) ** 1.5);
return $totalStat + $totalCrew / 100;
}