game: 작위 보상에서 아이템이 없는 사람이 받을 확률 대폭 증가
This commit is contained in:
@@ -673,17 +673,17 @@ function updateNationState()
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$score = $nationGen->getVar('belong') + 5;
|
$score = $nationGen->getVar('belong') + 10;
|
||||||
|
|
||||||
if ($nationGen->getVar('officer_level') == 12) {
|
if ($nationGen->getVar('officer_level') == 12) {
|
||||||
$score += 100; //NOTE: 꼬우면 군주하세요.
|
$score += 60;
|
||||||
} else if ($nationGen->getVar('officer_level') == 11) {
|
} else if ($nationGen->getVar('officer_level') == 11) {
|
||||||
$score += 50;
|
$score += 30;
|
||||||
} else if ($nationGen->getVar('officer_level') > 4) {
|
} else if ($nationGen->getVar('officer_level') > 4) {
|
||||||
$score += 35;
|
$score += 15;
|
||||||
}
|
}
|
||||||
|
|
||||||
$score *= $trialCnt;
|
$score *= 2**$trialCnt;
|
||||||
|
|
||||||
$uniqueLotteryWeightList[$nationGen->getID()] = [$nationGen, $score];
|
$uniqueLotteryWeightList[$nationGen->getID()] = [$nationGen, $score];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user