Skip to content

Commit

Permalink
conflit resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
VesperAkshay committed Jun 17, 2024
2 parents 92e4569 + c24ab93 commit 68e4727
Show file tree
Hide file tree
Showing 216 changed files with 104,451 additions and 745 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json

This file was deleted.

37 changes: 37 additions & 0 deletions Games/Audio_Wordle/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# **Auddle: Audio Wordle**

---

<br>

## **Description 📃**
Auddle is a fun and challenging word-guessing game where players must identify the correct word based on an audio clue. Each round provides a new audio clip, and players have six guesses to find the correct answer. The game combines the classic Wordle mechanics with an audio twist, offering a unique and engaging experience.
-

## **functionalities 🎮**
1. Randomized Audio Clues: Each game round starts with a random audio clip from a pre-defined list.
2. Multiple Attempts: Players have six attempts to guess the correct word.
3. Feedback System: The game provides color-coded feedback to indicate correct letters, correct positions, and incorrect letters.
4. Audio Playback: Players can replay the audio clue as many times as needed.
-
<br>

## **How to play? 🕹️**
1. Start the Game: Click the start button to begin a new game round.
2. Listen to the Audio Clue: An audio clip will play. You can replay the clip by clicking the replay button.
3. Make a Guess: Type in your guess and submit it.
4. Receive Feedback: The game will provide feedback with colored tiles:
- Green: Correct letter in the correct position.
- Yellow: Correct letter in the wrong position.
- Gray: Incorrect letter.
5. Repeat: Use the feedback to make a better guess. You have six attempts to find the correct word.
6. Win or Lose: If you guess the word correctly within six attempts, you win! Otherwise, the game will reveal the correct answer.
-

<br>

## **Screenshots 📸**

![Screenshot](image.png)

<br>
1 change: 1 addition & 0 deletions Games/Audio_Wordle/images/backspace-outline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions Games/Audio_Wordle/images/d.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Games/Audio_Wordle/images/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Games/Audio_Wordle/images/return.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
140 changes: 140 additions & 0 deletions Games/Audio_Wordle/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Auddle - Audio Wordle!</title>
<link rel="stylesheet" href="style.css" type="text/css">
<link rel = "icon" href = "images/d.svg" type = "image/x-icon">
</head>
<body>

<div class="title-box">
au<span id="dd"><img src=images/d.svg id="title-symbol"><img src=images/d.svg id="title-symbol"></span>le<sup class="era-text"></sup>
</div>

<p id="counter"></p>

<div class="container">
<div class="audio-clip">
<div class="text-instructions">
Play the audio clip
</div>
<audio class="clue1" controls controlsList="nodownload" src="">Your browser does not support the <code>audio</code> element.
</audio>
</div>
<div class="word-box">
<div class="text-instructions" id="guess-instructions">Guess the <b>SINGER</b> in 6 attempts!<br></div>
<div class="container-box">
<div class="row-1">
<span id="box-1"></span>
<span id="box-2"></span>
<span id="box-3"></span>
<span id="box-4"></span>
<span id="box-5"></span>
<span id="box-6"></span>
<span id="box-7"></span>
<span id="box-8"></span>
</div>
<div class="row-2">
<span id="box-1"></span>
<span id="box-2"></span>
<span id="box-3"></span>
<span id="box-4"></span>
<span id="box-5"></span>
<span id="box-6"></span>
<span id="box-7"></span>
<span id="box-8"></span>
</div>
<div class="row-3">
<span id="box-1"></span>
<span id="box-2"></span>
<span id="box-3"></span>
<span id="box-4"></span>
<span id="box-5"></span>
<span id="box-6"></span>
<span id="box-7"></span>
<span id="box-8"></span>
</div>
<div class="row-4">
<span id="box-1"></span>
<span id="box-2"></span>
<span id="box-3"></span>
<span id="box-4"></span>
<span id="box-5"></span>
<span id="box-6"></span>
<span id="box-7"></span>
<span id="box-8"></span>
</div>
<div class="row-5">
<span id="box-1"></span>
<span id="box-2"></span>
<span id="box-3"></span>
<span id="box-4"></span>
<span id="box-5"></span>
<span id="box-6"></span>
<span id="box-7"></span>
<span id="box-8"></span>
</div>
<div class="row-6">
<span id="box-1"></span>
<span id="box-2"></span>
<span id="box-3"></span>
<span id="box-4"></span>
<span id="box-5"></span>
<span id="box-6"></span>
<span id="box-7"></span>
<span id="box-8"></span>
</div>
</div>
</div>
<div class="message-box"><div class="message">too short!</div></div>
<div class="finish"><span class="finish_"></span><a target = "_blank" href="" id="link"></a></div>
<div class="keyboard">
<div class="row1">
<div class="q">Q</div>
<div class="w">W</div>
<div class="e">E</div>
<div class="r">R</div>
<div class="t">T</div>
<div class="y">Y</div>
<div class="u">U</div>
<div class="i">I</div>
<div class="o">O</div>
<div class="p">P</div>
</div>
<div class="row2">
<div class="a">A</div>
<div class="s">S</div>
<div class="d">D</div>
<div class="f">F</div>
<div class="g">G</div>
<div class="h">H</div>
<div class="j">J</div>
<div class="k">K</div>
<div class="l">L</div>
</div>
<div class="row3">
<div class="Backspace"><img id="bksp" src="images/backspace-outline.svg" alt="backspace"></div>
<div class="z">Z</div>
<div class="x">X</div>
<div class="c">C</div>
<div class="v">V</div>
<div class="b">B</div>
<div class="n">N</div>
<div class="m">M</div>
<div class="Enter"><img id="enter" src="images/return.svg" alt="enter"></div>
</div>
</div>
<div class="credits">
Made by&#160<a id="github" href="https://sawmill811.github.io/">Khushi Kalra
</a>
<a id="github-logo" href="https://github.com/abckhush"><img src="images/github.svg" style="width:100%" alt="github">
</a>

</div>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>
Loading

0 comments on commit 68e4727

Please sign in to comment.