games.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * TirNanoG Player games.json - array of games, fields:
  3. * gameid - the max 16 character long Game ID
  4. * url - download URL of the game, must be a zip file with game.tng in it
  5. * img - if the game has a cover image, then a .png file's URL, 64 pixels height
  6. * name_(lang) - name of the game translated, English is mandatory
  7. * desc_(lang) - description of the game
  8. */
  9. [
  10. {
  11. "gameid": "demo1",
  12. "url": "https://codeberg.org/tirnanog/demo/archive/main/demo1-main.zip",
  13. "img": "https://codeberg.org/tirnanog/base/raw/branch/pages/preview.png",
  14. "name_en": "Demo Game1 en",
  15. "name_hu": "Demo Game1 hu",
  16. "desc_en": "desc1 en",
  17. "desc_hu": "desc1 hu"
  18. },
  19. {
  20. "gameid": "demo2",
  21. "url": "https://codeberg.org/tirnanog/demo/archive/main/demo2-main.zip",
  22. "img": "https://tirnanog.codeberg.page/demo.png",
  23. "name_en": "Demo Game2 en",
  24. "name_hu": "Demo Game2 hu",
  25. "desc_en": "desc1 en",
  26. "desc_hu": "desc2 hu"
  27. },
  28. {
  29. "gameid": "demo3",
  30. "url": "https://codeberg.org/tirnanog/demo/archive/main/demo3-main.zip",
  31. "img": "https://tirnanog.codeberg.page/demo.png",
  32. "name_en": "Demo Game3 en",
  33. "desc_en": "desc3 en"
  34. },
  35. {
  36. "gameid": "demo4",
  37. "url": "https://codeberg.org/tirnanog/demo/archive/main/demo4-main.zip",
  38. "img": "https://tirnanog.codeberg.page/demo.png",
  39. "name_en": "Demo Game4 en",
  40. "desc_en": "desc4 en"
  41. }
  42. ]