stage: the explore row reads "new place" again (the operator, 2026-09-23)
This commit is contained in:
parent
bc117ad470
commit
b484a077d4
2 changed files with 2 additions and 5 deletions
|
|
@ -79,11 +79,8 @@ export const pokemonRed: GameConfig = {
|
|||
},
|
||||
|
||||
// Ticker rows are noun phrases, so a row reads as a log line rather than as narration.
|
||||
// `explore` carries four adapter rules since pokered-unique8-v7 -- new ground, an exit, a
|
||||
// conversation indoors, an item picked up (docs/rewards-learning.md) -- so its copy names
|
||||
// what all four are rather than the first of them.
|
||||
rewardCopy: {
|
||||
explore: { label: 'new find', tier: 'quiet', dedupeMs: 20_000, collapsedNoun: 'new finds' },
|
||||
explore: { label: 'new place', tier: 'quiet', dedupeMs: 20_000, collapsedNoun: 'new places' },
|
||||
area: { label: 'new area', tier: 'notable', dedupeMs: 20_000, collapsedNoun: 'new areas' },
|
||||
wildwin: { label: 'wild win', tier: 'quiet', dedupeMs: 20_000, collapsedNoun: 'wild wins' },
|
||||
trainer: { label: 'trainer beaten', tier: 'notable', dedupeMs: 0 },
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ test('exploration ticks collapse into one counted row inside the dedupe window',
|
|||
assert.equal(queue.items().length, 1, 'three ticks, one row');
|
||||
const row = queue.items()[0];
|
||||
assert.equal(row?.count, 3);
|
||||
assert.equal(row?.label, '3 new finds');
|
||||
assert.equal(row?.label, '3 new places');
|
||||
assert.ok(Math.abs((row?.amount ?? 0) - 0.14) < 1e-9, 'values sum');
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue