diff --git a/apps/api/src/database/seeds/local-location.content.ts b/apps/api/src/database/seeds/local-location.content.ts index 1a18927..f2260fb 100644 --- a/apps/api/src/database/seeds/local-location.content.ts +++ b/apps/api/src/database/seeds/local-location.content.ts @@ -121,13 +121,17 @@ export const BURNED_ROAD_LOCAL_CONTENT: LocalLocationContent = { enabled: true, }, ], - // Only categories the loot tables on this road actually back: silver and - // experience from every kill, gear from the raiders, pelts from the beasts. - // Named items stay out — the view may not promise a drop the roll does not - // guarantee (spec §8, "Mögliche Belohnungen"). + // Only categories the loot tables on this road actually back: gear from the + // raiders, pelts from the beasts. Named items stay out — the view may not + // promise a drop the roll does not guarantee (spec §8, "Mögliche + // 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: [ - { key: 'silver', label: 'Silber', iconKey: 'silver' }, - { key: 'experience', label: 'Erfahrung', iconKey: 'experience' }, { key: 'equipment', label: 'Ausrüstung', iconKey: 'equipment' }, { key: 'material', label: 'Material', iconKey: 'material' }, ],