From 0ec0b2e3061498182d22a5f71351b89ba9e2486c Mon Sep 17 00:00:00 2001 From: Priyanshu Date: Sat, 22 Aug 2026 13:06:42 +0530 Subject: [PATCH] feat: add Wall Breaker game (fixes #4635) --- Games/Wall_Breaker_Game/README.md | 34 + Games/Wall_Breaker_Game/index.html | 31 + Games/Wall_Breaker_Game/script.js | 232 +++++ Games/Wall_Breaker_Game/styles.css | 93 ++ README.md | 2 +- assets/images/Wall_Breaker_Game.png | Bin 0 -> 26996 bytes assets/js/gamesData.json | 1382 +++++++++++++-------------- 7 files changed, 1069 insertions(+), 705 deletions(-) create mode 100644 Games/Wall_Breaker_Game/README.md create mode 100644 Games/Wall_Breaker_Game/index.html create mode 100644 Games/Wall_Breaker_Game/script.js create mode 100644 Games/Wall_Breaker_Game/styles.css create mode 100644 assets/images/Wall_Breaker_Game.png diff --git a/Games/Wall_Breaker_Game/README.md b/Games/Wall_Breaker_Game/README.md new file mode 100644 index 000000000..bf2f33960 --- /dev/null +++ b/Games/Wall_Breaker_Game/README.md @@ -0,0 +1,34 @@ +# **Wall Breaker** + +--- + +
+ +## **Description 📃** +- A classic keyboard-controlled brick-breaking game built with HTML, CSS, and vanilla JavaScript (Canvas API). +- Fixes issue #4635. + +## **Functionalities 🎮** +- Paddle controlled entirely by the keyboard (no mouse needed). +- 5 rows x 8 columns of bricks with distinct row colors. +- Score and lives tracking, shown live in the HUD. +- Ball speed/angle changes depending on where it hits the paddle. +- Game Over and You Win overlays, both with a one-click Restart button. + +## **How to play? đŸ•šī¸** +- Press **Left Arrow** / **Right Arrow** to move the paddle and keep the ball in play. +- Press any arrow key or **Space** on the start screen to begin. +- Break every brick to win. You have 3 lives — miss the ball 3 times and it's game over. + +
+ +## **Scores:** +- +10 points for every brick broken. + +## **Screenshots 📸** + +
+ + + +
diff --git a/Games/Wall_Breaker_Game/index.html b/Games/Wall_Breaker_Game/index.html new file mode 100644 index 000000000..9be35f9a0 --- /dev/null +++ b/Games/Wall_Breaker_Game/index.html @@ -0,0 +1,31 @@ + + + + + + Wall Breaker Game + + + +
+

Wall Breaker

+
+ Score: 0 + Lives: 3 +
+ +
+ + +
+

Press Left / Right Arrow Keys or Space to Start

+ +
+
+ +

Use ← / → arrow keys to move the paddle and break every brick.

+
+ + + + diff --git a/Games/Wall_Breaker_Game/script.js b/Games/Wall_Breaker_Game/script.js new file mode 100644 index 000000000..77008d2ba --- /dev/null +++ b/Games/Wall_Breaker_Game/script.js @@ -0,0 +1,232 @@ +const canvas = document.getElementById("gameCanvas"); +const ctx = canvas.getContext("2d"); + +const scoreElem = document.getElementById("score"); +const livesElem = document.getElementById("lives"); +const overlay = document.getElementById("overlay"); +const overlayText = document.getElementById("overlay-text"); +const actionBtn = document.getElementById("action-btn"); + +const WIDTH = canvas.width; +const HEIGHT = canvas.height; + +// Paddle +const paddle = { + width: 90, + height: 12, + x: (WIDTH - 90) / 2, + y: HEIGHT - 30, + speed: 7, +}; + +let leftPressed = false; +let rightPressed = false; + +// Ball +const BALL_RADIUS = 8; +let ball = { + x: WIDTH / 2, + y: paddle.y - BALL_RADIUS, + dx: 3, + dy: -3, +}; + +// Bricks +const BRICK_ROWS = 5; +const BRICK_COLS = 8; +const BRICK_WIDTH = 60; +const BRICK_HEIGHT = 18; +const BRICK_PADDING = 8; +const BRICK_OFFSET_TOP = 40; +const BRICK_OFFSET_LEFT = + (WIDTH - (BRICK_COLS * (BRICK_WIDTH + BRICK_PADDING) - BRICK_PADDING)) / 2; + +const BRICK_COLORS = ["#e63946", "#f4a261", "#e9c46a", "#2a9d8f", "#457b9d"]; + +let bricks = []; +let score = 0; +let lives = 3; +let running = false; +let animationId = null; + +function createBricks() { + bricks = []; + for (let r = 0; r < BRICK_ROWS; r++) { + bricks[r] = []; + for (let c = 0; c < BRICK_COLS; c++) { + const x = BRICK_OFFSET_LEFT + c * (BRICK_WIDTH + BRICK_PADDING); + const y = BRICK_OFFSET_TOP + r * (BRICK_HEIGHT + BRICK_PADDING); + bricks[r][c] = { x, y, status: 1 }; + } + } +} + +function resetBallAndPaddle() { + paddle.x = (WIDTH - paddle.width) / 2; + ball.x = WIDTH / 2; + ball.y = paddle.y - BALL_RADIUS; + ball.dx = 3 * (Math.random() < 0.5 ? -1 : 1); + ball.dy = -3; +} + +function drawPaddle() { + ctx.fillStyle = "#4f5bd5"; + ctx.fillRect(paddle.x, paddle.y, paddle.width, paddle.height); +} + +function drawBall() { + ctx.beginPath(); + ctx.arc(ball.x, ball.y, BALL_RADIUS, 0, Math.PI * 2); + ctx.fillStyle = "#f1faee"; + ctx.fill(); + ctx.closePath(); +} + +function drawBricks() { + for (let r = 0; r < BRICK_ROWS; r++) { + for (let c = 0; c < BRICK_COLS; c++) { + const brick = bricks[r][c]; + if (brick.status !== 1) continue; + ctx.fillStyle = BRICK_COLORS[r % BRICK_COLORS.length]; + ctx.fillRect(brick.x, brick.y, BRICK_WIDTH, BRICK_HEIGHT); + } + } +} + +function collisionDetection() { + for (let r = 0; r < BRICK_ROWS; r++) { + for (let c = 0; c < BRICK_COLS; c++) { + const brick = bricks[r][c]; + if (brick.status !== 1) continue; + + if ( + ball.x > brick.x && + ball.x < brick.x + BRICK_WIDTH && + ball.y > brick.y && + ball.y < brick.y + BRICK_HEIGHT + ) { + ball.dy = -ball.dy; + brick.status = 0; + score += 10; + scoreElem.textContent = score; + + if (checkWin()) { + endGame(true); + } + } + } + } +} + +function checkWin() { + for (let r = 0; r < BRICK_ROWS; r++) { + for (let c = 0; c < BRICK_COLS; c++) { + if (bricks[r][c].status === 1) return false; + } + } + return true; +} + +function movePaddle() { + if (leftPressed) paddle.x -= paddle.speed; + if (rightPressed) paddle.x += paddle.speed; + + if (paddle.x < 0) paddle.x = 0; + if (paddle.x + paddle.width > WIDTH) paddle.x = WIDTH - paddle.width; +} + +function update() { + ctx.clearRect(0, 0, WIDTH, HEIGHT); + + drawBricks(); + drawBall(); + drawPaddle(); + collisionDetection(); + movePaddle(); + + // Wall collisions + if (ball.x + ball.dx > WIDTH - BALL_RADIUS || ball.x + ball.dx < BALL_RADIUS) { + ball.dx = -ball.dx; + } + if (ball.y + ball.dy < BALL_RADIUS) { + ball.dy = -ball.dy; + } else if (ball.y + ball.dy > paddle.y - BALL_RADIUS) { + // Paddle collision + if (ball.x > paddle.x && ball.x < paddle.x + paddle.width) { + const hitPos = (ball.x - paddle.x) / paddle.width - 0.5; // -0.5 to 0.5 + ball.dx = hitPos * 7; + ball.dy = -Math.abs(ball.dy); + } else if (ball.y + ball.dy > HEIGHT - BALL_RADIUS) { + // Missed the paddle + loseLife(); + return; + } + } + + ball.x += ball.dx; + ball.y += ball.dy; + + if (running) { + animationId = requestAnimationFrame(update); + } +} + +function loseLife() { + lives -= 1; + livesElem.textContent = lives; + + if (lives <= 0) { + endGame(false); + return; + } + + resetBallAndPaddle(); + animationId = requestAnimationFrame(update); +} + +function endGame(won) { + running = false; + cancelAnimationFrame(animationId); + overlayText.textContent = won + ? `You Win! Final Score: ${score}` + : `Game Over — Score: ${score}`; + actionBtn.textContent = "Restart"; + overlay.classList.remove("hide"); +} + +function startGame() { + score = 0; + lives = 3; + scoreElem.textContent = score; + livesElem.textContent = lives; + + createBricks(); + resetBallAndPaddle(); + + overlay.classList.add("hide"); + running = true; + cancelAnimationFrame(animationId); + animationId = requestAnimationFrame(update); +} + +actionBtn.addEventListener("click", startGame); + +document.addEventListener("keydown", (e) => { + if (e.key === "ArrowLeft") leftPressed = true; + if (e.key === "ArrowRight") rightPressed = true; + + if (!running && (e.key === "ArrowLeft" || e.key === "ArrowRight" || e.key === " ")) { + startGame(); + } +}); + +document.addEventListener("keyup", (e) => { + if (e.key === "ArrowLeft") leftPressed = false; + if (e.key === "ArrowRight") rightPressed = false; +}); + +// Initial static draw before the game starts +createBricks(); +drawBricks(); +drawPaddle(); +drawBall(); diff --git a/Games/Wall_Breaker_Game/styles.css b/Games/Wall_Breaker_Game/styles.css new file mode 100644 index 000000000..6cdd2b0e6 --- /dev/null +++ b/Games/Wall_Breaker_Game/styles.css @@ -0,0 +1,93 @@ +* { + box-sizing: border-box; + user-select: none; +} + +body { + margin: 0; + min-height: 100vh; + display: flex; + justify-content: center; + align-items: center; + background: #10111a; + font-family: 'Segoe UI', Tahoma, Verdana, sans-serif; + color: #f4f4f4; +} + +.game-container { + text-align: center; + padding: 20px; +} + +h1 { + margin: 0 0 10px; + letter-spacing: 2px; +} + +.hud { + display: flex; + justify-content: space-between; + width: 600px; + max-width: 90vw; + margin: 0 auto 10px; + font-size: 1.1rem; +} + +.canvas-wrapper { + position: relative; + display: inline-block; +} + +canvas { + background: #05060a; + border: 3px solid #4f5bd5; + border-radius: 6px; + display: block; + max-width: 90vw; +} + +.overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 14px; + background: rgba(5, 6, 10, 0.85); + border-radius: 6px; + padding: 20px; + text-align: center; +} + +.overlay.hide { + display: none; +} + +#overlay-text { + font-size: 1.2rem; + margin: 0; +} + +#action-btn { + padding: 10px 26px; + font-size: 1rem; + border: none; + border-radius: 5px; + background: #4f5bd5; + color: #fff; + cursor: pointer; +} + +#action-btn:hover { + background: #3b45ad; +} + +.instructions { + margin-top: 12px; + font-size: 0.9rem; + color: #aaa; +} diff --git a/README.md b/README.md index 7c75d9bc0..5cbeec964 100644 --- a/README.md +++ b/README.md @@ -461,7 +461,7 @@ Terms and conditions for use, reproduction and distribution are under the [Apach | [Sky_Lift_Dash](https://github.com/kunjgit/GameZone/tree/main/Games/Sky_Lift_Dash) | | [Block_Vault](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Vault) | | [Random_Choice_Picker](https://github.com/kunjgit/GameZone/tree/main/Games/Random_Choice_Picker) | -| [Drummer_Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drummer_Kit) | +| [Drummer_Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Wall_Breaker_Game) |
diff --git a/assets/images/Wall_Breaker_Game.png b/assets/images/Wall_Breaker_Game.png new file mode 100644 index 0000000000000000000000000000000000000000..9109a1bec7529f15125839bcb8a5897e2535c2ca GIT binary patch literal 26996 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 literal 0 HcmV?d00001 diff --git a/assets/js/gamesData.json b/assets/js/gamesData.json index 07dfe9fdd..d87bed512 100644 --- a/assets/js/gamesData.json +++ b/assets/js/gamesData.json @@ -1,5 +1,4 @@ { - "1": { "gameTitle": "Master Typing", "gameUrl": "https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing", @@ -265,67 +264,56 @@ "gameUrl": "Bubble_Blast_Game", "thumbnailUrl": "Bubble_Blast_Game.webp" }, - "54": { "gameTitle": "Emoji Charades", "gameUrl": "Emoji_Charades", "thumbnailUrl": "Emoji_Charades.jpg" }, - "55": { "gameTitle": "Drum Kit Game", "gameUrl": "Drum_Kit_Game", "thumbnailUrl": "Drum_And_Kit.webp" }, - "56": { "gameTitle": "Rock Paper Scissors", "gameUrl": "Rock_Paper_Scissors", "thumbnailUrl": "Rock_Paper_Scissors.png" }, - "57": { "gameTitle": "Frogger", "gameUrl": "Frogger", "thumbnailUrl": "Frogger.webp" }, - "58": { "gameTitle": "Not more than 5", "gameUrl": "Not_morethan5", "thumbnailUrl": "!morethan5.webp" }, - "59": { "gameTitle": "Unruly Tower", "gameUrl": "Unruly_Tower", "thumbnailUrl": "Unruly_Tower.webp" }, - "60": { "gameTitle": "Maze Game", "gameUrl": "MazeGame", "thumbnailUrl": "MazeGame.webp" }, - "61": { "gameTitle": "Connect4", "gameUrl": "Connect4", "thumbnailUrl": "connect4.webp" }, - "62": { "gameTitle": "Spelling Bee", "gameUrl": "Spelling_Bee", "thumbnailUrl": "spelling_bee.webp" }, - "63": { "gameTitle": "2048", "gameUrl": "2048", "thumbnailUrl": "2048.webp" }, - "64": { "gameTitle": "Spin the wheel", "gameUrl": "Spin_the_wheel", @@ -1587,11 +1575,10 @@ "thumbnailUrl": "lady_tiger_hunter.png" }, "316": { - "gameTitle":"Fidget_Spinner_Game", - "gameUrl":"Fidget_Spinner_Game", - "thumbnailUrl":"Fidget.png" + "gameTitle": "Fidget_Spinner_Game", + "gameUrl": "Fidget_Spinner_Game", + "thumbnailUrl": "Fidget.png" }, - "317": { "gameTitle": "Flashlight Pointer Game", "gameUrl": "Flashlight_Pointer_Game", @@ -1673,9 +1660,9 @@ "thumbnailUrl": "Digit_Dilemma.png" }, "333": { - "gameTitle":"Puzzle-Game", - "gameUrl":"puzzle-game", - "thumbnailUrl":"puzzle-game.png" + "gameTitle": "Puzzle-Game", + "gameUrl": "puzzle-game", + "thumbnailUrl": "puzzle-game.png" }, "334": { "gameTitle": "Tennis", @@ -1977,13 +1964,11 @@ "gameUrl": "Chrome_Dino_Game", "thumbnailUrl": "Chrome_Dino_Game.png" }, - "394": { "gameTitle": "path finder", "gameUrl": "path_finder", "thumbnailUrl": "Path_finder.png" }, - "395": { "gameTitle": "Chess.com", "gameUrl": "Chess.com", @@ -1994,1265 +1979,1254 @@ "gameUrl": "Brick_and_Ball", "thumbnailUrl": "Brick_and_Ball.png" }, - "397": { "gameTitle": "Dot Connect", "gameUrl": "Dot_Connect", "thumbnailUrl": "Dot_Connect.png" }, -"398": { + "398": { "gameTitle": "path finder puzzle", "gameUrl": "path_finder", "thumbnailUrl": "pathfinder.png" }, - "399":{ + "399": { "gameTitle": "NameFate", "gameUrl": "namefate", "thumbnailUrl": "namefate.png" }, - -"400":{ + "400": { "gameTitle": "Menja block breaker", "gameUrl": "Menja_block_breaker", "thumbnailUrl": "menja_Block_breaker.png" }, - "401":{ + "401": { "gameTitle": "Pop My Balloon", "gameUrl": "Pop_My_Balloon", "thumbnailUrl": "Pop_My_Balloon.png" }, - "402":{ + "402": { "gameTitle": "Tower Stack", "gameUrl": "Tower_Stack", "thumbnailUrl": "Tower_Stack.png" }, - "403":{ + "403": { "gameTitle": "Virtual Pet Game", "gameUrl": "Virtual_Pet_Game", "thumbnailUrl": "Virtual_Pet_Game.png" }, - "404":{ + "404": { "gameTitle": "Knife_hit", "gameUrl": "Knife_hit", "thumbnailUrl": "Knife_hit.png" }, - "405":{ + "405": { "gameTitle": "Tiny Fishing", - "gameUrl": "Tiny_Fishing", - "thumbnailUrl": "Tiny-fishing.png" + "gameUrl": "Tiny_Fishing", + "thumbnailUrl": "Tiny-fishing.png" }, - "406":{ + "406": { "gameTitle": "Shrek Vs Wild", "gameUrl": "Shrek_Vs_Wild", "thumbnailUrl": "Shrek_Vs_Wild.png" }, - "407":{ + "407": { "gameTitle": "Hover_Board_Effect", "gameUrl": "Hover_Board_Effect", "thumbnailUrl": "Hover_Board_Effect.png" }, - "408":{ + "408": { "gameTitle": "Candy Crush Saga", "gameUrl": "Candy_Crush_Saga", "thumbnailUrl": "Candy_Crush_Saga.png" }, - - - - - "413":{ + "413": { "gameTitle": "16_Puzzle", "gameUrl": "16_Puzzle", "thumbnailUrl": "16_Puzzle.png" }, - "414":{ - "gameTitle" : "Colour_Generator_Game", + "414": { + "gameTitle": "Colour_Generator_Game", "gameUrl": "Colour_Generator_Game", "thumbnailUrl": "Colour_Generator_Game.png" }, -"415":{ - "gameTitle" : "8 Puzzle Game", + "415": { + "gameTitle": "8 Puzzle Game", "gameUrl": "8_Puzzle", "thumbnailUrl": "8_Puzzle.png" }, - "416":{ - "gameTitle" : "2048 win", + "416": { + "gameTitle": "2048 win", "gameUrl": "2048_win", "thumbnailUrl": "2048_win.png" }, - "417":{ - "gameTitle" : "Alien Invasion", + "417": { + "gameTitle": "Alien Invasion", "gameUrl": "Alien_Invasion", "thumbnailUrl": "Alien_Invasion.png" }, - "418":{ - "gameTitle" : "Align 4 balls", + "418": { + "gameTitle": "Align 4 balls", "gameUrl": "Align_4_Game", "thumbnailUrl": "Align_4_Game.png" }, - "419":{ - "gameTitle" : "Alphabet and Vowels", + "419": { + "gameTitle": "Alphabet and Vowels", "gameUrl": "Alphabet_and_Vowels", "thumbnailUrl": "Alphabet-and-Vowels.jpeg" }, - "420":{ - "gameTitle" : "Ant Smasher", + "420": { + "gameTitle": "Ant Smasher", "gameUrl": "Ant_Smasher", "thumbnailUrl": "Ant_Smasher_Demo.png" }, - "421":{ - "gameTitle" : "Aqua Sort", + "421": { + "gameTitle": "Aqua Sort", "gameUrl": "AquaSort_Game", "thumbnailUrl": "AquaSort.png" }, - "422":{ - "gameTitle" : "Arkanoid Game", + "422": { + "gameTitle": "Arkanoid Game", "gameUrl": "Arkanoid_Game", "thumbnailUrl": "Arkanoid_Game (1).png" }, - "423":{ - "gameTitle" : "Astronaunt Runner", + "423": { + "gameTitle": "Astronaunt Runner", "gameUrl": "Astronaunt_runner", "thumbnailUrl": "Astronaunt_runner.png" }, - "424":{ - "gameTitle" : "Atlas Game", + "424": { + "gameTitle": "Atlas Game", "gameUrl": "Atlas_Game", "thumbnailUrl": "Atlas_Game.png" - }, - "425":{ - "gameTitle" : "Audio Wordle", + }, + "425": { + "gameTitle": "Audio Wordle", "gameUrl": "Audio_Wordle", "thumbnailUrl": "Audio_Wordle.png" }, - "426":{ - "gameTitle" : "Automated Rock Paper Scissors", + "426": { + "gameTitle": "Automated Rock Paper Scissors", "gameUrl": "automated_rock_paper_scissor", "thumbnailUrl": "automated_rock_paper_scissors.png" }, - "427":{ - "gameTitle" : "Ball In Maze", + "427": { + "gameTitle": "Ball In Maze", "gameUrl": "Ball_in_Maze", "thumbnailUrl": "Ball_in_Maze.png" }, - "428":{ - "gameTitle" : "Ball Shooting Game", + "428": { + "gameTitle": "Ball Shooting Game", "gameUrl": "Ball_Shooting_Game", "thumbnailUrl": "Ball_Shooting_Game.png" }, - "429":{ - "gameTitle" : "Balloon Buster", + "429": { + "gameTitle": "Balloon Buster", "gameUrl": "Balloon_Buster", "thumbnailUrl": "Balloon_Buster.jpeg" }, - "430":{ - "gameTitle" : "Bash Mole", + "430": { + "gameTitle": "Bash Mole", "gameUrl": "Bash_mole", "thumbnailUrl": "Bash_mole.png" }, - "431":{ - "gameTitle" : "Bear Hunter Ninja", + "431": { + "gameTitle": "Bear Hunter Ninja", "gameUrl": "Bear_Hunter_Ninja", "thumbnailUrl": "Bear_Hunter_Ninja.png" }, - "432":{ - "gameTitle" : "Beat A Mole", + "432": { + "gameTitle": "Beat A Mole", "gameUrl": "Beat_a_mole", "thumbnailUrl": "Whack_a_Mole_Mario_Version.png" }, - "433":{ - "gameTitle" : "Black Jack 2", + "433": { + "gameTitle": "Black Jack 2", "gameUrl": "Black_Jackk", "thumbnailUrl": "Black_jackk.png" }, - "434":{ - "gameTitle" : "Block Game", + "434": { + "gameTitle": "Block Game", "gameUrl": "Block Game", "thumbnailUrl": "Block Game.jpg" }, - "435":{ - "gameTitle" : "Block Building", + "435": { + "gameTitle": "Block Building", "gameUrl": "Block_Building", "thumbnailUrl": "Block_Building.png" }, - "436":{ - "gameTitle" : "Bunny is Lost", + "436": { + "gameTitle": "Bunny is Lost", "gameUrl": "Bunny_is_Lost", "thumbnailUrl": "Bunny_is_Lost.png" }, - "437":{ - "gameTitle" : "Block Ninja", + "437": { + "gameTitle": "Block Ninja", "gameUrl": "Block_Ninja", "thumbnailUrl": "Block_Ninja.png" }, - "438":{ - "gameTitle" : "Bomb Throw", + "438": { + "gameTitle": "Bomb Throw", "gameUrl": "Bomb Throw Game", "thumbnailUrl": "Bomb Throw Game.png" }, - "439":{ - "gameTitle" : "Bottle Flip", + "439": { + "gameTitle": "Bottle Flip", "gameUrl": "Bottle_Flip", "thumbnailUrl": "BottleFlip_ss.png" }, - "440":{ - "gameTitle" : "Bouncing Ball", + "440": { + "gameTitle": "Bouncing Ball", "gameUrl": "Bouncing_Ball_Game", "thumbnailUrl": "Bouncing_Ball_Game.png" }, - "441":{ - "gameTitle" : "Yahtzee", + "441": { + "gameTitle": "Yahtzee", "gameUrl": "Yahtzee", - "thumbnailUrl":"Yahtzee.png" + "thumbnailUrl": "Yahtzee.png" }, - "442":{ - "gameTitle" : "Brain card", + "442": { + "gameTitle": "Brain card", "gameUrl": "Brain_card_game", "thumbnailUrl": "braincard.png" }, - "443":{ - "gameTitle" : "Bubble shooter", + "443": { + "gameTitle": "Bubble shooter", "gameUrl": "Bubble_Shooter", "thumbnailUrl": "Bubble Shooter.png" }, - "444":{ - "gameTitle" : "Building Block Game", + "444": { + "gameTitle": "Building Block Game", "gameUrl": "Building Block Game", "thumbnailUrl": "Building Block Game.png" }, - "445":{ - "gameTitle" : "Carrom", + "445": { + "gameTitle": "Carrom", "gameUrl": "Carrom", "thumbnailUrl": "carrom pic.jpg" }, - "446":{ - "gameTitle" : "Cartoon Character Guessing", + "446": { + "gameTitle": "Cartoon Character Guessing", "gameUrl": "Cartoon_Character_Guessing_Game", "thumbnailUrl": "Cartoon_Character_Guessing_Game.png" }, - "447":{ - "gameTitle" : "Catch Him", + "447": { + "gameTitle": "Catch Him", "gameUrl": "Catch Him", "thumbnailUrl": "Catch_him.png" }, - "448":{ - "gameTitle" : "Catch The Falling Stars", + "448": { + "gameTitle": "Catch The Falling Stars", "gameUrl": "Catch the falling Stars", "thumbnailUrl": "Catch the Falling Stars.png" }, - "449":{ - "gameTitle" : "Catch Craze", + "449": { + "gameTitle": "Catch Craze", "gameUrl": "Catch_Craze", "thumbnailUrl": "Catch_Craze.png" }, - "450":{ - "gameTitle" : "Catch Stars", + "450": { + "gameTitle": "Catch Stars", "gameUrl": "Catch_Stars", "thumbnailUrl": "Catch_Stars.jpeg" }, - "451":{ - "gameTitle" : "Catch The Ball", + "451": { + "gameTitle": "Catch The Ball", "gameUrl": "Catch_The_Ball", "thumbnailUrl": "Catch_The_Ball.png" }, - "452":{ - "gameTitle" : "Catch The Circle", + "452": { + "gameTitle": "Catch The Circle", "gameUrl": "Catch_The_Circle", "thumbnailUrl": "Catch_The_Circle.png" }, - "453":{ - "gameTitle" : "Catch The Falling Object", + "453": { + "gameTitle": "Catch The Falling Object", "gameUrl": "Catch_The_Falling_Object", "thumbnailUrl": "Catch_the_falling_object-1.png" }, - "454":{ - "gameTitle" : "Catch The Ball", + "454": { + "gameTitle": "Catch The Ball", "gameUrl": "CatchTheBall", "thumbnailUrl": "CatchTheBall.png" }, - "455":{ - "gameTitle" : "Chess Game with Computer", + "455": { + "gameTitle": "Chess Game with Computer", "gameUrl": "Chess_Game_computer", "thumbnailUrl": "chessComputer.png" }, - "456":{ - "gameTitle" : "City Builder", + "456": { + "gameTitle": "City Builder", "gameUrl": "City_Builder_Game", "thumbnailUrl": "City_Builder_Game.png" }, - "457":{ - "gameTitle" : "Claw Crane", + "457": { + "gameTitle": "Claw Crane", "gameUrl": "clawCrane", "thumbnailUrl": "clawCrane.png" }, - "458":{ - "gameTitle" : "Color Matching Application", + "458": { + "gameTitle": "Color Matching Application", "gameUrl": "color_matching_application", "thumbnailUrl": "color_matching_application.png" }, - "459":{ - "gameTitle" : "Color Shifter", + "459": { + "gameTitle": "Color Shifter", "gameUrl": "Color_Shifter", "thumbnailUrl": "Color_Shifter.png" }, - "460":{ - "gameTitle" : "Color Swap", + "460": { + "gameTitle": "Color Swap", "gameUrl": "Color_Swap", "thumbnailUrl": "Color_Swap.png" }, - "461":{ - "gameTitle" : "Color Turner", + "461": { + "gameTitle": "Color Turner", "gameUrl": "Color_Turner", - "thumbnailUrl":"Color Turner.png" + "thumbnailUrl": "Color Turner.png" }, - "462":{ - "gameTitle" : "Color ON", + "462": { + "gameTitle": "Color ON", "gameUrl": "Coloron", - "thumbnailUrl":"Coloron.png" + "thumbnailUrl": "Coloron.png" }, - "463":{ - "gameTitle" : "Computer Bingo", + "463": { + "gameTitle": "Computer Bingo", "gameUrl": "Computer_Bingo", - "thumbnailUrl":"Computer_Bingo.png" + "thumbnailUrl": "Computer_Bingo.png" }, - "464":{ - "gameTitle" : "Connect Four", + "464": { + "gameTitle": "Connect Four", "gameUrl": "Connect_Four", - "thumbnailUrl":"Connect-Four.png" + "thumbnailUrl": "Connect-Four.png" }, - "465":{ - "gameTitle" : "Cooking Challenge Game", + "465": { + "gameTitle": "Cooking Challenge Game", "gameUrl": "Cooking_Challenge_Game", - "thumbnailUrl":"Cooking_Challenge_Game.png" + "thumbnailUrl": "Cooking_Challenge_Game.png" }, - "466":{ - "gameTitle" : "Copy Cat", + "466": { + "gameTitle": "Copy Cat", "gameUrl": "CopyCat", - "thumbnailUrl":"CopyCat1.png" + "thumbnailUrl": "CopyCat1.png" }, - "467":{ - "gameTitle" : "Corona Fighter", + "467": { + "gameTitle": "Corona Fighter", "gameUrl": "Corona_Fighter", - "thumbnailUrl":"corona_fighter.png" + "thumbnailUrl": "corona_fighter.png" }, - "468":{ - "gameTitle" : "Cosmic Blast", + "468": { + "gameTitle": "Cosmic Blast", "gameUrl": "Cosmic_Blast", - "thumbnailUrl":"Cosmic_Blast.png" + "thumbnailUrl": "Cosmic_Blast.png" }, - "469":{ - "gameTitle" : "Cross The River", + "469": { + "gameTitle": "Cross The River", "gameUrl": "Cross_The_River_Game", - "thumbnailUrl":"Cross_The_River.png" + "thumbnailUrl": "Cross_The_River.png" }, - "470":{ - "gameTitle" : "Currency Converter", + "470": { + "gameTitle": "Currency Converter", "gameUrl": "Currency_Converter", - "thumbnailUrl":"Currency_Converter.png" + "thumbnailUrl": "Currency_Converter.png" }, - "471":{ - "gameTitle" : "Dice Game", + "471": { + "gameTitle": "Dice Game", "gameUrl": "Dice_Game", - "thumbnailUrl":"Dice_Game.png" + "thumbnailUrl": "Dice_Game.png" }, - "472":{ - "gameTitle" : "Dinosaur Memory Game", + "472": { + "gameTitle": "Dinosaur Memory Game", "gameUrl": "Dinosaur_Memory_Game", - "thumbnailUrl":"Dinosaur_memory_game.png" + "thumbnailUrl": "Dinosaur_memory_game.png" }, - "473":{ - "gameTitle" : "Disney Trivia", + "473": { + "gameTitle": "Disney Trivia", "gameUrl": "Disney_Trivia", - "thumbnailUrl":"Disney_Trivia.png" + "thumbnailUrl": "Disney_Trivia.png" }, - "474":{ - "gameTitle" : "Dodge The Blocks", + "474": { + "gameTitle": "Dodge The Blocks", "gameUrl": "Dodge the Blocks", - "thumbnailUrl":"dodge_the_blocks.png" + "thumbnailUrl": "dodge_the_blocks.png" }, - "475":{ - "gameTitle" : "Doraemon Run", + "475": { + "gameTitle": "Doraemon Run", "gameUrl": "DoraemonRun", - "thumbnailUrl":"DoraemonRun.png" + "thumbnailUrl": "DoraemonRun.png" }, - "476":{ - "gameTitle" : "Dot Box Game", + "476": { + "gameTitle": "Dot Box Game", "gameUrl": "Dot_Box_Game", - "thumbnailUrl":"Dot_Box_Game.png" + "thumbnailUrl": "Dot_Box_Game.png" }, - "477":{ - "gameTitle" : "Dot Dash", + "477": { + "gameTitle": "Dot Dash", "gameUrl": "Dot_Dash", - "thumbnailUrl":"Dot_Dash.png" + "thumbnailUrl": "Dot_Dash.png" }, - "478":{ - "gameTitle" : "Drawing App", + "478": { + "gameTitle": "Drawing App", "gameUrl": "Drawing_app", - "thumbnailUrl":"Drawing_app.png" + "thumbnailUrl": "Drawing_app.png" }, - "479":{ - "gameTitle" : "Dsa Quiz", + "479": { + "gameTitle": "Dsa Quiz", "gameUrl": "Dsa_quiz_game", - "thumbnailUrl":"Dsa_quiz_game.png" + "thumbnailUrl": "Dsa_quiz_game.png" }, - "480":{ - "gameTitle" : "Emoji Slot Machine", + "480": { + "gameTitle": "Emoji Slot Machine", "gameUrl": "Emoji_slot_machine", - "thumbnailUrl":"Emoji_slot_machine.png" + "thumbnailUrl": "Emoji_slot_machine.png" }, - "481":{ - "gameTitle" : "Etch a Sketch 2", + "481": { + "gameTitle": "Etch a Sketch 2", "gameUrl": "Etch_a_Sketch_2", - "thumbnailUrl":"Etch_a_Sketch_2.png" + "thumbnailUrl": "Etch_a_Sketch_2.png" }, - "482":{ - "gameTitle" : "Falling Words", + "482": { + "gameTitle": "Falling Words", "gameUrl": "Falling_Words", - "thumbnailUrl":"Falling_words.png" + "thumbnailUrl": "Falling_words.png" }, - "483":{ - "gameTitle" : "find the Ball", + "483": { + "gameTitle": "find the Ball", "gameUrl": "find_the_ball", - "thumbnailUrl":"Find_the_ball.jpeg" + "thumbnailUrl": "Find_the_ball.jpeg" }, - "484":{ - "gameTitle" : "Firedog Adventure", + "484": { + "gameTitle": "Firedog Adventure", "gameUrl": "Firedog_Adventure", - "thumbnailUrl":"Firedog_Adventure.png" + "thumbnailUrl": "Firedog_Adventure.png" }, - "485":{ - "gameTitle" : "Five Nights at Freddys", + "485": { + "gameTitle": "Five Nights at Freddys", "gameUrl": "Five_Nights_at_Freddys/public/index.html", - "thumbnailUrl":"Five_Nights_at_Freddys.png" + "thumbnailUrl": "Five_Nights_at_Freddys.png" }, - "486":{ - "gameTitle" : "Flames", + "486": { + "gameTitle": "Flames", "gameUrl": "Flames Game", - "thumbnailUrl":"Flames Game.png" + "thumbnailUrl": "Flames Game.png" }, - "487":{ - "gameTitle" : "flappy Bubble Sofa", + "487": { + "gameTitle": "flappy Bubble Sofa", "gameUrl": "Flappy_Bubble_Sofa", - "thumbnailUrl":"Flappy_Bubble_Sofa.png" + "thumbnailUrl": "Flappy_Bubble_Sofa.png" }, - "488":{ - "gameTitle" : "Forest Guardian", + "488": { + "gameTitle": "Forest Guardian", "gameUrl": "Forest_Guardian", - "thumbnailUrl":"Forest_guardian.png" + "thumbnailUrl": "Forest_guardian.png" }, - "489":{ - "gameTitle" : "fruit Catching 2", + "489": { + "gameTitle": "fruit Catching 2", "gameUrl": "Fruit_Catching_Game", - "thumbnailUrl":"fruit_catch_game.png" + "thumbnailUrl": "fruit_catch_game.png" }, - "490":{ - "gameTitle" : "Fruit Slicer Game", + "490": { + "gameTitle": "Fruit Slicer Game", "gameUrl": "Fruit_Slicer_Game", - "thumbnailUrl":"Fruit-Slicer.png" + "thumbnailUrl": "Fruit-Slicer.png" }, - "491":{ - "gameTitle" : "fruit Catcher", + "491": { + "gameTitle": "fruit Catcher", "gameUrl": "FruitCatcher", - "thumbnailUrl":"FruitCatcher.png" + "thumbnailUrl": "FruitCatcher.png" }, - "492":{ - "gameTitle" : "Ganesh QR Maker", + "492": { + "gameTitle": "Ganesh QR Maker", "gameUrl": "Ganesh QR Maker", - "thumbnailUrl":"Ganesh QR Maker.png" + "thumbnailUrl": "Ganesh QR Maker.png" }, - "493":{ - "gameTitle" : "Ghost Busting game", + "493": { + "gameTitle": "Ghost Busting game", "gameUrl": "Ghost_busting_game", - "thumbnailUrl":"ghost_busting_game.png" + "thumbnailUrl": "ghost_busting_game.png" }, - "494":{ - "gameTitle" : "Go Fish Master", + "494": { + "gameTitle": "Go Fish Master", "gameUrl": "Go-fish-master", - "thumbnailUrl":"Go-fish-master.png" + "thumbnailUrl": "Go-fish-master.png" }, - "495":{ - "gameTitle" : "Gobblet", + "495": { + "gameTitle": "Gobblet", "gameUrl": "Gobblet", - "thumbnailUrl":"Gobblet.png" + "thumbnailUrl": "Gobblet.png" }, - "496":{ - "gameTitle" : "Go Fish", + "496": { + "gameTitle": "Go Fish", "gameUrl": "GoFish", - "thumbnailUrl":"GoFish.png" + "thumbnailUrl": "GoFish.png" }, - "497":{ - "gameTitle" : "Grab The Carrot", + "497": { + "gameTitle": "Grab The Carrot", "gameUrl": "Grab_The_Carrot", - "thumbnailUrl":"Grab_The_Carrot.png" + "thumbnailUrl": "Grab_The_Carrot.png" }, - "498":{ - "gameTitle" : "Gravity Simulation", + "498": { + "gameTitle": "Gravity Simulation", "gameUrl": "Gravity_Simulation_Game", - "thumbnailUrl":"Gravity_Simulation_Game.png" + "thumbnailUrl": "Gravity_Simulation_Game.png" }, - "499":{ - "gameTitle" : "Guess Num", + "499": { + "gameTitle": "Guess Num", "gameUrl": "Guess_num", - "thumbnailUrl":"Guess_num.png" + "thumbnailUrl": "Guess_num.png" }, - "500":{ - "gameTitle" : "Guess the Friends Name", + "500": { + "gameTitle": "Guess the Friends Name", "gameUrl": "Guess_the_friends_name", - "thumbnailUrl":"Guess_the_friends_name.png" + "thumbnailUrl": "Guess_the_friends_name.png" }, - "501":{ - "gameTitle" : "Guess the Murderer", + "501": { + "gameTitle": "Guess the Murderer", "gameUrl": "Guess_The_Murderer", - "thumbnailUrl":"Guess_The_Murderer.png" + "thumbnailUrl": "Guess_The_Murderer.png" }, - "502":{ - "gameTitle" : "Guess Who", + "502": { + "gameTitle": "Guess Who", "gameUrl": "Guess_Who", - "thumbnailUrl":"Guess_Who.png" + "thumbnailUrl": "Guess_Who.png" }, - "503":{ - "gameTitle" : "Harmony Mixer", + "503": { + "gameTitle": "Harmony Mixer", "gameUrl": "Harmony_Mixer", - "thumbnailUrl":"Harmony_Mixer.png" + "thumbnailUrl": "Harmony_Mixer.png" }, - "504":{ - "gameTitle" : "Hedgehog Havoc", + "504": { + "gameTitle": "Hedgehog Havoc", "gameUrl": "Hedgehog_Hovoc", - "thumbnailUrl":"Hedgehog_Havoc.png" + "thumbnailUrl": "Hedgehog_Havoc.png" }, - "505":{ - "gameTitle" : "Helicopter Game", + "505": { + "gameTitle": "Helicopter Game", "gameUrl": "Helicopter_Game", - "thumbnailUrl":"helicopter-game.png" + "thumbnailUrl": "helicopter-game.png" }, - "506":{ - "gameTitle" : "Hexsweep Game", + "506": { + "gameTitle": "Hexsweep Game", "gameUrl": "Hexsweep-Game", - "thumbnailUrl":"Hexsweep-Game.png" + "thumbnailUrl": "Hexsweep-Game.png" }, - "507":{ - "gameTitle" : "Hide And Seek", + "507": { + "gameTitle": "Hide And Seek", "gameUrl": "Hide_And_Seek", - "thumbnailUrl":"Hide_and_Seek.png" + "thumbnailUrl": "Hide_and_Seek.png" }, - "508":{ - "gameTitle" : "Hit the Hamster", + "508": { + "gameTitle": "Hit the Hamster", "gameUrl": "Hit_the_hamster", - "thumbnailUrl":"Hit_the_hamster_game.png" + "thumbnailUrl": "Hit_the_hamster_game.png" }, - "509":{ - "gameTitle" : "Hit Or Miss", + "509": { + "gameTitle": "Hit Or Miss", "gameUrl": "HitOrMiss", - "thumbnailUrl":"HitOrMiss.png" + "thumbnailUrl": "HitOrMiss.png" }, - "510":{ - "gameTitle" : "Hit Your Friend", + "510": { + "gameTitle": "Hit Your Friend", "gameUrl": "HitYourFriend", - "thumbnailUrl":"Hit-Your-Friend.png" + "thumbnailUrl": "Hit-Your-Friend.png" }, - "511":{ - "gameTitle" : "Html5 Controller Tester", + "511": { + "gameTitle": "Html5 Controller Tester", "gameUrl": "HTML5_Controller_Tester", - "thumbnailUrl":"HTML5_Controller_Tester.png" + "thumbnailUrl": "HTML5_Controller_Tester.png" }, - "512":{ - "gameTitle" : "Idle Miner", + "512": { + "gameTitle": "Idle Miner", "gameUrl": "Idle_miner", - "thumbnailUrl":"Idle_miner.png" + "thumbnailUrl": "Idle_miner.png" }, - "513":{ - "gameTitle" : "I Know You-Mind Reading Game", + "513": { + "gameTitle": "I Know You-Mind Reading Game", "gameUrl": "IKnowYou-Mind-Reading-Game", - "thumbnailUrl":"IKnowYou-Mind-Reading-Game.png" + "thumbnailUrl": "IKnowYou-Mind-Reading-Game.png" }, - "514":{ - "gameTitle" : "Intellect Quest", + "514": { + "gameTitle": "Intellect Quest", "gameUrl": "Intellect_Quest", - "thumbnailUrl":"Intellect_Quest.png" + "thumbnailUrl": "Intellect_Quest.png" }, - "515":{ - "gameTitle" : "Jigsaw Puzzle", + "515": { + "gameTitle": "Jigsaw Puzzle", "gameUrl": "Jigsaw_Puzzle", - "thumbnailUrl":"Jigsaw_Puzzle.png" + "thumbnailUrl": "Jigsaw_Puzzle.png" }, - "516":{ - "gameTitle" : "Key Symphony", + "516": { + "gameTitle": "Key Symphony", "gameUrl": "KeySymphony", - "thumbnailUrl":"KeySymphony.png" + "thumbnailUrl": "KeySymphony.png" }, - "517":{ - "gameTitle" : "Kill The Bird", + "517": { + "gameTitle": "Kill The Bird", "gameUrl": "Kill_The_Bird", - "thumbnailUrl":"killthebird.jpeg" + "thumbnailUrl": "killthebird.jpeg" }, - "518":{ - "gameTitle" : "King Of Pirates Quiz", + "518": { + "gameTitle": "King Of Pirates Quiz", "gameUrl": "King_Of_Pirates_Quiz", - "thumbnailUrl":"King_Of_Pirates.jpg" + "thumbnailUrl": "King_Of_Pirates.jpg" }, - "519":{ - "gameTitle" : "Knife Thrower", + "519": { + "gameTitle": "Knife Thrower", "gameUrl": "Knife-Thrower", - "thumbnailUrl":"Knife-Thrower.png" + "thumbnailUrl": "Knife-Thrower.png" }, - "520":{ - "gameTitle" : "Laser Darts", + "520": { + "gameTitle": "Laser Darts", "gameUrl": "LaserDarts", - "thumbnailUrl":"LaserDarts.png" + "thumbnailUrl": "LaserDarts.png" }, - "521":{ - "gameTitle" : "Letter Sleuth", + "521": { + "gameTitle": "Letter Sleuth", "gameUrl": "Letter_Sleuth", - "thumbnailUrl":"Letter_Sleuth.png" + "thumbnailUrl": "Letter_Sleuth.png" }, - "522":{ - "gameTitle" : "Love Calculator Game", + "522": { + "gameTitle": "Love Calculator Game", "gameUrl": "Love Calculator Game", - "thumbnailUrl":"Love calculator game.png" + "thumbnailUrl": "Love calculator game.png" }, - "523":{ - "gameTitle" : "Lunar Lander", + "523": { + "gameTitle": "Lunar Lander", "gameUrl": "Lunar_Lander", - "thumbnailUrl":"Lunar_Lander.png" + "thumbnailUrl": "Lunar_Lander.png" }, - "524":{ - "gameTitle" : "Madlibs", + "524": { + "gameTitle": "Madlibs", "gameUrl": "Madlibs", - "thumbnailUrl":"Madlibs.png" + "thumbnailUrl": "Madlibs.png" }, - "525":{ - "gameTitle" : "Magic 8 Ball", + "525": { + "gameTitle": "Magic 8 Ball", "gameUrl": "Magic_8_ball", - "thumbnailUrl":"Magic_8_ball.png" + "thumbnailUrl": "Magic_8_ball.png" }, - "526":{ - "gameTitle" : "Makeover Game", + "526": { + "gameTitle": "Makeover Game", "gameUrl": "Makeover_Game", - "thumbnailUrl":"Makeover_Game.png" + "thumbnailUrl": "Makeover_Game.png" }, - "527":{ - "gameTitle" : "Mamba_Mayhem", + "527": { + "gameTitle": "Mamba_Mayhem", "gameUrl": "Mamba Mayhem", - "thumbnailUrl":"Mamba_Mayhem.png" + "thumbnailUrl": "Mamba_Mayhem.png" }, - "528":{ - "gameTitle" : "Mancala game", + "528": { + "gameTitle": "Mancala game", "gameUrl": "Mancala_Game", - "thumbnailUrl":"Mancala_Game.jpeg" + "thumbnailUrl": "Mancala_Game.jpeg" }, - "529":{ - "gameTitle" : "Mansion Mystery", + "529": { + "gameTitle": "Mansion Mystery", "gameUrl": "Mansion_Mystery", - "thumbnailUrl":"Mansion_Mystery.png" + "thumbnailUrl": "Mansion_Mystery.png" }, - "530":{ - "gameTitle" : "Mario gmae", + "530": { + "gameTitle": "Mario gmae", "gameUrl": "mario-game", - "thumbnailUrl":"mario-game.png" + "thumbnailUrl": "mario-game.png" }, - "531":{ - "gameTitle" : "Match Color Game", + "531": { + "gameTitle": "Match Color Game", "gameUrl": "Match_Color_Game", - "thumbnailUrl":"Match_Color_Game.png" + "thumbnailUrl": "Match_Color_Game.png" }, - "532":{ - "gameTitle" : "Mathematics Escape Room", + "532": { + "gameTitle": "Mathematics Escape Room", "gameUrl": "MathematicsEscapeRoom", - "thumbnailUrl":"MathematicsEscapeRoom.png" + "thumbnailUrl": "MathematicsEscapeRoom.png" }, - "533":{ - "gameTitle" : "Maze Runner", + "533": { + "gameTitle": "Maze Runner", "gameUrl": "MazeRunner", - "thumbnailUrl":"MazeRunner.png" + "thumbnailUrl": "MazeRunner.png" }, - "534":{ - "gameTitle" : "Memory Flip", + "534": { + "gameTitle": "Memory Flip", "gameUrl": "Memory Flip", - "thumbnailUrl":"Memory_Flip.png" + "thumbnailUrl": "Memory_Flip.png" }, - "535":{ - "gameTitle" : "Memory Matching Game", + "535": { + "gameTitle": "Memory Matching Game", "gameUrl": "Memory_Matching_Game", - "thumbnailUrl":"Memory_Matching_Game.png" + "thumbnailUrl": "Memory_Matching_Game.png" }, - "536":{ - "gameTitle" : "Modulo Game", + "536": { + "gameTitle": "Modulo Game", "gameUrl": "Modulo_Game", - "thumbnailUrl":"Modulo_Game.png" + "thumbnailUrl": "Modulo_Game.png" }, - "537":{ - "gameTitle" : "Mole", + "537": { + "gameTitle": "Mole", "gameUrl": "Mole", - "thumbnailUrl":"mole.png" + "thumbnailUrl": "mole.png" }, - "538":{ - "gameTitle" : "Morse Code Generator", + "538": { + "gameTitle": "Morse Code Generator", "gameUrl": "Morse_Code_Generator", - "thumbnailUrl":"Morse_Code_Generator.png" + "thumbnailUrl": "Morse_Code_Generator.png" }, - "539":{ - "gameTitle" : "Musical Memory", + "539": { + "gameTitle": "Musical Memory", "gameUrl": "Musical_Memory", - "thumbnailUrl":"Musical_Memory.png" + "thumbnailUrl": "Musical_Memory.png" }, - "540":{ - "gameTitle" : "My Mine Sweeper", + "540": { + "gameTitle": "My Mine Sweeper", "gameUrl": "my_mine_sweeper", - "thumbnailUrl":"my_mine_sweeper.png" + "thumbnailUrl": "my_mine_sweeper.png" }, - "541":{ - "gameTitle" : "Number Recall Game", + "541": { + "gameTitle": "Number Recall Game", "gameUrl": "Number_Recall_Game", - "thumbnailUrl":"Number_recall_game (1).png" + "thumbnailUrl": "Number_recall_game (1).png" }, - "542":{ - "gameTitle" : "News Junction", + "542": { + "gameTitle": "News Junction", "gameUrl": "NewsJunction", - "thumbnailUrl":"NewsJunction.png" + "thumbnailUrl": "NewsJunction.png" }, - "543":{ - "gameTitle" : "Noughts and Crosses", + "543": { + "gameTitle": "Noughts and Crosses", "gameUrl": "Nought_And_Crosses", - "thumbnailUrl":"Noughts_And_Crosses.png" + "thumbnailUrl": "Noughts_And_Crosses.png" }, - "544":{ - "gameTitle" : "Number Whiz", + "544": { + "gameTitle": "Number Whiz", "gameUrl": "numeral-whiz", - "thumbnailUrl":"numeral-whiz.png" + "thumbnailUrl": "numeral-whiz.png" }, - "545":{ - "gameTitle" : "Othello", + "545": { + "gameTitle": "Othello", "gameUrl": "Othello", - "thumbnailUrl":"Othello.png" + "thumbnailUrl": "Othello.png" }, - "546":{ - "gameTitle" : "OutRun Offline Game", + "546": { + "gameTitle": "OutRun Offline Game", "gameUrl": "OutRun_Offline_Game", - "thumbnailUrl":"Outrun.png" + "thumbnailUrl": "Outrun.png" }, - "547":{ - "gameTitle" : "Pac Man Game", + "547": { + "gameTitle": "Pac Man Game", "gameUrl": "Pac_Man_Game", - "thumbnailUrl":"Pac_Man_Thumbnail.png" + "thumbnailUrl": "Pac_Man_Thumbnail.png" }, - "548":{ - "gameTitle" : "Pattern Creation Game", + "548": { + "gameTitle": "Pattern Creation Game", "gameUrl": "Pattern_Creation_Game", - "thumbnailUrl":"Pattern_Creation_Game.png" + "thumbnailUrl": "Pattern_Creation_Game.png" }, - "549":{ - "gameTitle" : "Physics Quizz", + "549": { + "gameTitle": "Physics Quizz", "gameUrl": "Physics_Quizz", - "thumbnailUrl":"Physics_Quizz.png" + "thumbnailUrl": "Physics_Quizz.png" }, - "550":{ - "gameTitle" : "Pictionary Game", + "550": { + "gameTitle": "Pictionary Game", "gameUrl": "Pictionary_Game", - "thumbnailUrl":"Pictionary.png" + "thumbnailUrl": "Pictionary.png" }, - "551":{ - "gameTitle" : "Ping Pong SinglePlayer", + "551": { + "gameTitle": "Ping Pong SinglePlayer", "gameUrl": "Ping_Pong_Singleplayer", - "thumbnailUrl":"Ping_Pong_Singleplayer.png" + "thumbnailUrl": "Ping_Pong_Singleplayer.png" }, - "552":{ - "gameTitle" : "Pokemon Stats Card", + "552": { + "gameTitle": "Pokemon Stats Card", "gameUrl": "Pokemon_Stats_Card", - "thumbnailUrl":"Pokemon_Stats_Card.png" + "thumbnailUrl": "Pokemon_Stats_Card.png" }, - "553":{ - "gameTitle" : "Pong", + "553": { + "gameTitle": "Pong", "gameUrl": "Pong", - "thumbnailUrl":"Pong.png" + "thumbnailUrl": "Pong.png" }, - "554":{ - "gameTitle" : "Pop the Bubbles", + "554": { + "gameTitle": "Pop the Bubbles", "gameUrl": "Pop_the_Bubbles", - "thumbnailUrl":"Pop_the_Bubbles.png" + "thumbnailUrl": "Pop_the_Bubbles.png" }, - "555":{ - "gameTitle" : "Pottery Game", + "555": { + "gameTitle": "Pottery Game", "gameUrl": "Pottery-Game", - "thumbnailUrl":"Pottery.png" + "thumbnailUrl": "Pottery.png" }, - "556":{ - "gameTitle" : "Zombie Shooter", + "556": { + "gameTitle": "Zombie Shooter", "gameUrl": "Zombie_Shooter", - "thumbnailUrl":"Zombie_Shooter.png" + "thumbnailUrl": "Zombie_Shooter.png" }, - "557":{ - "gameTitle" : "Quest For Richer", + "557": { + "gameTitle": "Quest For Richer", "gameUrl": "Quest_For_Riches", - "thumbnailUrl":"Quest_For_Riches.png" + "thumbnailUrl": "Quest_For_Riches.png" }, - "558":{ - "gameTitle" : "Quick Click", + "558": { + "gameTitle": "Quick Click", "gameUrl": "Quick_Click", - "thumbnailUrl":"Quick Click.png" + "thumbnailUrl": "Quick Click.png" }, - "559":{ - "gameTitle" : "Quick fingers", + "559": { + "gameTitle": "Quick fingers", "gameUrl": "QuickFingers", - "thumbnailUrl":"QuickFingers.png" + "thumbnailUrl": "QuickFingers.png" }, - "560":{ - "gameTitle" : "Quiz Game", + "560": { + "gameTitle": "Quiz Game", "gameUrl": "quiz_game", - "thumbnailUrl":"quiz_game.png" + "thumbnailUrl": "quiz_game.png" }, - "561":{ - "gameTitle" : "Quiz It Out", + "561": { + "gameTitle": "Quiz It Out", "gameUrl": "Quiz_it_out", - "thumbnailUrl":"Quiz_it_out.png" + "thumbnailUrl": "Quiz_it_out.png" }, - "562":{ - "gameTitle" : "Random Advice Generator", + "562": { + "gameTitle": "Random Advice Generator", "gameUrl": "Random_Advice_Generator", - "thumbnailUrl":"Random_Advice_Generator.png" + "thumbnailUrl": "Random_Advice_Generator.png" }, - "563":{ - "gameTitle" : "Random Joke Generator", + "563": { + "gameTitle": "Random Joke Generator", "gameUrl": "Random_Joke_Generator", - "thumbnailUrl":"Random_Joke_Generator.jpeg" + "thumbnailUrl": "Random_Joke_Generator.jpeg" }, - "564":{ - "gameTitle" : "Recognizing Figures", + "564": { + "gameTitle": "Recognizing Figures", "gameUrl": "recognizing_Figures", - "thumbnailUrl":"Recognizing_Figures.jpeg" + "thumbnailUrl": "Recognizing_Figures.jpeg" }, - "565":{ - "gameTitle" : "Red Light Green Light", + "565": { + "gameTitle": "Red Light Green Light", "gameUrl": "Red_Light_Green_Light", - "thumbnailUrl":"Red_Light_Green_Light.png" + "thumbnailUrl": "Red_Light_Green_Light.png" }, - "566":{ - "gameTitle" : "Reflex Game", + "566": { + "gameTitle": "Reflex Game", "gameUrl": "Reflex_Game", - "thumbnailUrl":"Reflex_Game.png" + "thumbnailUrl": "Reflex_Game.png" }, - "567":{ - "gameTitle" : "Remember The Color", + "567": { + "gameTitle": "Remember The Color", "gameUrl": "Remember_the_color", - "thumbnailUrl":"Remember_the_color.png" + "thumbnailUrl": "Remember_the_color.png" }, - "568":{ - "gameTitle" : "Reverse Memory", + "568": { + "gameTitle": "Reverse Memory", "gameUrl": "Reverse Memory", - "thumbnailUrl":"Reverse_Memory.png" + "thumbnailUrl": "Reverse_Memory.png" }, - "569":{ - "gameTitle" : "Road Car", + "569": { + "gameTitle": "Road Car", "gameUrl": "road_car", - "thumbnailUrl":"road_car.png" + "thumbnailUrl": "road_car.png" }, - "570":{ - "gameTitle" : "Snake_Gun_Water", + "570": { + "gameTitle": "Snake_Gun_Water", "gameUrl": "Snake_Gun_Water", "thumbnailUrl": "Snake_Gun_Water.png" }, - "571":{ - "gameTitle" : "Rock paper scissor", + "571": { + "gameTitle": "Rock paper scissor", "gameUrl": "Rock_paper_scissor", - "thumbnailUrl":"Rock_paper_scissor.png" + "thumbnailUrl": "Rock_paper_scissor.png" }, - "572":{ - "gameTitle" : "Rock Paper Scissors Neon", + "572": { + "gameTitle": "Rock Paper Scissors Neon", "gameUrl": "Rock_Paper_Scissors_Neon", - "thumbnailUrl":"Rock_Paper_Scissors_Neon.png" + "thumbnailUrl": "Rock_Paper_Scissors_Neon.png" }, - "573":{ - "gameTitle" : "Roll The Dice", + "573": { + "gameTitle": "Roll The Dice", "gameUrl": "Roll_The_Dice", - "thumbnailUrl":"Roll_The_Dice.png" + "thumbnailUrl": "Roll_The_Dice.png" }, - "574":{ - "gameTitle" : "Run Dora Run", + "574": { + "gameTitle": "Run Dora Run", "gameUrl": "Run_Dora_Run", - "thumbnailUrl":"Run_Dora_Run.png" + "thumbnailUrl": "Run_Dora_Run.png" }, - "575":{ - "gameTitle" : "Samurai Fighting", + "575": { + "gameTitle": "Samurai Fighting", "gameUrl": "Samurai_Fighting_Game", - "thumbnailUrl":"Samurai Fighting Game.png" + "thumbnailUrl": "Samurai Fighting Game.png" }, - "576":{ - "gameTitle" : "Shape Finder", + "576": { + "gameTitle": "Shape Finder", "gameUrl": "Shape Finder", - "thumbnailUrl":"Shape Finder.png" + "thumbnailUrl": "Shape Finder.png" }, - "577":{ - "gameTitle" : "Shell Game", + "577": { + "gameTitle": "Shell Game", "gameUrl": "Shell_Game", - "thumbnailUrl":"Shell_Game.png" + "thumbnailUrl": "Shell_Game.png" }, - "578":{ - "gameTitle" : "Shoot Duck Game", + "578": { + "gameTitle": "Shoot Duck Game", "gameUrl": "Shoot_Duck_Game", - "thumbnailUrl":"Shoot_Duck_Game.png" + "thumbnailUrl": "Shoot_Duck_Game.png" }, - "579":{ - "gameTitle" : "Simon Says", + "579": { + "gameTitle": "Simon Says", "gameUrl": "simon says", - "thumbnailUrl":"Simon_Says.png" + "thumbnailUrl": "Simon_Says.png" }, - "580":{ - "gameTitle" : "Single Player Solitaire", + "580": { + "gameTitle": "Single Player Solitaire", "gameUrl": "Single_Player_Solitaire", - "thumbnailUrl":"Single_Player_Solitaire.png" + "thumbnailUrl": "Single_Player_Solitaire.png" }, - "581":{ - "gameTitle" : "Slide Master Puzzle", + "581": { + "gameTitle": "Slide Master Puzzle", "gameUrl": "Slide_Master_Puzzle", - "thumbnailUrl":"Slide_Master_Puzzle.png" + "thumbnailUrl": "Slide_Master_Puzzle.png" }, - "582":{ - "gameTitle" : "Sliding Puzzle", + "582": { + "gameTitle": "Sliding Puzzle", "gameUrl": "Sliding_puzzle", - "thumbnailUrl":"Sliding_puzzle.png" + "thumbnailUrl": "Sliding_puzzle.png" }, - "583":{ - "gameTitle" : "Snake", + "583": { + "gameTitle": "Snake", "gameUrl": "snake", - "thumbnailUrl":"snake.png" + "thumbnailUrl": "snake.png" }, - "584":{ - "gameTitle" : "Snake Bites", + "584": { + "gameTitle": "Snake Bites", "gameUrl": "SnakeBites/snake_Bites.html", - "thumbnailUrl":"SnakeBites.png" + "thumbnailUrl": "SnakeBites.png" }, - "585":{ - "gameTitle" : "Solitaire Up", + "585": { + "gameTitle": "Solitaire Up", "gameUrl": "Solitaire_up", - "thumbnailUrl":"Solitaire_up.png" + "thumbnailUrl": "Solitaire_up.png" }, - "586":{ - "gameTitle" : "Space Dominators", + "586": { + "gameTitle": "Space Dominators", "gameUrl": "Space_Dominators", - "thumbnailUrl":"Space_Dominators.png" + "thumbnailUrl": "Space_Dominators.png" }, - "587":{ - "gameTitle" : "Space Explorer", + "587": { + "gameTitle": "Space Explorer", "gameUrl": "space_explorer", - "thumbnailUrl":"Space_Explorer.png" + "thumbnailUrl": "Space_Explorer.png" }, - "588":{ - "gameTitle" : "Space Invaders", + "588": { + "gameTitle": "Space Invaders", "gameUrl": "Space_Invaders", - "thumbnailUrl":"Space Invaders.png" + "thumbnailUrl": "Space Invaders.png" }, - "589":{ - "gameTitle" : "Spell Bee", + "589": { + "gameTitle": "Spell Bee", "gameUrl": "Spell_Bee", - "thumbnailUrl":"spell_bee.png" + "thumbnailUrl": "spell_bee.png" }, - "590":{ - "gameTitle" : "Spirograph", + "590": { + "gameTitle": "Spirograph", "gameUrl": "Spirograph", - "thumbnailUrl":"Spirograph.png" + "thumbnailUrl": "Spirograph.png" }, - "591":{ - "gameTitle" : "Steam Punk", + "591": { + "gameTitle": "Steam Punk", "gameUrl": "Steam_Punk", - "thumbnailUrl":"Steam_Punk.png" + "thumbnailUrl": "Steam_Punk.png" }, - "592":{ - "gameTitle" : "Steampunk FlappyBird", + "592": { + "gameTitle": "Steampunk FlappyBird", "gameUrl": "Steampunk_FlappyBird", - "thumbnailUrl":"Steampunk_FlappyBird.png" + "thumbnailUrl": "Steampunk_FlappyBird.png" }, - "593":{ - "gameTitle" : "Sudoku Light Theme", + "593": { + "gameTitle": "Sudoku Light Theme", "gameUrl": "Sudoku_light_theme", - "thumbnailUrl":"Sudoku_light_theme.png" + "thumbnailUrl": "Sudoku_light_theme.png" }, - "594":{ - "gameTitle" : "Taash Game", + "594": { + "gameTitle": "Taash Game", "gameUrl": "Taash Game", - "thumbnailUrl":"Taash Game.png" + "thumbnailUrl": "Taash Game.png" }, - "595":{ - "gameTitle" : "Tech Memory Block", + "595": { + "gameTitle": "Tech Memory Block", "gameUrl": "Tech_Memory_Block", - "thumbnailUrl":"Tech_Memory_Blocks.png" + "thumbnailUrl": "Tech_Memory_Blocks.png" }, - "596":{ - "gameTitle" : "Tenzies", + "596": { + "gameTitle": "Tenzies", "gameUrl": "Tenzies/public", - "thumbnailUrl":"" + "thumbnailUrl": "" }, - "597":{ - "gameTitle" : "Test Your Brain", + "597": { + "gameTitle": "Test Your Brain", "gameUrl": "test_your_brain", - "thumbnailUrl":"TEST_YOUR_BRAIN.png" + "thumbnailUrl": "TEST_YOUR_BRAIN.png" }, - "598":{ - "gameTitle" : "Tetris Game", + "598": { + "gameTitle": "Tetris Game", "gameUrl": "Tetris_Game", - "thumbnailUrl":"Tetris_Game.png" + "thumbnailUrl": "Tetris_Game.png" }, - "599":{ - "gameTitle" : "Tic Tac Toe Neon", + "599": { + "gameTitle": "Tic Tac Toe Neon", "gameUrl": "Tic_Tic_Toe_Neon", - "thumbnailUrl":"Tic_Tac_Toe_Neon.jpg" + "thumbnailUrl": "Tic_Tac_Toe_Neon.jpg" }, - "600":{ - "gameTitle" : "Tic Tac Toe Responsive", + "600": { + "gameTitle": "Tic Tac Toe Responsive", "gameUrl": "Tic_tac_toe_responsive", - "thumbnailUrl":"Tic_tac_toe_responsive.png" + "thumbnailUrl": "Tic_tac_toe_responsive.png" }, - "601":{ - "gameTitle" : "Tic tac toe", + "601": { + "gameTitle": "Tic tac toe", "gameUrl": "Tic-tac-toe", - "thumbnailUrl":"Tic-tac-toe.png" + "thumbnailUrl": "Tic-tac-toe.png" }, - "602":{ - "gameTitle" : "Tic-Tac-Toe Game", + "602": { + "gameTitle": "Tic-Tac-Toe Game", "gameUrl": "Tic-Tac-Toe Game", - "thumbnailUrl":"Tic-Tac-Toe Game.png" + "thumbnailUrl": "Tic-Tac-Toe Game.png" }, - "603":{ - "gameTitle" : "Touch No Fire", + "603": { + "gameTitle": "Touch No Fire", "gameUrl": "Touch-No-Fire-Game", - "thumbnailUrl":"Touch-No-Fire-Game.png" + "thumbnailUrl": "Touch-No-Fire-Game.png" }, - "604":{ - "gameTitle" : "Tower Block Game", + "604": { + "gameTitle": "Tower Block Game", "gameUrl": "Tower_Block_Game", - "thumbnailUrl":"Tower_Block_Game.png" + "thumbnailUrl": "Tower_Block_Game.png" }, - "605":{ - "gameTitle" : "Tower Blocks", + "605": { + "gameTitle": "Tower Blocks", "gameUrl": "Tower_Blocks", - "thumbnailUrl":"Tower_Blocks.png" + "thumbnailUrl": "Tower_Blocks.png" }, - "606":{ - "gameTitle" : "Tower Defence Game", + "606": { + "gameTitle": "Tower Defence Game", "gameUrl": "Tower_Defence_Game", - "thumbnailUrl":"Tower_Defence_Game.png" + "thumbnailUrl": "Tower_Defence_Game.png" }, - "607":{ - "gameTitle" : "Town Rise Game", + "607": { + "gameTitle": "Town Rise Game", "gameUrl": "Town_Rise_Game", - "thumbnailUrl":"Town_Rise_Game.png" + "thumbnailUrl": "Town_Rise_Game.png" }, - "608":{ - "gameTitle" : "Treasure Hunt", + "608": { + "gameTitle": "Treasure Hunt", "gameUrl": "Treasure Hunt", - "thumbnailUrl":"Treasure_Hunt.png" + "thumbnailUrl": "Treasure_Hunt.png" }, - "609":{ - "gameTitle" : "TriHand Tactics", + "609": { + "gameTitle": "TriHand Tactics", "gameUrl": "TriHand_Tactics", - "thumbnailUrl":"TriHand_Tactics.png" + "thumbnailUrl": "TriHand_Tactics.png" }, - "610":{ - "gameTitle" : "Turn On The Light", + "610": { + "gameTitle": "Turn On The Light", "gameUrl": "Turn_on_the_light", - "thumbnailUrl":"turnonthelight.jpg" + "thumbnailUrl": "turnonthelight.jpg" }, - "611":{ - "gameTitle" : "Typing Speed Test 2", + "611": { + "gameTitle": "Typing Speed Test 2", "gameUrl": "Typing_Speed_Test2", - "thumbnailUrl":"Typing_Speed_Test2.png" + "thumbnailUrl": "Typing_Speed_Test2.png" }, - "612":{ - "gameTitle" : "Ultimate Football Manager", + "612": { + "gameTitle": "Ultimate Football Manager", "gameUrl": "Ultimate_Football_Manager", - "thumbnailUrl":"Ultimate Football Manager.png" + "thumbnailUrl": "Ultimate Football Manager.png" }, - "613":{ - "gameTitle" : "UNO With Computer", + "613": { + "gameTitle": "UNO With Computer", "gameUrl": "UNO_game_with_Computer", - "thumbnailUrl":"UNO_Game_With_Computer.png" + "thumbnailUrl": "UNO_Game_With_Computer.png" }, - "614":{ - "gameTitle" : "Virtual Pet", + "614": { + "gameTitle": "Virtual Pet", "gameUrl": "Virtual_Pet", - "thumbnailUrl":"Virtual_Pet.png" + "thumbnailUrl": "Virtual_Pet.png" }, - "615":{ - "gameTitle" : "Whack a Mole 2", + "615": { + "gameTitle": "Whack a Mole 2", "gameUrl": "whack a mole", - "thumbnailUrl":"whack a mole.png" + "thumbnailUrl": "whack a mole.png" }, - "616":{ - "gameTitle" : "Whack a Mole Mario version", + "616": { + "gameTitle": "Whack a Mole Mario version", "gameUrl": "Whack_a_Mole_Mario_Version", - "thumbnailUrl":"Whack_a_Mole_Mario_Version.png" + "thumbnailUrl": "Whack_a_Mole_Mario_Version.png" }, - "617":{ - "gameTitle" : "Wheel of Fortune", + "617": { + "gameTitle": "Wheel of Fortune", "gameUrl": "Wheel_of_fortune", - "thumbnailUrl":"Wheel_of_fortune.jpg" + "thumbnailUrl": "Wheel_of_fortune.jpg" }, - "618":{ - "gameTitle" : "Wheel of Fortunes", + "618": { + "gameTitle": "Wheel of Fortunes", "gameUrl": "Wheel_of_fortunes", - "thumbnailUrl":"Wheel_of_Fortunes.png" + "thumbnailUrl": "Wheel_of_Fortunes.png" }, - "619":{ - "gameTitle" : "Word Association", + "619": { + "gameTitle": "Word Association", "gameUrl": "word_association", - "thumbnailUrl":"Word_Association.png" + "thumbnailUrl": "Word_Association.png" }, - "620":{ - "gameTitle" : "Word Shuffle Game", + "620": { + "gameTitle": "Word Shuffle Game", "gameUrl": "Word_Shuffle_Game", - "thumbnailUrl":"Word_Shuffle_Game.png" + "thumbnailUrl": "Word_Shuffle_Game.png" }, - "621":{ - "gameTitle" : "Wordling", + "621": { + "gameTitle": "Wordling", "gameUrl": "Wordling", - "thumbnailUrl":"Wordling.png" + "thumbnailUrl": "Wordling.png" }, - "622":{ - "gameTitle" : "Word Scramble", + "622": { + "gameTitle": "Word Scramble", "gameUrl": "wordScramble", - "thumbnailUrl":"Word_Scramble.png" + "thumbnailUrl": "Word_Scramble.png" }, - "623":{ - "gameTitle" : "Word Sprint", + "623": { + "gameTitle": "Word Sprint", "gameUrl": "WordSprint", - "thumbnailUrl":"wordsprint.png" + "thumbnailUrl": "wordsprint.png" }, - "624":{ - "gameTitle" : "Catch The Falling Stars 2", + "624": { + "gameTitle": "Catch The Falling Stars 2", "gameUrl": "catch_the_falling_stars", - "thumbnailUrl":"Catch the Falling Stars.png" + "thumbnailUrl": "Catch the Falling Stars.png" }, - "625":{ - "gameTitle" : "Bulls eye", + "625": { + "gameTitle": "Bulls eye", "gameUrl": "Bulls_eye", - "thumbnailUrl":"Bulls_eye.png" + "thumbnailUrl": "Bulls_eye.png" }, - "626":{ - "gameTitle" : "Flappy Birdd", + "626": { + "gameTitle": "Flappy Birdd", "gameUrl": "Flappy_Birdd", - "thumbnailUrl":"Flappy_Bird_Game.webp" + "thumbnailUrl": "Flappy_Bird_Game.webp" }, - "627":{ - "gameTitle" : "Penalty_Shootout_Game", + "627": { + "gameTitle": "Penalty_Shootout_Game", "gameUrl": "Penalty_Shootout_Game", "thumbnailUrl": "Penalty_Shootout_Game.png" }, - "628":{ - "gameTitle" : "Atlas Game", + "628": { + "gameTitle": "Atlas Game", "gameUrl": "Atlas_Game", "thumbnailUrl": "Atlas_Game.png" }, - "629":{ - - "gameTitle" : "Word Search Game", + "629": { + "gameTitle": "Word Search Game", "gameUrl": "Word_Search_Game", "thumbnailUrl": "Word_Search_Game.jpeg" }, - - "630":{ - "gameTitle" : "Pokemon Adventure Game", + "630": { + "gameTitle": "Pokemon Adventure Game", "gameUrl": "Pokemon_Adventure_Game", "thumbnailUrl": "Pokemon_Adventure_Game.webp" }, - "631":{ - "gameTitle" : "Number Guessing Game", + "631": { + "gameTitle": "Number Guessing Game", "gameUrl": "HNumber_Guessing_Game", "thumbnailUrl": "NumberGuessingGame.png" }, - "632":{ - "gameTitle" : "Brain Game", + "632": { + "gameTitle": "Brain Game", "gameUrl": "Brain_Game", "thumbnailUrl": "Brain_Game.png" }, - "633":{ - "gameTitle" : "2D Fighting Game", + "633": { + "gameTitle": "2D Fighting Game", "gameUrl": "2D_Fighting_Game", "thumbnailUrl": "2D_Fighting_Game.png" }, - "634":{ - "gameTitle" : "Cosmic_Blast", + "634": { + "gameTitle": "Cosmic_Blast", "gameUrl": "Cosmic_Blast", "thumbnailUrl": "Cosmic_Blast.png" }, - "635":{ - "gameTitle" : "IKnowYou-Mind-Reading-Game", + "635": { + "gameTitle": "IKnowYou-Mind-Reading-Game", "gameUrl": "IKnowYou-Mind-Reading-Game", "thumbnailUrl": "IKnowYou-Mind-Reading-Game.png" }, - "636":{ - "gameTitle" : "King_Sword_Runner", + "636": { + "gameTitle": "King_Sword_Runner", "gameUrl": "King_Sword_Runner", "thumbnailUrl": "King_Sword_Runner.png" }, - "637":{ - "gameTitle" : "Infinite_Cars", + "637": { + "gameTitle": "Infinite_Cars", "gameUrl": "Infinite_Cars", "thumbnailUrl": "infinite_Cars.png" }, - "638":{ - "gameTitle" : "Multiplayer_Shooting_Game", + "638": { + "gameTitle": "Multiplayer_Shooting_Game", "gameUrl": "Multiplayer_Shooting_Game", "thumbnailUrl": "Multiplayer_Shooting_Game.jpeg" }, - "639":{ - "gameTitle" : "Sand Tetris", + "639": { + "gameTitle": "Sand Tetris", "gameUrl": "sand_tetris", "thumbnailUrl": "logo.png" }, - "640":{ - "gameTitle" : "Hangman Game", + "640": { + "gameTitle": "Hangman Game", "gameUrl": "Hangman_Game", "thumbnailUrl": "Hangman_Game.png" }, - "641":{ - "gameTitle" : "Hangman Game", + "641": { + "gameTitle": "Hangman Game", "gameUrl": "Hangman_Game", "thumbnailUrl": "Hangman_Game.png" - }, - "642":{ - "gameTitle" : "Sky Lift Dash", + }, + "642": { + "gameTitle": "Sky Lift Dash", "gameUrl": "Sky_Lift_Dash", "thumbnailUrl": "Sky_Lift_Dash.png" - }, - "643":{ - - "gameTitle" : "Droop Dash Game", - "gameUrl": "Drop_Dash_Game", - "thumbnailUrl": "Drop_Dash_Game.png" - }, - - "644":{ - "gameTitle" : "Box In Air Game", + }, + "643": { + "gameTitle": "Droop Dash Game", + "gameUrl": "Drop_Dash_Game", + "thumbnailUrl": "Drop_Dash_Game.png" + }, + "644": { + "gameTitle": "Box In Air Game", "gameUrl": "Box_In_Air_Game", "thumbnailUrl": "Box_In_Air_Game.png" - }, - "645":{ - "gameTitle" : "Block Vault", + }, + "645": { + "gameTitle": "Block Vault", "gameUrl": "Block_Vault", "thumbnailUrl": "Block_Vault.png" - }, - "646":{ - "gameTitle" : "Harry Potter Wizard Quiz", + }, + "646": { + "gameTitle": "Harry Potter Wizard Quiz", "gameUrl": "Harry_Potter_Wizard_Quiz/start.html", "thumbnailUrl": "Harry_Potter_Wizard_Quiz.png" - }, - "647":{ - "gameTitle" : "Droop Dash Game", + }, + "647": { + "gameTitle": "Droop Dash Game", "gameUrl": "Drop_Dash_Game", "thumbnailUrl": "Drop_Dash_Game.png" - - }, - "648":{ - "gameTitle" : "Gravity Switch Game", - "gameUrl": "Gravity_Switch_Game", - "thumbnailUrl": "Gravity_Switch_Game.png" - }, - "649":{ - "gameTitle" : "Random Choice Picker", - "gameUrl": "Random_Choice_Picker", - "thumbnailUrl": "Drop_Dash_Game.png" - }, - "648":{ - "gameTitle" : "Drummer Kit", + }, + "648": { + "gameTitle": "Drummer Kit", "gameUrl": "Drummer_Kit", "thumbnailUrl": "Drummer_Kit.png" - } -} + }, + "649": { + "gameTitle": "Random Choice Picker", + "gameUrl": "Random_Choice_Picker", + "thumbnailUrl": "Drop_Dash_Game.png" + }, + "650": { + "gameTitle": "Wall Breaker", + "gameUrl": "Wall_Breaker_Game", + "thumbnailUrl": "Wall_Breaker_Game.png" + } +} \ No newline at end of file