feat: add hunt page, combat placeholder, and Jagd navigation
Wires up Slice 0.2 end-to-end: HuntPageComponent renders the hunting-unavailable/ready/loading/encounters-found states off HuntingStore and WorldStore, Angreifen hands the HuntEncounter id to a new inert CombatPlaceholderPageComponent via /combat/new, the Jagd nav entry is enabled with router-driven active state (matching Karte's), and the context panel now lists possible encounters for hunting-enabled locations. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -14,6 +14,20 @@ export const routes: Routes = [
|
||||
(module) => module.WorldPageComponent,
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'hunt',
|
||||
loadComponent: () =>
|
||||
import('./features/hunting/hunt-page/hunt-page.component').then(
|
||||
(module) => module.HuntPageComponent,
|
||||
),
|
||||
},
|
||||
{
|
||||
path: 'combat/new',
|
||||
loadComponent: () =>
|
||||
import('./features/combat/combat-placeholder-page.component').then(
|
||||
(module) => module.CombatPlaceholderPageComponent,
|
||||
),
|
||||
},
|
||||
],
|
||||
},
|
||||
{ path: '**', redirectTo: 'world' },
|
||||
|
||||
Reference in New Issue
Block a user