Skip to content

Commit

Permalink
added games
Browse files Browse the repository at this point in the history
  • Loading branch information
kunjgit committed Jun 16, 2023
1 parent 05984aa commit 9f44a42
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
48 changes: 24 additions & 24 deletions assets/js/gamesData.json
Original file line number Diff line number Diff line change
Expand Up @@ -1021,44 +1021,44 @@
"thumbnailUrl": "Mastermind_Mania.png"
},
"203": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Ludo 4 Player",
"gameUrl": "Ludo_4_Player",
"thumbnailUrl": "Ludo_4_Player.PNG"
},
"204": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Air Balloon",
"gameUrl": "AirBalloon",
"thumbnailUrl": "AirBalloon.png"
},
"205": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Space Invadors",
"gameUrl": "Space Invaders",
"thumbnailUrl": "Space Invaders.png"
},
"206": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Cut The Rope",
"gameUrl": "Cut_the_rope",
"thumbnailUrl": "Cut_the_rope.png"
},
"207": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Caeser Cipher",
"gameUrl": "Caesar_Cipher",
"thumbnailUrl": "caesar.png"
},
"208": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Monster Maker",
"gameUrl": "Monster_Maker",
"thumbnailUrl": "Monster_Maker.png"
},
"209": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Stolen Sword",
"gameUrl": "Stolen_Sword",
"thumbnailUrl": "Stolen_Sword.jpg"
},
"210": {
"gameTitle": "",
"gameUrl": "",
"thumbnailUrl": ""
"gameTitle": "Master Mind",
"gameUrl": "Mastemind",
"thumbnailUrl": "Mastermind.png"
},
"211": {
"gameTitle": "",
Expand Down
2 changes: 1 addition & 1 deletion assets/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const generateLiTags = (gamesData) => {
const liTags = [];

for (let tagNumber = 1; tagNumber <= 202; tagNumber++) {
for (let tagNumber = 1; tagNumber <= 210; tagNumber++) {
const gameData = gamesData[tagNumber.toString()];

if (gameData) {
Expand Down

0 comments on commit 9f44a42

Please sign in to comment.