Skip to content

Commit 0f8a5dd

Browse files
committed
docs: Improve empire.compare.* aggregate docs
1 parent d0ff6ff commit 0f8a5dd

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/game-logic/aggregates.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ export const AGGREGATES: Record<string, AggregateFn> = {
5353
compute: (service, empire) => service.aggregateEconomy(empire),
5454
},
5555
'empire.compare.economy': {
56-
description: 'Calculates the economy level of the empire compared to another empire as a logarithmic difference',
56+
description: 'Calculates the economy level of the empire compared to another empire as a logarithmic difference.\n' +
57+
'Precisely, the formula is `log2(compareResult / myResult)`.\n' +
58+
'So a result of 1 means the other empire has twice the economy score, 2 means four times, etc., -1 means half, -2 means a quarter, etc.',
5759
params: {
5860
compare: 'The ID of the empire to compare to',
5961
},
@@ -64,7 +66,8 @@ export const AGGREGATES: Record<string, AggregateFn> = {
6466
compute: (service, empire) => service.aggregateMilitary(empire),
6567
},
6668
'empire.compare.military': {
67-
description: 'Calculates the military level of the empire compared to another empire as a logarithmic difference',
69+
description: 'Calculates the military level of the empire compared to another empire as a logarithmic difference. ' +
70+
'See `empire.compare.economy` for details on the formula.',
6871
params: {
6972
compare: 'The ID of the empire to compare to',
7073
},
@@ -75,7 +78,8 @@ export const AGGREGATES: Record<string, AggregateFn> = {
7578
compute: (service, empire) => service.aggregateTechnology(empire),
7679
},
7780
'empire.compare.technology': {
78-
description: 'Calculates the technology level of the empire compared to another empire as a logarithmic difference',
81+
description: 'Calculates the technology level of the empire compared to another empire as a logarithmic difference. ' +
82+
'See `empire.compare.economy` for details on the formula.',
7983
params: {
8084
compare: 'The ID of the empire to compare to',
8185
},

0 commit comments

Comments
 (0)