fix(content): stop promising rewards the burned road can no longer drop

The location view's "Mögliche Belohnungen" preview listed Silber and
Erfahrung. This slice made both false:

- Experience no longer exists as a concept (spec 1).
- Every monster seeded on this road now rolls silverMin/silverMax = 0
  (design R7), so a kill yields no silver. Silver reaches the player
  through turn-ins instead.

The list's own comment states the rule it was breaking: the view may not
promise a drop the roll does not guarantee (spec 8). Equipment and
material stay -- the loot tables still back both.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Bastian Wagner
2026-08-21 14:30:53 +02:00
parent 40ff950390
commit e5752c7ee9

View File

@@ -121,13 +121,17 @@ export const BURNED_ROAD_LOCAL_CONTENT: LocalLocationContent = {
enabled: true, enabled: true,
}, },
], ],
// Only categories the loot tables on this road actually back: silver and // Only categories the loot tables on this road actually back: gear from the
// experience from every kill, gear from the raiders, pelts from the beasts. // raiders, pelts from the beasts. Named items stay out — the view may not
// Named items stay out — the view may not promise a drop the roll does not // promise a drop the roll does not guarantee (spec §8, "Mögliche
// guarantee (spec §8, "Mögliche Belohnungen"). // Belohnungen").
//
// Silver and experience were both dropped from this preview by slice 0.6.5.
// Experience no longer exists as a concept at all (spec §1), and every
// monster seeded on this road now rolls silverMin/silverMax = 0 (design R7),
// so a kill here yields neither. Silver reaches the player through turn-ins
// instead. Leaving either entry in place would break this list's own rule.
localRewardPreview: [ localRewardPreview: [
{ key: 'silver', label: 'Silber', iconKey: 'silver' },
{ key: 'experience', label: 'Erfahrung', iconKey: 'experience' },
{ key: 'equipment', label: 'Ausrüstung', iconKey: 'equipment' }, { key: 'equipment', label: 'Ausrüstung', iconKey: 'equipment' },
{ key: 'material', label: 'Material', iconKey: 'material' }, { key: 'material', label: 'Material', iconKey: 'material' },
], ],