diff --git a/src/components/Pages/SecondModeLevels/EightLevel/EightLevel.js b/src/components/Pages/SecondModeLevels/EightLevel/EightLevel.js index ff0e4af..ad9e5ac 100644 --- a/src/components/Pages/SecondModeLevels/EightLevel/EightLevel.js +++ b/src/components/Pages/SecondModeLevels/EightLevel/EightLevel.js @@ -145,7 +145,7 @@ const EightLevel = () => { setHintIndex(0); if (palavrasDigitadas.length + 1 === palavras.length) { - const earnedStars = calculateStars(timeRemaining, 300, hintsUsed); // Passando parâmetros corretos + const earnedStars = calculateStars(timeRemaining, 240, hintsUsed); // Passando parâmetros corretos handleFinishLevel(earnedStars); // Salvando estrelas setGameStatus('won'); } diff --git a/src/components/Pages/SecondModeLevels/FiveLevel/FiveLevel.js b/src/components/Pages/SecondModeLevels/FiveLevel/FiveLevel.js index 984987a..165286f 100644 --- a/src/components/Pages/SecondModeLevels/FiveLevel/FiveLevel.js +++ b/src/components/Pages/SecondModeLevels/FiveLevel/FiveLevel.js @@ -131,7 +131,7 @@ const FiveLevel = () => { setHintIndex(0); if (palavrasDigitadas.length + 1 === palavras.length) { - const earnedStars = calculateStars(timeRemaining, 300, hintsUsed); // Passando parâmetros corretos + const earnedStars = calculateStars(timeRemaining, 240, hintsUsed); // Passando parâmetros corretos handleFinishLevel(earnedStars); // Salvando estrelas setGameStatus('won'); } diff --git a/src/components/Pages/SecondModeLevels/NineLevel/NineLevel.js b/src/components/Pages/SecondModeLevels/NineLevel/NineLevel.js index ea2e766..e6a8c69 100644 --- a/src/components/Pages/SecondModeLevels/NineLevel/NineLevel.js +++ b/src/components/Pages/SecondModeLevels/NineLevel/NineLevel.js @@ -145,7 +145,7 @@ const NineLevel = () => { setHintIndex(0); if (palavrasDigitadas.length + 1 === palavras.length) { - const earnedStars = calculateStars(timeRemaining, 300, hintsUsed); // Passando parâmetros corretos + const earnedStars = calculateStars(timeRemaining, 180, hintsUsed); // Passando parâmetros corretos handleFinishLevel(earnedStars); // Salvando estrelas setGameStatus('won'); } diff --git a/src/components/Pages/SecondModeLevels/OneLevel/OneLevel.js b/src/components/Pages/SecondModeLevels/OneLevel/OneLevel.js index e236d7b..03dadb0 100644 --- a/src/components/Pages/SecondModeLevels/OneLevel/OneLevel.js +++ b/src/components/Pages/SecondModeLevels/OneLevel/OneLevel.js @@ -52,8 +52,6 @@ const OneLevel = () => { // Definir outras ações, como navegação para próxima fase ou exibir mensagem de vitória }; - //----------- - const selecionarPalavrasAleatorias = () => { const palavrasSelecionadas = []; diff --git a/src/components/Pages/SecondModeLevels/SixLevel/SixLevel.js b/src/components/Pages/SecondModeLevels/SixLevel/SixLevel.js index 8fe7068..43a1fc7 100644 --- a/src/components/Pages/SecondModeLevels/SixLevel/SixLevel.js +++ b/src/components/Pages/SecondModeLevels/SixLevel/SixLevel.js @@ -131,7 +131,7 @@ const SixLevel = () => { setHintIndex(0); if (palavrasDigitadas.length + 1 === palavras.length) { - const earnedStars = calculateStars(timeRemaining, 300, hintsUsed); // Passando parâmetros corretos + const earnedStars = calculateStars(timeRemaining, 180, hintsUsed); // Passando parâmetros corretos handleFinishLevel(earnedStars); // Salvando estrelas setGameStatus('won'); } diff --git a/src/components/Pages/SecondModeLevels/ThreeLevel/ThreeLevel.js b/src/components/Pages/SecondModeLevels/ThreeLevel/ThreeLevel.js index 8e4b968..5a8c211 100644 --- a/src/components/Pages/SecondModeLevels/ThreeLevel/ThreeLevel.js +++ b/src/components/Pages/SecondModeLevels/ThreeLevel/ThreeLevel.js @@ -110,7 +110,7 @@ const ThreeLevel = () => { setHintIndex(0); if (palavrasDigitadas.length + 1 === palavras.length) { - const earnedStars = calculateStars(timeRemaining, 300, hintsUsed); // Passando parâmetros corretos + const earnedStars = calculateStars(timeRemaining, 180, hintsUsed); // Passando parâmetros corretos handleFinishLevel(earnedStars); // Salvando estrelas setGameStatus('won'); } diff --git a/src/components/Pages/SecondModeLevels/TwoLevel/TwoLevel.js b/src/components/Pages/SecondModeLevels/TwoLevel/TwoLevel.js index d6ea012..a838a63 100644 --- a/src/components/Pages/SecondModeLevels/TwoLevel/TwoLevel.js +++ b/src/components/Pages/SecondModeLevels/TwoLevel/TwoLevel.js @@ -110,7 +110,7 @@ const TwoLevel = () => { setHintIndex(0); if (palavrasDigitadas.length + 1 === palavras.length) { - const earnedStars = calculateStars(timeRemaining, 300, hintsUsed); // Passando parâmetros corretos + const earnedStars = calculateStars(timeRemaining, 240, hintsUsed); // Passando parâmetros corretos handleFinishLevel(earnedStars); // Salvando estrelas setGameStatus('won'); } diff --git a/src/components/Utils/ChallengeTitle/ChallengeTitle.css b/src/components/Utils/ChallengeTitle/ChallengeTitle.css index 2e9b189..50e376c 100644 --- a/src/components/Utils/ChallengeTitle/ChallengeTitle.css +++ b/src/components/Utils/ChallengeTitle/ChallengeTitle.css @@ -36,11 +36,11 @@ letter-spacing: 8px; /* Espaçamento entre letras */ color: #ffc000; /* Cor do texto */ text-shadow: - 1px 1px 0 #000, /* Contorno preto fino no topo e esquerda */ - 1px -1px 0 #000, /* Contorno preto fino na parte inferior e direita */ - 1px -1px 0 #000, /* Contorno preto fino na diagonal superior direita */ - -2px 2px 0 #000, /* Contorno preto fino na diagonal inferior esquerda */ - 2px 2px 4px rgba(0, 0, 0, 0.6); /* Sombra adicional para efeito de profundidade */ + 3px -3px 4px #000, /* Contorno preto fino no topo e esquerda */ + 3px -3px 4px #000, /* Contorno preto fino na parte inferior e direita */ + 3px -3px 4px #000, /* Contorno preto fino na diagonal superior direita */ + 3px -3px 4px #000, /* Contorno preto fino na diagonal inferior esquerda */ + 3px -3px 4px rgba(0, 0, 0, 0.6); /* Sombra adicional para efeito de profundidade */ text-transform: uppercase; /* Transforma o texto para maiúsculas */ margin: 0; /* Remove margens */ padding: 5px; /* Espaço interno ao redor do texto */