test: 자동 선포의 유저국 국력 우선도를 고정한다
Ref 월간 국력 산식의 유저 장수 통솔 기여와 자동 선포 역가중 연결을 대칭 역할 교환 회귀로 검증한다. 선포 단계에 중복 배율을 추가하지 않도록 계약도 명시한다.
This commit is contained in:
@@ -82,6 +82,11 @@ const calculateNationPower = (
|
||||
const killCrew = readNumber(meta.rank_killcrew_person);
|
||||
const deathCrew = readNumber(meta.rank_deathcrew_person);
|
||||
const ratio = (killCrew + 1000) / (deathCrew + 1000);
|
||||
// Ref boosts the leadership contribution of user generals here. Its
|
||||
// automatic declaration AI later applies 1 / sqrt(nation.power + 1),
|
||||
// so this monthly value is also the indirect lower target priority for
|
||||
// nations with users; the declaration step must not add another ruler
|
||||
// type multiplier on top of it.
|
||||
const npcMultiplier = general.npcState < 2 ? 1.2 : 1;
|
||||
const leadership = general.stats.leadership;
|
||||
const leaderCore = leadership >= 40 ? leadership : 0;
|
||||
|
||||
Reference in New Issue
Block a user