diff --git a/frontend/src/app/app.routes.ts b/frontend/src/app/app.routes.ts
index c536f8f..bba628f 100644
--- a/frontend/src/app/app.routes.ts
+++ b/frontend/src/app/app.routes.ts
@@ -21,4 +21,9 @@ export const routes: Routes = [
loadComponent: () => import('./feature/game/blackjack/blackjack.component'),
canActivate: [authGuard],
},
+ {
+ path: 'game/lootboxes',
+ loadComponent: () => import('./feature/lootboxes/lootbox-selection/lootbox-selection.component'),
+ canActivate: [authGuard],
+ },
];
diff --git a/frontend/src/app/feature/lootboxes/README.md b/frontend/src/app/feature/lootboxes/README.md
new file mode 100644
index 0000000..2aecc6b
--- /dev/null
+++ b/frontend/src/app/feature/lootboxes/README.md
@@ -0,0 +1,40 @@
+# Lootboxes Feature
+
+Diese Funktion ermöglicht es Spielern, Lootboxen zu kaufen und zu öffnen.
+
+## Komponenten
+
+- **LootboxSelection**: Zeigt alle verfügbaren Lootboxen an und ermöglicht Filterung nach Kategorien.
+- (Weitere Komponenten werden implementiert)
+
+## Implementierung
+
+### Lootbox-Kategorien
+- Gewöhnlich (Common): Niedrigere Preise, höhere Gewinnchance
+- Selten (Rare): Mittlere Preise, mittlere Gewinnchance
+- Legendär (Legendary): Hohe Preise, niedrige Gewinnchance
+
+### Routen
+- `/lootboxes`: Hauptseite mit Lootbox-Auswahl
+- `/lootboxes/open/:id`: Öffnen einer bestimmten Lootbox
+- `/lootboxes/fairness`: Informationen zur Fairness-Garantie
+
+## Hinweise zur Implementierung
+
+1. **Bilder**: Stelle sicher, dass die korrekten Bilder unter `/assets/images/lootboxes/` vorhanden sind.
+2. **Styling**: Das Styling ist an Counter-Strike-Lootboxen angelehnt.
+3. **Authentifizierung**: Alle Lootbox-Routen sind durch den Auth-Guard geschützt.
+
+## Lootbox-Objekt-Interface
+
+```typescript
+interface Lootbox {
+ id: string;
+ name: string;
+ category: 'common' | 'rare' | 'legendary';
+ price: number;
+ image: string;
+ chance: number;
+ maxPrize: number;
+}
+```
\ No newline at end of file
diff --git a/frontend/src/app/feature/lootboxes/lootbox-selection/lootbox-selection.component.html b/frontend/src/app/feature/lootboxes/lootbox-selection/lootbox-selection.component.html
new file mode 100644
index 0000000..3b6d80c
--- /dev/null
+++ b/frontend/src/app/feature/lootboxes/lootbox-selection/lootbox-selection.component.html
@@ -0,0 +1,55 @@
+
+
+
Lootboxen
+
+
+
+
+
+
+
+
Alle unsere Lootboxen unterliegen einem verifizierbaren Fairness-System.
+ Die Gewinnchancen sind transparent und werden von unabhängigen Prüfern bestätigt.