fix(game): 국가 수 판정에서 합성 재야를 제외한다

Ref nation table에 없는 id=0 행이 정찰 차단과 월간 경매 난수 소비에 관여하지 않도록 모집단을 맞춘다. Ref의 maxnation 건국 표시 제한도 실행 제약을 늘리지 않고 명령표에 이관한다.
This commit is contained in:
2026-08-23 12:31:53 +00:00
parent 2d31145994
commit e9c715e231
9 changed files with 107 additions and 17 deletions
@@ -41,7 +41,9 @@ const buildSnapshot = (): TurnWorldSnapshot => ({
buildGeneral(2, 2, 99_999, 99_999),
],
cities: [],
nations: [1, 2, 3].map((id) => ({
// Core persists a synthetic id=0 row that Ref's nation-power loop never
// sees. The registrar fallback must therefore still consume three rolls.
nations: [0, 1, 2, 3].map((id) => ({
id,
name: `Nation_${id}`,
color: '#000000',
@@ -151,7 +153,7 @@ describe('neutral auction monthly registrar', () => {
loadNeutralAuctionCounts: async () => [],
});
const snapshot = buildSnapshot();
snapshot.nations = snapshot.nations.slice(0, 2);
snapshot.nations = snapshot.nations.slice(1, 3);
snapshot.generals = [buildGeneral(1, 0, 5_000, 7_000), buildGeneral(2, 0, 6_000, 8_000)];
const state: TurnWorldState = {
id: 1,