feat: add 7th guess with 60s unlock and update docs
This commit is contained in:
@@ -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 },
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user