feat: add 7th guess with 60s unlock and update docs

This commit is contained in:
Hördle Bot
2025-11-21 19:25:38 +01:00
parent 7ce45be90d
commit 95a3b09f52
4 changed files with 20 additions and 9 deletions

View File

@@ -13,6 +13,7 @@ const BADGES = {
4: '⭐', // Star
5: '✨', // Sparkles
6: '💫', // Dizzy
7: '🎵', // Musical note
failed: '❌', // Cross mark
};
@@ -24,6 +25,7 @@ export default function Statistics({ statistics }: StatisticsProps) {
statistics.solvedIn4 +
statistics.solvedIn5 +
statistics.solvedIn6 +
statistics.solvedIn7 +
statistics.failed;
const stats = [
@@ -33,6 +35,7 @@ export default function Statistics({ statistics }: StatisticsProps) {
{ attempts: 4, count: statistics.solvedIn4, badge: BADGES[4] },
{ attempts: 5, count: statistics.solvedIn5, badge: BADGES[5] },
{ attempts: 6, count: statistics.solvedIn6, badge: BADGES[6] },
{ attempts: 7, count: statistics.solvedIn7, badge: BADGES[7] },
{ attempts: 'Failed', count: statistics.failed, badge: BADGES.failed },
];