feat(web): add Inventar öffnen button to the victory screen

This commit is contained in:
Bastian Wagner
2026-08-20 18:04:13 +02:00
parent 724443de1e
commit b1968da754
4 changed files with 32 additions and 3 deletions

View File

@@ -161,6 +161,10 @@ export class CombatPageComponent implements OnInit {
void this.router.navigate(['/hunt']);
}
protected goToInventory(): void {
void this.router.navigate(['/inventory']);
}
protected monsterSprite(monsterKey: string, artworkPath: string): string {
return monsterCutoutPath(monsterKey) ?? runtimeMonsterArtworkPath(artworkPath) ?? artworkPath;
}