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 000000000..9109a1bec Binary files /dev/null and b/assets/images/Wall_Breaker_Game.png differ 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