diff --git a/.github/update_stars.py b/.github/update_stars.py new file mode 100644 index 0000000..abad746 --- /dev/null +++ b/.github/update_stars.py @@ -0,0 +1,73 @@ +import json +import glob +import os +import sys +import urllib.request +import re + +from ignore_json import ignore + +GITHUB_API = "https://api.github.com/repos/{owner}/{repo}" +GITHUB_TOKEN = os.getenv("GITHUB_TOKEN") + +def extract_github_repo(url): + match = re.search(r"github\.com/([^/]+)/([^/]+)", url) + if not match: + return None, None + return match.group(1), match.group(2) + +for filename in glob.glob(os.path.join('.', '*.json')): + if filename not in ignore: + print(f"Opening: {filename}") + filecontent = open(filename, "r", encoding="utf-8").read() + modlist = json.loads(filecontent) + + items = ( + modlist.items() + if 'availableMods' not in modlist + else modlist["availableMods"].items() + ) + + for mod, data in items: + url = data.get("download", "") + owner, repo = extract_github_repo(url) + + if not owner or not repo: + print(f"Skipping {mod}: not a GitHub URL") + continue + + api_url = GITHUB_API.format(owner=owner, repo=repo) + print(f"Fetching stars for {mod}: {owner}/{repo}") + + headers = {"User-Agent": "github-stars-script"} + if GITHUB_TOKEN: + headers["Authorization"] = f"Bearer {GITHUB_TOKEN}" + + try: + request = urllib.request.Request(api_url, headers=headers) + response = urllib.request.urlopen(request, timeout=10) + repo_data = json.loads(response.read().decode("utf-8")) + stars = repo_data.get("stargazers_count") + if stars is not None: + data["githubStars"] = stars + print(f"Stars updated: {stars}") + else: + print("No stars field in response, keeping old value") + + except Exception as e: + existing = data.get("githubStars") + if existing is not None: + print(f"Error ({e}), keeping existing stars: {existing}") + else: + print(f"Error ({e}), no existing stars to keep") + + resultcontent = json.dumps( + modlist, + indent='\t', + separators=(',', ' : ') + ) + "\n" + + if filecontent != resultcontent: + open(filename, "w", encoding="utf-8").write(resultcontent) + +sys.exit(os.EX_OK) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ada030b..f327b3c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: - name: Validate mod json run: python3 .github/validate_mod_json.py - update_size: + update_size_stars: if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/develop') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} runs-on: ubuntu-latest defaults: @@ -59,6 +59,11 @@ jobs: - name: Update size run: python3 .github/update_size.py + - name: Update stars + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: python3 .github/update_stars.py + - name: Determine branch and switch id: branch_info run: | diff --git a/vcmi-1.4-archive.json b/vcmi-1.4-archive.json index 048ec4f..0f3eeed 100644 --- a/vcmi-1.4-archive.json +++ b/vcmi-1.4-archive.json @@ -8,7 +8,8 @@ "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen4.png" ], - "downloadSize" : 20.17 + "downloadSize" : 20.17, + "githubStars" : 0 }, "ciberium-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/ciberium-town/mod.json", @@ -18,92 +19,110 @@ "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen3.png" ], - "downloadSize" : 24.778 + "downloadSize" : 24.778, + "githubStars" : 0 }, "foundry-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/foundry-town/vcmi-1.4/foundry-town/mod.json", "download" : "https://github.com/misiokles/foundry-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 18.394 + "downloadSize" : 18.394, + "githubStars" : 0 }, "small-era-mods" : { "mod" : "https://raw.githubusercontent.com/misiokles/small-era-mods/vcmi-1.4/small-era-mods/mod.json", "download" : "https://github.com/misiokles/small-era-mods/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 15.073 + "downloadSize" : 15.073, + "githubStars" : 0 }, "HoMM3-alternative-towns-music" : { "mod" : "https://raw.githubusercontent.com/misiokles/HoMM3-alternative-towns-music/vcmi-1.4/HoMM3-alternative-towns-music/mod.json", "download" : "https://github.com/misiokles/HoMM3-alternative-towns-music/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 9.836 + "downloadSize" : 9.836, + "githubStars" : 0 }, "astral-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/astral-town/vcmi-1.4/astral-town/mod.json", "download" : "https://github.com/misiokles/astral-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 10.293 + "downloadSize" : 10.293, + "githubStars" : 0 }, "golemcraft" : { "mod" : "https://raw.githubusercontent.com/misiokles/golemcraft/vcmi-1.4/golemcraft/mod.json", "download" : "https://github.com/misiokles/golemcraft/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.075 + "downloadSize" : 0.075, + "githubStars" : 0 }, "slothlux-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/slothlux-town/vcmi-1.4/slothlux-town/mod.json", "download" : "https://github.com/misiokles/slothlux-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 8.811 + "downloadSize" : 8.811, + "githubStars" : 0 }, "peachville-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/peachville-town/vcmi-1.4/peachville-town/mod.json", "download" : "https://github.com/misiokles/peachville-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 8.069 + "downloadSize" : 8.069, + "githubStars" : 0 }, "palace-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/palace-town/vcmi-1.4/palace-town/mod.json", "download" : "https://github.com/misiokles/palace-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 14.683 + "downloadSize" : 14.683, + "githubStars" : 0 }, "h4-arts-hero" : { "mod" : "https://raw.githubusercontent.com/misiokles/h4-arts-hero/vcmi-1.7/h4-arts-hero/mod.json", "download" : "https://github.com/misiokles/h4-arts-hero/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 0.226 + "downloadSize" : 0.226, + "githubStars" : 0 }, "h2-artifacts" : { "mod" : "https://raw.githubusercontent.com/misiokles/h2-artifacts/vcmi-1.4/h2-artifacts/mod.json", "download" : "https://github.com/misiokles/h2-artifacts/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.173 + "downloadSize" : 0.173, + "githubStars" : 0 }, "alpha-mod" : { "mod" : "https://raw.githubusercontent.com/misiokles/alpha-mod/vcmi-1.4/alpha-mod/mod.json", "download" : "https://github.com/misiokles/alpha-mod/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 6.885 + "downloadSize" : 6.885, + "githubStars" : 0 }, "regna-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/regna-town/vcmi-1.4/regna-town/mod.json", "download" : "https://github.com/misiokles/regna-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 12.344 + "downloadSize" : 12.344, + "githubStars" : 0 }, "swarm-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/swarm-town/vcmi-1.4/swarm-town/mod.json", "download" : "https://github.com/misiokles/swarm-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 22.894 + "downloadSize" : 22.894, + "githubStars" : 0 }, "rampstorm" : { "mod" : "https://raw.githubusercontent.com/misiokles/rampstorm/vcmi-1.4/rampstorm/mod.json", "download" : "https://github.com/misiokles/rampstorm/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 8.255 + "downloadSize" : 8.255, + "githubStars" : 0 }, "atlantis-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/atlantis-town/vcmi-1.4/atlantis-town/mod.json", "download" : "https://github.com/misiokles/atlantis-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 11.283 + "downloadSize" : 11.283, + "githubStars" : 0 }, "technocracy-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/technocracy-town/vcmi-1.4/technocracy-town/mod.json", "download" : "https://github.com/misiokles/technocracy-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 17.799 + "downloadSize" : 17.799, + "githubStars" : 0 }, "eldorado-town" : { "mod" : "https://raw.githubusercontent.com/kdmcser/eldorado-town/vcmi-1.5/mod.json", "download" : "https://github.com/kdmcser/eldorado-town/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 19.259 + "downloadSize" : 19.259, + "githubStars" : 0 }, "haven-old" : { "mod" : "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/haven-old/mod.json", @@ -114,7 +133,8 @@ "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 13.341 + "downloadSize" : 13.341, + "githubStars" : 0 }, "bastille-old" : { "mod" : "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/bastille-old/mod.json", @@ -125,7 +145,8 @@ "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 17.588 + "downloadSize" : 17.588, + "githubStars" : 0 }, "fiorin-heroes" : { "mod" : "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/fiorin-heroes/mod.json", @@ -135,7 +156,8 @@ "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen3.png" ], - "downloadSize" : 2.525 + "downloadSize" : 2.525, + "githubStars" : 0 }, "plane-of-earth-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/plane-of-earth-town/mod.json", @@ -146,7 +168,8 @@ "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 14.417 + "downloadSize" : 14.417, + "githubStars" : 0 }, "might-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/might-town/mod.json", @@ -157,7 +180,8 @@ "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 16.616 + "downloadSize" : 16.616, + "githubStars" : 0 }, "covenant-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/covenant-town/mod.json", @@ -168,7 +192,8 @@ "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 37.546 + "downloadSize" : 37.546, + "githubStars" : 0 }, "ruins092-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/ruins-092/mod.json", @@ -180,7 +205,8 @@ "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen4.png", "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen5.png" ], - "downloadSize" : 14.789 + "downloadSize" : 14.789, + "githubStars" : 0 }, "glacier-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/glacier-town/mod.json", @@ -189,7 +215,8 @@ "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/screenshots/screen1.png", "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/screenshots/screen2.png" ], - "downloadSize" : 13.565 + "downloadSize" : 13.565, + "githubStars" : 0 }, "limes-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/limes-town/mod.json", @@ -200,7 +227,8 @@ "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 22.388 + "downloadSize" : 22.388, + "githubStars" : 0 }, "christmas-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/christmas-town/mod.json", @@ -211,7 +239,8 @@ "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 16.138 + "downloadSize" : 16.138, + "githubStars" : 0 }, "warlock-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/warlock-town/mod.json", @@ -221,12 +250,14 @@ "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen3.png" ], - "downloadSize" : 14.243 + "downloadSize" : 14.243, + "githubStars" : 0 }, "mythology-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/mythology-town/vcmi-1.4/mythology-town/mod.json", "download" : "https://github.com/misiokles/mythology-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 10.816 + "downloadSize" : 10.816, + "githubStars" : 0 }, "abode-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/abode-town/mod.json", @@ -236,12 +267,14 @@ "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen3.png" ], - "downloadSize" : 21.358 + "downloadSize" : 21.358, + "githubStars" : 0 }, "pah3-singleplayer-tournament" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/pah3-singleplayer-tournament/mod.json", "download" : "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 2.313 + "downloadSize" : 2.313, + "githubStars" : 0 }, "crossroads-of-worlds" : { "mod" : "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/crossroads-of-worlds/mod.json", @@ -258,7 +291,8 @@ "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen09.png", "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen10.png" ], - "downloadSize" : 151.446 + "downloadSize" : 151.446, + "githubStars" : 0 }, "blazers-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/blazers-town/main/blazers-town/mod.json", @@ -268,7 +302,8 @@ "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen02.png", "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen03.png" ], - "downloadSize" : 18.683 + "downloadSize" : 18.683, + "githubStars" : 0 }, "wild-valley-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/wild-valley-town/mod.json", @@ -279,7 +314,8 @@ "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen03.png", "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen04.png" ], - "downloadSize" : 16.63 + "downloadSize" : 16.63, + "githubStars" : 0 }, "evergreen-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/evergreen-town/main/evergreen-town/mod.json", @@ -290,7 +326,8 @@ "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen03.png", "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen04.png" ], - "downloadSize" : 15.318 + "downloadSize" : 15.318, + "githubStars" : 0 }, "h2-towns" : { "mod" : "https://raw.githubusercontent.com/misiokles/h2-towns/main/h2-towns/mod.json", @@ -302,7 +339,8 @@ "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen4.png", "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen5.png" ], - "downloadSize" : 63.742 + "downloadSize" : 63.742, + "githubStars" : 0 }, "haven-vovan" : { "mod" : "https://raw.githubusercontent.com/misiokles/haven-vovan/main/haven-vovan/mod.json", @@ -310,21 +348,25 @@ "screenshots" : [ "https://raw.githubusercontent.com/misiokles/haven-vovan/main/screenshots/screen1.png" ], - "downloadSize" : 12.872 + "downloadSize" : 12.872, + "githubStars" : 0 }, "old-court-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/old-court-town/main/old-court-town/mod.json", "download" : "https://github.com/misiokles/old-court-town/archive/refs/heads/main.zip", - "downloadSize" : 12.721 + "downloadSize" : 12.721, + "githubStars" : 0 }, "naga-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/naga-town/vcmi-1.7/naga-town/mod.json", "download" : "https://github.com/misiokles/naga-town/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 33.763 + "downloadSize" : 33.763, + "githubStars" : 0 }, "land-of-light" : { "mod" : "https://raw.githubusercontent.com/misiokles/land-of-light/vcmi-1.7/land-of-light/mod.json", "download" : "https://github.com/misiokles/land-of-light/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 51.853 + "downloadSize" : 51.853, + "githubStars" : 0 } } diff --git a/vcmi-1.5.json b/vcmi-1.5.json index 957f95b..e384ea3 100644 --- a/vcmi-1.5.json +++ b/vcmi-1.5.json @@ -2,7 +2,8 @@ "vcmi-extras" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.4/mod.json", "download" : "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 4.567 + "downloadSize" : 4.567, + "githubStars" : 11 }, "hota" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.5/hota/mod.json", @@ -18,32 +19,38 @@ "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/08.png", "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/09.png" ], - "downloadSize" : 109.689 + "downloadSize" : 109.689, + "githubStars" : 42 }, "wake-of-gods" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 76.473 + "downloadSize" : 76.473, + "githubStars" : 18 }, "tides-of-war" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 27.835 + "downloadSize" : 27.835, + "githubStars" : 5 }, "courtyard" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.5/Courtyard/mod.json", "download" : "https://github.com/vcmi-mods/courtyard/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 24.625 + "downloadSize" : 24.625, + "githubStars" : 1 }, "neutral-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/neutral-heroes/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 2.602 + "downloadSize" : 2.602, + "githubStars" : 0 }, "new-old-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.5/new-old-heroes/mod.json", "download" : "https://github.com/vcmi-mods/new-old-heroes/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 0.409 + "downloadSize" : 0.409, + "githubStars" : 0 }, "asylum-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/asylum-town/vcmi-1.5/asylum-town/mod.json", @@ -57,12 +64,14 @@ "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" ], - "downloadSize" : 26.555 + "downloadSize" : 26.555, + "githubStars" : 0 }, "highlands-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/highlands-town/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 13.58 + "downloadSize" : 13.58, + "githubStars" : 1 }, "new-pavilion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.5/New Pavilion/mod.json", @@ -76,32 +85,38 @@ "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen7.png" ], - "downloadSize" : 50.799 + "downloadSize" : 50.799, + "githubStars" : 1 }, "cathedral-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.5/cathedral-town/mod.json", "download" : "https://github.com/vcmi-mods/cathedral-town/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 11.136 + "downloadSize" : 11.136, + "githubStars" : 1 }, "death-valley-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/vcmi-1.5/death-valley-town/mod.json", "download" : "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 20.101 + "downloadSize" : 20.101, + "githubStars" : 0 }, "reworked-commanders" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/vcmi-1.5/reworked-commanders/mod.json", "download" : "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 9.265 + "downloadSize" : 9.265, + "githubStars" : 0 }, "andruids-expansion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.5/andruids-expansion/mod.json", "download" : "https://github.com/vcmi-mods/andruids-expansion/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 6.709 + "downloadSize" : 6.709, + "githubStars" : 0 }, "tok" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tok/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/tok/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 3.528 + "downloadSize" : 3.528, + "githubStars" : 0 }, "elemental-nodes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.5/elemental-nodes/mod.json", @@ -110,117 +125,140 @@ "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.5/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.5/screenshots/screen2.png" ], - "downloadSize" : 1.407 + "downloadSize" : 1.407, + "githubStars" : 0 }, "german-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/german-translation/vcmi-1.4/mod.json", "download" : "https://github.com/vcmi-mods/german-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 179.836 + "downloadSize" : 179.836, + "githubStars" : 1 }, "spanish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/spanish-translation/vcmi-1.4/spanish-translation/mod.json", "download" : "https://github.com/vcmi-mods/spanish-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 12.39 + "downloadSize" : 12.39, + "githubStars" : 1 }, "korean-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/korean-translation/vcmi-1.4/korean-translation/mod.json", "download" : "https://github.com/vcmi-mods/korean-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 4.068 + "downloadSize" : 4.068, + "githubStars" : 0 }, "italian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/italian-translation/vcmi-1.4/italian-translation/mod.json", "download" : "https://github.com/vcmi-mods/italian-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 12.166 + "downloadSize" : 12.166, + "githubStars" : 0 }, "czech-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-translation/vcmi-1.4/czech-translation/mod.json", "download" : "https://github.com/vcmi-mods/czech-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 6.847 + "downloadSize" : 6.847, + "githubStars" : 0 }, "finnish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/finnish-translation/vcmi-1.4/finnish-translation/mod.json", "download" : "https://github.com/vcmi-mods/finnish-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.59 + "downloadSize" : 0.59, + "githubStars" : 0 }, "portuguese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/portuguese-translation/vcmi-1.4/portuguese-translation/mod.json", "download" : "https://github.com/vcmi-mods/portuguese-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 10.024 + "downloadSize" : 10.024, + "githubStars" : 1 }, "swedish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/swedish-translation/vcmi-1.4/swedish-translation/mod.json", "download" : "https://github.com/vcmi-mods/swedish-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.402 + "downloadSize" : 0.402, + "githubStars" : 0 }, "turkish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/turkish-translation/vcmi-1.4/turkish-translation/mod.json", "download" : "https://github.com/vcmi-mods/turkish-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.049 + "downloadSize" : 0.049, + "githubStars" : 0 }, "hungarian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hungarian-translation/vcmi-1.4/hungarian-translation/mod.json", "download" : "https://github.com/vcmi-mods/hungarian-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 16.348 + "downloadSize" : 16.348, + "githubStars" : 0 }, "chinese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-translation/vcmi-1.4/chinese-translation/mod.json", "download" : "https://github.com/vcmi-mods/chinese-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 16.969 + "downloadSize" : 16.969, + "githubStars" : 2 }, "french-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/french-translation/vcmi-1.4/french-translation/mod.json", "download" : "https://github.com/vcmi-mods/french-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 14.962 + "downloadSize" : 14.962, + "githubStars" : 0 }, "vietnamese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vietnamese-translation/vcmi-1.4/vietnamese-translation/mod.json", "download" : "https://github.com/vcmi-mods/vietnamese-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 6.053 + "downloadSize" : 6.053, + "githubStars" : 1 }, "polish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/polish-translation/vcmi-1.4/polish-translation/mod.json", "download" : "https://github.com/vcmi-mods/polish-translation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 163.578 + "downloadSize" : 163.578, + "githubStars" : 1 }, "vcmi-mod-ce-ukr" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.4/ce-ukr/mod.json", "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 7.285 + "downloadSize" : 7.285, + "githubStars" : 2 }, "h3-for-vcmi-englisation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.4/H3forVCMIenglisation/mod.json", "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 109.749 + "downloadSize" : 109.749, + "githubStars" : 1 }, "forge" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.4/mod.json", "download" : "https://github.com/vcmi-mods/forge/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 15.056 + "downloadSize" : 15.056, + "githubStars" : 2 }, "ai trace" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip", - "downloadSize" : 0.001 + "downloadSize" : 0.001, + "githubStars" : 0 }, "demo support" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip", - "downloadSize" : 4.233 + "downloadSize" : 4.233, + "githubStars" : 1 }, "ai testing maps" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip", - "downloadSize" : 4.062 + "downloadSize" : 4.062, + "githubStars" : 0 }, "campaign-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/vcmi-1.4/mod.json", "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.096 + "downloadSize" : 0.096, + "githubStars" : 0 }, "axolotl-creatures-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/axolotl-creatures-pack/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/axolotl-creatures-pack/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 63.665 + "downloadSize" : 63.665, + "githubStars" : 0 }, "tarnum" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.5/tarnum/mod.json", @@ -228,12 +266,14 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.5/screenshots/tarnumVizier.png" ], - "downloadSize" : 1.588 + "downloadSize" : 1.588, + "githubStars" : 0 }, "magic-fader" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/magic-fader/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/magic-fader/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 0.092 + "downloadSize" : 0.092, + "githubStars" : 0 }, "grove" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/grove/vcmi-1.5/Grove/mod.json", @@ -245,7 +285,8 @@ "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" ], - "downloadSize" : 19.499 + "downloadSize" : 19.499, + "githubStars" : 0 }, "combine-grail" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/combine-grail/vcmi-1.5/combine-grail/mod.json", @@ -253,7 +294,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" ], - "downloadSize" : 0.51 + "downloadSize" : 0.51, + "githubStars" : 0 }, "fairy-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/fairy-town/vcmi-1.5/fairy-town/mod.json", @@ -261,7 +303,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" ], - "downloadSize" : 14.808 + "downloadSize" : 14.808, + "githubStars" : 0 }, "haven-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.5/haven-town/mod.json", @@ -270,7 +313,8 @@ "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.5/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.5/screenshots/screen2.png" ], - "downloadSize" : 11.062 + "downloadSize" : 11.062, + "githubStars" : 0 }, "ruins-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.5/ruins-town/mod.json", @@ -282,7 +326,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.5/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.5/screenshots/screen5.png" ], - "downloadSize" : 23.326 + "downloadSize" : 23.326, + "githubStars" : 1 }, "h3-themes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/h3-themes/mod.json", @@ -296,7 +341,8 @@ "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/screenshots/ToW-menu.png", "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/screenshots/WoG-menu.png" ], - "downloadSize" : 124.886 + "downloadSize" : 124.886, + "githubStars" : 0 }, "creatures-hidden-potential" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/vcmi-1.5/creatures-hidden-potential/mod.json", @@ -306,7 +352,8 @@ "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" ], - "downloadSize" : 3.515 + "downloadSize" : 3.515, + "githubStars" : 0 }, "tartarus-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/vcmi-1.5/tartarus-town/mod.json", @@ -319,7 +366,8 @@ "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" ], - "downloadSize" : 16.115 + "downloadSize" : 16.115, + "githubStars" : 0 }, "preserve-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/preserve-town/vcmi-1.5/preserve/mod.json", @@ -332,7 +380,8 @@ "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" ], - "downloadSize" : 28.149 + "downloadSize" : 28.149, + "githubStars" : 0 }, "abyss-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/abyss-town/vcmi-1.5/abyss-town/mod.json", @@ -344,7 +393,8 @@ "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" ], - "downloadSize" : 32.791 + "downloadSize" : 32.791, + "githubStars" : 0 }, "retreat-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.5/retreat-town/mod.json", @@ -354,7 +404,8 @@ "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen3.png" ], - "downloadSize" : 19.435 + "downloadSize" : 19.435, + "githubStars" : 0 }, "cetatea-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/vcmi-1.5/cetatea/mod.json", @@ -366,7 +417,8 @@ "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" ], - "downloadSize" : 14.446 + "downloadSize" : 14.446, + "githubStars" : 0 }, "lost-souls" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/lost-souls/vcmi-1.4/doomMod/mod.json", @@ -374,7 +426,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/lost-souls/main/screenshots/screen1.png" ], - "downloadSize" : 0.873 + "downloadSize" : 0.873, + "githubStars" : 0 }, "carpet-whisperers" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.4/carpet-whisperers/mod.json", @@ -383,7 +436,8 @@ "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/screenshots/screen02.png" ], - "downloadSize" : 3.435 + "downloadSize" : 3.435, + "githubStars" : 0 }, "kurek-creatures" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/vcmi-1.5/kurek-creatures/mod.json", @@ -392,7 +446,8 @@ "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen2.png" ], - "downloadSize" : 24.628 + "downloadSize" : 24.628, + "githubStars" : 0 }, "undead-sphinxes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/vcmi-1.4/undeadSphinxes/mod.json", @@ -400,7 +455,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/main/screenshots/screen1.png" ], - "downloadSize" : 3.466 + "downloadSize" : 3.466, + "githubStars" : 0 }, "andruids-spell-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/vcmi-1.4/andruids-spell-balance/mod.json", @@ -408,7 +464,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" ], - "downloadSize" : 0.8 + "downloadSize" : 0.8, + "githubStars" : 0 }, "new-old-spells-plus" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/vcmi-1.4/newOldSpellsPlus/mod.json", @@ -416,7 +473,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" ], - "downloadSize" : 2.101 + "downloadSize" : 2.101, + "githubStars" : 0 }, "portraits-packs" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/vcmi-1.4/Portaits%20packs/mod.json", @@ -427,13 +485,15 @@ "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" ], - "downloadSize" : 18.48 + "downloadSize" : 18.48, + "githubStars" : 0 }, "heroes-iii-orchestra" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-iii-orchestra/vcmi-1.4/Heroes%20III%20Orchestra/mod.json", "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/vcmi-1.4.zip", "screenshots" : [], - "downloadSize" : 10.243 + "downloadSize" : 10.243, + "githubStars" : 2 }, "russian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/russian-translation/mod.json", @@ -447,7 +507,8 @@ "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-6.png", "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-7.png" ], - "downloadSize" : 38.779 + "downloadSize" : 38.779, + "githubStars" : 0 }, "new-interface-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.4/New%20Interface%20Mod/mod.json", @@ -461,7 +522,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.4/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.4/screenshots/screen7.png" ], - "downloadSize" : 46.53 + "downloadSize" : 46.53, + "githubStars" : 0 }, "hi-rez-menu" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/vcmi-1.4/new-menu/mod.json", @@ -469,7 +531,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" ], - "downloadSize" : 8.119 + "downloadSize" : 8.119, + "githubStars" : 0 }, "greenhouse-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/vcmi-1.4/Greenhouse/mod.json", @@ -480,7 +543,8 @@ "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" ], - "downloadSize" : 14.223 + "downloadSize" : 14.223, + "githubStars" : 0 }, "sand-tower" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/sand-tower/vcmi-1.4/sand-tower/mod.json", @@ -488,7 +552,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/screenshots/screen1.png" ], - "downloadSize" : 3.67 + "downloadSize" : 3.67, + "githubStars" : 0 }, "autumn-rampart" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/vcmi-1.4/autumn-rampart/mod.json", @@ -496,7 +561,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/main/screenshots/screen1.png" ], - "downloadSize" : 6.002 + "downloadSize" : 6.002, + "githubStars" : 0 }, "another-rampart" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/another-rampart/vcmi-1.4/another-rampart/mod.json", @@ -504,7 +570,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/another-rampart/main/screenshots/screen1.png" ], - "downloadSize" : 4.186 + "downloadSize" : 4.186, + "githubStars" : 0 }, "red-castle" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/red-castle/vcmi-1.4/red-castle/mod.json", @@ -512,12 +579,14 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/red-castle/main/screenshots/screen1.png" ], - "downloadSize" : 3.201 + "downloadSize" : 3.201, + "githubStars" : 0 }, "lotrd-townscreens" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/lotrd-townscreens/vcmi-1.4/lotrd-townscreens/mod.json", "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 13.252 + "downloadSize" : 13.252, + "githubStars" : 0 }, "ghost-necropolis" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/vcmi-1.4/ghost-necropolis/mod.json", @@ -525,7 +594,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/main/screenshots/screen1.png" ], - "downloadSize" : 20.313 + "downloadSize" : 20.313, + "githubStars" : 0 }, "quartz" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/quartz/vcmi-1.4/quartz/mod.json", @@ -533,7 +603,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/quartz/main/screenshots/screen1.png" ], - "downloadSize" : 16.802 + "downloadSize" : 16.802, + "githubStars" : 0 }, "snow-in-Tower" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/snow-in-tower/vcmi-1.4/snow-in-Tower/mod.json", @@ -541,7 +612,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/snow-in-Tower/main/screenshots/screen1.png" ], - "downloadSize" : 9.998 + "downloadSize" : 9.998, + "githubStars" : 0 }, "snow-castle" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/snow-castle/vcmi-1.4/snow-castle/mod.json", @@ -549,17 +621,20 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/snow-castle/main/screenshots/screen1.png" ], - "downloadSize" : 5.946 + "downloadSize" : 5.946, + "githubStars" : 0 }, "boost-ai" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/boost-ai/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/boost-ai/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 0.013 + "downloadSize" : 0.013, + "githubStars" : 0 }, "an-expansion" : { "mod" : "https://raw.githubusercontent.com/vdhan/an-expansion/master/mod.json", "download" : "https://github.com/vdhan/an-expansion/archive/refs/heads/master.zip", - "downloadSize" : 6.774 + "downloadSize" : 6.774, + "githubStars" : 3 }, "refugee-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.4/refugee-town/mod.json", @@ -571,7 +646,8 @@ "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen5.png" ], - "downloadSize" : 32.299 + "downloadSize" : 32.299, + "githubStars" : 0 }, "asphalt-terrain" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.5/asphalt-terrain/mod.json", @@ -580,7 +656,8 @@ "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen02.png" ], - "downloadSize" : 9.106 + "downloadSize" : 9.106, + "githubStars" : 1 }, "newtown-terrains" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.5/newtown-terrains/mod.json", @@ -593,7 +670,8 @@ "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.5/screenshots/screen14.png", "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.5/screenshots/screen15.png" ], - "downloadSize" : 48.967 + "downloadSize" : 48.967, + "githubStars" : 1 }, "forge2k" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/Forge2k/mod.json", @@ -602,7 +680,8 @@ "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/screenshots/screen02.png" ], - "downloadSize" : 21.79 + "downloadSize" : 21.79, + "githubStars" : 1 }, "ab-bad-ending-assets" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/AB Bad Ending Assets/mod.json", @@ -611,7 +690,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen02.png" ], - "downloadSize" : 17.923 + "downloadSize" : 17.923, + "githubStars" : 0 }, "ab-bad-ending-maps" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/AB Bad Ending Maps/mod.json", @@ -620,12 +700,14 @@ "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen02.png" ], - "downloadSize" : 1.337 + "downloadSize" : 1.337, + "githubStars" : 0 }, "warzyw-templates" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/warzyw-templates/vcmi-1.4/warzyw-templates/mod.json", "download" : "https://github.com/vcmi-mods/warzyw-templates/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.127 + "downloadSize" : 0.127, + "githubStars" : 0 }, "wyrmsun-boats" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.4/wyrmsun-boats/mod.json", @@ -634,7 +716,8 @@ "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.4/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.4/screenshots/screen2.png" ], - "downloadSize" : 1.795 + "downloadSize" : 1.795, + "githubStars" : 0 }, "ensrick-portraits" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.4/ensrick-portraits/mod.json", @@ -643,7 +726,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/main/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/main/screenshots/screen02.png" ], - "downloadSize" : 12.268 + "downloadSize" : 12.268, + "githubStars" : 0 }, "morns-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.4/morns-battlefields/mod.json", @@ -651,7 +735,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.4/screenshots/01.png" ], - "downloadSize" : 23.788 + "downloadSize" : 23.788, + "githubStars" : 0 }, "towns-new-views" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.4/towns-new-views/mod.json", @@ -662,7 +747,8 @@ "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen4.png" ], - "downloadSize" : 3.257 + "downloadSize" : 3.257, + "githubStars" : 0 }, "invisible-man" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/invisible-man/vcmi-1.4/invisible-man/mod.json", @@ -670,7 +756,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/invisible-man/vcmi-1.3/screenshots/screen01.png" ], - "downloadSize" : 1.078 + "downloadSize" : 1.078, + "githubStars" : 0 }, "campaings-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.4/campaings-pack/mod.json", @@ -678,12 +765,14 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.3/screenshots/screen01.png" ], - "downloadSize" : 11.223 + "downloadSize" : 11.223, + "githubStars" : 0 }, "dydzios-map-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/dydzios-map-pack/vcmi-1.4/dydzios-map-pack/mod.json", "download" : "https://github.com/vcmi-mods/dydzios-map-pack/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 49.291 + "downloadSize" : 49.291, + "githubStars" : 1 }, "h3-campaigns-remade" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.4/h3-campaigns-remade/mod.json", @@ -693,12 +782,14 @@ "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen03.png" ], - "downloadSize" : 5.915 + "downloadSize" : 5.915, + "githubStars" : 0 }, "zefix" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/zefix/vcmi-1.4/ZEfix/mod.json", "download" : "https://github.com/vcmi-mods/zefix/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.002 + "downloadSize" : 0.002, + "githubStars" : 0 }, "test-map-spells-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.4/test-map-spells-mod/mod.json", @@ -708,7 +799,8 @@ "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen03.png" ], - "downloadSize" : 2.12 + "downloadSize" : 2.12, + "githubStars" : 0 }, "third-upgrades" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.5/third-upgrades/mod.json", @@ -719,12 +811,14 @@ "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.5/screenshots/screen03.png", "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.5/screenshots/screen04.png" ], - "downloadSize" : 35.053 + "downloadSize" : 35.053, + "githubStars" : 1 }, "pah3-singleplayer-tournament" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.3/pah3-singleplayer-tournament/mod.json", "download" : "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.3.zip", - "downloadSize" : 10.305 + "downloadSize" : 10.305, + "githubStars" : 0 }, "mighty-heroes-iii" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/mighty-heroes-iii/mod.json", @@ -734,22 +828,26 @@ "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/02.png", "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/03.png" ], - "downloadSize" : 14.355 + "downloadSize" : 14.355, + "githubStars" : 0 }, "erathian-font" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.4/erathian-font/mod.json", "download" : "https://github.com/vcmi-mods/erathian-font/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.159 + "downloadSize" : 0.159, + "githubStars" : 0 }, "kartenarchiv" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/kartenarchiv-mappack/vcmi-1.4/kartenarchiv/mod.json", "download" : "https://github.com/vcmi-mods/kartenarchiv-mappack/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 43.669 + "downloadSize" : 43.669, + "githubStars" : 0 }, "vampires-only-gameplay-enhancements" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vampires-only-gameplay-enhancements/vcmi-1.4/vampiresOnlyGameplayEnhancements/mod.json", "download" : "https://github.com/vcmi-mods/vampires-only-gameplay-enhancements/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 3.198 + "downloadSize" : 3.198, + "githubStars" : 0 }, "farriery-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/farriery-town/mod.json", @@ -762,7 +860,8 @@ "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/Spoiled Land.png", "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/screenshots/screen06.png" ], - "downloadSize" : 34.732 + "downloadSize" : 34.732, + "githubStars" : 0 }, "ai-loading-screens" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/ai-loading-screens/mod.json", @@ -772,7 +871,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/screenshots/screen03.png" ], - "downloadSize" : 13.429 + "downloadSize" : 13.429, + "githubStars" : 0 }, "h3Evo" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/mod.json", @@ -786,12 +886,14 @@ "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Overview.png", "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Recruting Screen.png" ], - "downloadSize" : 7.608 + "downloadSize" : 7.608, + "githubStars" : 0 }, "small-era-mods" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/small-era-mods/vcmi-1.4/small-era-mods/mod.json", "download" : "https://github.com/vcmi-mods/small-era-mods/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 15.073 + "downloadSize" : 15.073, + "githubStars" : 0 }, "flugel-creature" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/flugel/mod.json", @@ -801,17 +903,20 @@ "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/screenshots/Screen2.png", "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/screenshots/Screen3.png" ], - "downloadSize" : 49.435 + "downloadSize" : 49.435, + "githubStars" : 1 }, "phoenix-as-a-dream" : { "mod" : "https://raw.githubusercontent.com/kdmcser/phoenix-as-a-dream/1.0.0/mod.json", "download" : "https://github.com/kdmcser/phoenix-as-a-dream/archive/refs/heads/master.zip", - "downloadSize" : 2.413 + "downloadSize" : 2.413, + "githubStars" : 0 }, "extreme-ai" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/extreme-ai/vcmi-1.4/extreme-ai/mod.json", "download" : "https://github.com/vcmi-mods/extreme-ai/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.002 + "downloadSize" : 0.002, + "githubStars" : 0 }, "object-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.4/object-pack/mod.json", @@ -820,27 +925,32 @@ "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.4/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.4/screenshots/screen2.png" ], - "downloadSize" : 0.571 + "downloadSize" : 0.571, + "githubStars" : 0 }, "tavern-invite" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tavern-invite/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/tavern-invite/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 0.001 + "downloadSize" : 0.001, + "githubStars" : 0 }, "ultimate-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ultimate-balance/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/ultimate-balance/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 0.01 + "downloadSize" : 0.01, + "githubStars" : 0 }, "pvp-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pvp-balance/vcmi-1.5/mod.json", "download" : "https://github.com/vcmi-mods/pvp-balance/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 1.243 + "downloadSize" : 1.243, + "githubStars" : 0 }, "graphics-balance-music" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/graphics-balance-music/vcmi-1.5/graphics-balance-music/mod.json", "download" : "https://github.com/vcmi-mods/graphics-balance-music/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 78.105 + "downloadSize" : 78.105, + "githubStars" : 0 }, "new-summon-spells" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.5/new-summon-spells/mod.json", @@ -852,7 +962,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.5/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.5/screenshots/screen5.png" ], - "downloadSize" : 4.113 + "downloadSize" : 4.113, + "githubStars" : 0 }, "witchking-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/witchking-artifacts/mod.json", @@ -872,7 +983,8 @@ "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/screenshots/screen13.png" ], - "downloadSize" : 8.743 + "downloadSize" : 8.743, + "githubStars" : 0 }, "moon-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/moon-artifacts/mod.json", @@ -885,7 +997,8 @@ "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/screenshots/screen6.png" ], - "downloadSize" : 2.385 + "downloadSize" : 2.385, + "githubStars" : 0 }, "factory-creatures" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/factory-creatures/mod.json", @@ -896,7 +1009,8 @@ "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 38.259 + "downloadSize" : 38.259, + "githubStars" : 0 }, "luk3Z-templates-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/luk3Z-templates-pack/mod.json", @@ -910,6 +1024,7 @@ "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/screenshots/screen7.png" ], - "downloadSize" : 13.013 + "downloadSize" : 13.013, + "githubStars" : 0 } } diff --git a/vcmi-1.6.json b/vcmi-1.6.json index 6c914bd..ce4a28f 100644 --- a/vcmi-1.6.json +++ b/vcmi-1.6.json @@ -2,7 +2,8 @@ "vcmi-extras" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 2.74 + "downloadSize" : 2.74, + "githubStars" : 11 }, "hota" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.6/hota/mod.json", @@ -21,17 +22,20 @@ "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.6/screenshots/wiki2.png", "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.6/screenshots/wiki3.png" ], - "downloadSize" : 102.682 + "downloadSize" : 102.682, + "githubStars" : 42 }, "wake-of-gods" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 66.255 + "downloadSize" : 66.255, + "githubStars" : 18 }, "tides-of-war" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 29.255 + "downloadSize" : 29.255, + "githubStars" : 5 }, "courtyard" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.6/Courtyard/mod.json", @@ -49,12 +53,14 @@ "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.6/screenshots/lore_part1.png", "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.6/screenshots/lore_part2.png" ], - "downloadSize" : 32.837 + "downloadSize" : 32.837, + "githubStars" : 1 }, "neutral-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/neutral-heroes/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 2.613 + "downloadSize" : 2.613, + "githubStars" : 0 }, "new-old-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/new-old-heroes/mod.json", @@ -75,7 +81,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/screenshots/StandaloneMirael.png", "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/screenshots/StandaloneRavenwood.png", "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/screenshots/StandaloneWaerjak.png" - ] + ], + "githubStars" : 0 }, "asylum-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/asylum-town/vcmi-1.6/asylum-town/mod.json", @@ -89,7 +96,8 @@ "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" ], - "downloadSize" : 26.68 + "downloadSize" : 26.68, + "githubStars" : 0 }, "highlands-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.6/highlands-town/mod.json", @@ -99,7 +107,8 @@ "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 15.553 + "downloadSize" : 15.553, + "githubStars" : 1 }, "new-pavilion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.6/New Pavilion/mod.json", @@ -113,7 +122,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen7.png" ], - "downloadSize" : 65.122 + "downloadSize" : 65.122, + "githubStars" : 1 }, "cathedral-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.6/cathedral-town/mod.json", @@ -123,17 +133,20 @@ "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 13.14 + "downloadSize" : 13.14, + "githubStars" : 1 }, "death-valley-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/vcmi-1.6/death-valley-town/mod.json", "download" : "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 20.12 + "downloadSize" : 20.12, + "githubStars" : 0 }, "reworked-commanders" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/vcmi-1.6/reworked-commanders/mod.json", "download" : "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 9.266 + "downloadSize" : 9.266, + "githubStars" : 0 }, "andruids-expansion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.6/andruids-expansion/mod.json", @@ -153,87 +166,104 @@ "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.6/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.6/screenshots/screen13.png" ], - "downloadSize" : 7.77 + "downloadSize" : 7.77, + "githubStars" : 0 }, "german-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/german-translation/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/german-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 107.37 + "downloadSize" : 107.37, + "githubStars" : 1 }, "spanish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/spanish-translation/vcmi-1.6/spanish-translation/mod.json", "download" : "https://github.com/vcmi-mods/spanish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 79.316 + "downloadSize" : 79.316, + "githubStars" : 1 }, "korean-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/korean-translation/vcmi-1.6/korean-translation/mod.json", "download" : "https://github.com/vcmi-mods/korean-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 6.099 + "downloadSize" : 6.099, + "githubStars" : 0 }, "italian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/italian-translation/vcmi-1.6/italian-translation/mod.json", "download" : "https://github.com/vcmi-mods/italian-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 31.203 + "downloadSize" : 31.203, + "githubStars" : 0 }, "czech-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-translation/vcmi-1.6/czech-translation/mod.json", "download" : "https://github.com/vcmi-mods/czech-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 8.412 + "downloadSize" : 8.412, + "githubStars" : 0 }, "finnish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/finnish-translation/vcmi-1.6/finnish-translation/mod.json", "download" : "https://github.com/vcmi-mods/finnish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 4.427 + "downloadSize" : 4.427, + "githubStars" : 0 }, "portuguese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/portuguese-translation/vcmi-1.6/portuguese-translation/mod.json", "download" : "https://github.com/vcmi-mods/portuguese-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 11.613 + "downloadSize" : 11.613, + "githubStars" : 1 }, "swedish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/swedish-translation/vcmi-1.6/swedish-translation/mod.json", "download" : "https://github.com/vcmi-mods/swedish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 18.04 + "downloadSize" : 18.04, + "githubStars" : 0 }, "turkish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/turkish-translation/vcmi-1.6/turkish-translation/mod.json", "download" : "https://github.com/vcmi-mods/turkish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 6.503 + "downloadSize" : 6.503, + "githubStars" : 0 }, "hungarian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hungarian-translation/vcmi-1.6/hungarian-translation/mod.json", "download" : "https://github.com/vcmi-mods/hungarian-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 17.622 + "downloadSize" : 17.622, + "githubStars" : 0 }, "chinese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-translation/vcmi-1.6/chinese-translation/mod.json", "download" : "https://github.com/vcmi-mods/chinese-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 16.968 + "downloadSize" : 16.968, + "githubStars" : 2 }, "french-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/french-translation/vcmi-1.6/french-translation/mod.json", "download" : "https://github.com/vcmi-mods/french-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 51.114 + "downloadSize" : 51.114, + "githubStars" : 0 }, "vietnamese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vietnamese-translation/vcmi-1.6/vietnamese-translation/mod.json", "download" : "https://github.com/vcmi-mods/vietnamese-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 6.737 + "downloadSize" : 6.737, + "githubStars" : 1 }, "polish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/polish-translation/vcmi-1.6/polish-translation/mod.json", "download" : "https://github.com/vcmi-mods/polish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 182.005 + "downloadSize" : 182.005, + "githubStars" : 1 }, "vcmi-mod-ce-ukr" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.6/ce-ukr/mod.json", "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 11.031 + "downloadSize" : 11.031, + "githubStars" : 2 }, "h3-for-vcmi-englisation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.6/H3forVCMIenglisation/mod.json", "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 32.327 + "downloadSize" : 32.327, + "githubStars" : 1 }, "forge" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.6/forge/mod.json", @@ -246,27 +276,32 @@ "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.6/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.6/screenshots/screen6.png" ], - "downloadSize" : 20.144 + "downloadSize" : 20.144, + "githubStars" : 2 }, "ai trace" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip", - "downloadSize" : 0.001 + "downloadSize" : 0.001, + "githubStars" : 0 }, "demo support" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip", - "downloadSize" : 4.233 + "downloadSize" : 4.233, + "githubStars" : 1 }, "ai testing maps" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip", - "downloadSize" : 4.062 + "downloadSize" : 4.062, + "githubStars" : 0 }, "campaign-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.125 + "downloadSize" : 0.125, + "githubStars" : 0 }, "tarnum" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.6/tarnum/mod.json", @@ -278,7 +313,8 @@ "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.6/screenshots/tarnumPathfinder.png", "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.6/screenshots/tarnumCyborg2k.png" ], - "downloadSize" : 5.745 + "downloadSize" : 5.745, + "githubStars" : 0 }, "grove" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/grove/vcmi-1.6/Grove/mod.json", @@ -290,7 +326,8 @@ "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" ], - "downloadSize" : 19.627 + "downloadSize" : 19.627, + "githubStars" : 0 }, "combine-grail" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/combine-grail/vcmi-1.6/combine-grail/mod.json", @@ -298,7 +335,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" ], - "downloadSize" : 0.505 + "downloadSize" : 0.505, + "githubStars" : 0 }, "fairy-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/fairy-town/vcmi-1.6/fairy-town/mod.json", @@ -306,7 +344,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" ], - "downloadSize" : 21.759 + "downloadSize" : 21.759, + "githubStars" : 0 }, "haven-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.6/haven-town/mod.json", @@ -316,7 +355,8 @@ "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 14.682 + "downloadSize" : 14.682, + "githubStars" : 0 }, "ruins-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.6/ruins-town/mod.json", @@ -331,7 +371,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.6/screenshots/wiki2.png", "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.6/screenshots/wiki3.png" ], - "downloadSize" : 29.212 + "downloadSize" : 29.212, + "githubStars" : 1 }, "h3-themes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.6/h3-themes/mod.json", @@ -345,7 +386,8 @@ "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/screenshots/ToW-menu.png", "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/screenshots/WoG-menu.png" ], - "downloadSize" : 438.85 + "downloadSize" : 438.85, + "githubStars" : 0 }, "creatures-hidden-potential" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/vcmi-1.6/creatures-hidden-potential/mod.json", @@ -355,7 +397,8 @@ "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" ], - "downloadSize" : 3.518 + "downloadSize" : 3.518, + "githubStars" : 0 }, "tartarus-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/vcmi-1.6/tartarus-town/mod.json", @@ -368,7 +411,8 @@ "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" ], - "downloadSize" : 16.13 + "downloadSize" : 16.13, + "githubStars" : 0 }, "preserve-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/preserve-town/vcmi-1.6/preserve/mod.json", @@ -381,7 +425,8 @@ "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" ], - "downloadSize" : 21.539 + "downloadSize" : 21.539, + "githubStars" : 0 }, "abyss-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/abyss-town/vcmi-1.6/abyss-town/mod.json", @@ -393,7 +438,8 @@ "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" ], - "downloadSize" : 33.042 + "downloadSize" : 33.042, + "githubStars" : 0 }, "retreat-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.6/retreat-town/mod.json", @@ -403,7 +449,8 @@ "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 18.323 + "downloadSize" : 18.323, + "githubStars" : 0 }, "cetatea-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/vcmi-1.6/cetatea/mod.json", @@ -415,7 +462,8 @@ "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" ], - "downloadSize" : 14.453 + "downloadSize" : 14.453, + "githubStars" : 0 }, "andruids-spell-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/vcmi-1.6/andruids-spell-balance/mod.json", @@ -423,7 +471,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" ], - "downloadSize" : 0.811 + "downloadSize" : 0.811, + "githubStars" : 0 }, "new-old-spells-plus" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/vcmi-1.6/newOldSpellsPlus/mod.json", @@ -431,7 +480,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" ], - "downloadSize" : 2.104 + "downloadSize" : 2.104, + "githubStars" : 0 }, "portraits-packs" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/vcmi-1.6/Portaits%20packs/mod.json", @@ -442,13 +492,15 @@ "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" ], - "downloadSize" : 26.287 + "downloadSize" : 26.287, + "githubStars" : 0 }, "heroes-iii-orchestra" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-iii-orchestra/vcmi-1.6/Heroes%20III%20Orchestra/mod.json", "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/vcmi-1.6.zip", "screenshots" : [], - "downloadSize" : 10.243 + "downloadSize" : 10.243, + "githubStars" : 2 }, "russian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.6/russian-translation/mod.json", @@ -462,7 +514,8 @@ "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.6/screenshots/sc-6.png", "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.6/screenshots/sc-7.png" ], - "downloadSize" : 57.642 + "downloadSize" : 57.642, + "githubStars" : 0 }, "new-interface-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.6/New%20Interface%20Mod/mod.json", @@ -476,7 +529,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.6/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.6/screenshots/screen7.png" ], - "downloadSize" : 35.767 + "downloadSize" : 35.767, + "githubStars" : 0 }, "medusa-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/medusa-mod/refs/heads/main/Medusa%20Mod/mod.json", @@ -486,7 +540,8 @@ "https://raw.githubusercontent.com/vcmi-mods/medusa-mod/refs/heads/main/Screenshots/Screenshot_20250105_010319.png", "https://raw.githubusercontent.com/vcmi-mods/medusa-mod/refs/heads/main/Screenshots/Screenshot_20250105_010533.png" ], - "downloadSize" : 20.024 + "downloadSize" : 20.024, + "githubStars" : 0 }, "hi-rez-menu" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/vcmi-1.6/new-menu/mod.json", @@ -494,7 +549,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" ], - "downloadSize" : 8.12 + "downloadSize" : 8.12, + "githubStars" : 0 }, "greenhouse-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/vcmi-1.6/Greenhouse/mod.json", @@ -505,22 +561,26 @@ "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" ], - "downloadSize" : 14.232 + "downloadSize" : 14.232, + "githubStars" : 0 }, "lotrd-townscreens" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/lotrd-townscreens/vcmi-1.6/lotrd-townscreens/mod.json", "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 13.253 + "downloadSize" : 13.253, + "githubStars" : 0 }, "boost-ai" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/boost-ai/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/boost-ai/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.008 + "downloadSize" : 0.008, + "githubStars" : 0 }, "an-expansion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/an-expansion/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/an-expansion/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 6.779 + "downloadSize" : 6.779, + "githubStars" : 1 }, "refugee-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.6/refugee-town/mod.json", @@ -533,7 +593,8 @@ "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.6/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.6/screenshots/screen7.png" ], - "downloadSize" : 34.503 + "downloadSize" : 34.503, + "githubStars" : 0 }, "asphalt-terrain" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.6/asphalt-terrain/mod.json", @@ -542,7 +603,8 @@ "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen02.png" ], - "downloadSize" : 14.444 + "downloadSize" : 14.444, + "githubStars" : 1 }, "newtown-terrains" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.6/newtown-terrains/mod.json", @@ -553,7 +615,8 @@ "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen13.png" ], - "downloadSize" : 51.856 + "downloadSize" : 51.856, + "githubStars" : 1 }, "forge2k" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.6/Forge2k/mod.json", @@ -562,7 +625,8 @@ "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/screenshots/screen02.png" ], - "downloadSize" : 21.846 + "downloadSize" : 21.846, + "githubStars" : 1 }, "ab-bad-ending-assets" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.6/AB Bad Ending Assets/mod.json", @@ -571,7 +635,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen02.png" ], - "downloadSize" : 16.482 + "downloadSize" : 16.482, + "githubStars" : 0 }, "ab-bad-ending-maps" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.6/AB Bad Ending Maps/mod.json", @@ -580,12 +645,14 @@ "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen02.png" ], - "downloadSize" : 1.342 + "downloadSize" : 1.342, + "githubStars" : 0 }, "warzyw-templates" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/warzyw-templates/vcmi-1.6/warzyw-templates/mod.json", "download" : "https://github.com/vcmi-mods/warzyw-templates/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.127 + "downloadSize" : 0.127, + "githubStars" : 0 }, "ensrick-portraits" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.6/ensrick-portraits/mod.json", @@ -628,7 +695,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.6/screenshots/Verdish.png", "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.6/screenshots/Yog.png" ], - "downloadSize" : 81.956 + "downloadSize" : 81.956, + "githubStars" : 0 }, "morns-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.6/morns-battlefields/mod.json", @@ -636,7 +704,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.4/screenshots/01.png" ], - "downloadSize" : 23.788 + "downloadSize" : 23.788, + "githubStars" : 0 }, "towns-new-views" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.6/towns-new-views/mod.json", @@ -647,7 +716,8 @@ "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen4.png" ], - "downloadSize" : 3.257 + "downloadSize" : 3.257, + "githubStars" : 0 }, "campaings-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.6/campaings-pack/mod.json", @@ -655,12 +725,14 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.3/screenshots/screen01.png" ], - "downloadSize" : 11.223 + "downloadSize" : 11.223, + "githubStars" : 0 }, "dydzios-map-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/dydzios-map-pack/vcmi-1.6/dydzios-map-pack/mod.json", "download" : "https://github.com/vcmi-mods/dydzios-map-pack/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 54.304 + "downloadSize" : 54.304, + "githubStars" : 1 }, "h3-campaigns-remade" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.6/h3-campaigns-remade/mod.json", @@ -670,12 +742,14 @@ "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen03.png" ], - "downloadSize" : 5.915 + "downloadSize" : 5.915, + "githubStars" : 0 }, "zefix" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/zefix/vcmi-1.6/ZEfix/mod.json", "download" : "https://github.com/vcmi-mods/zefix/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.002 + "downloadSize" : 0.002, + "githubStars" : 0 }, "adventure-spells-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/adventure-spells-pack/vcmi-1.6/adventure-spells-pack/mod.json", @@ -687,7 +761,8 @@ "https://raw.githubusercontent.com/vcmi-mods/adventure-spells-pack/vcmi-1.6/screenshots/screen04.png", "https://raw.githubusercontent.com/vcmi-mods/adventure-spells-pack/vcmi-1.6/screenshots/screen05.png" ], - "downloadSize" : 3.246 + "downloadSize" : 3.246, + "githubStars" : 0 }, "third-upgrades" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.6/third-upgrades/mod.json", @@ -700,7 +775,8 @@ "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.6/screenshots/screen05.png", "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.6/screenshots/screen06.png" ], - "downloadSize" : 74.657 + "downloadSize" : 74.657, + "githubStars" : 1 }, "mighty-heroes-iii" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.6/mighty-heroes-iii/mod.json", @@ -710,7 +786,8 @@ "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/02.png", "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/03.png" ], - "downloadSize" : 19.214 + "downloadSize" : 19.214, + "githubStars" : 0 }, "erathian-font" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.6/erathian-font/mod.json", @@ -720,17 +797,20 @@ "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 2.449 + "downloadSize" : 2.449, + "githubStars" : 0 }, "kartenarchiv" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/kartenarchiv-mappack/vcmi-1.6/kartenarchiv/mod.json", "download" : "https://github.com/vcmi-mods/kartenarchiv-mappack/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 71.573 + "downloadSize" : 71.573, + "githubStars" : 0 }, "vampires-only-gameplay-enhancements" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vampires-only-gameplay-enhancements/vcmi-1.6/vampiresOnlyGameplayEnhancements/mod.json", "download" : "https://github.com/vcmi-mods/vampires-only-gameplay-enhancements/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 3.204 + "downloadSize" : 3.204, + "githubStars" : 0 }, "farriery-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.6/farriery-town/mod.json", @@ -743,7 +823,8 @@ "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.6/Screenshots/Spoiled Land.png", "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.6/screenshots/screen06.png" ], - "downloadSize" : 34.733 + "downloadSize" : 34.733, + "githubStars" : 0 }, "h3Evo" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/H3Evo/vcmi-1.6/mod.json", @@ -757,22 +838,26 @@ "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Overview.png", "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Recruting Screen.png" ], - "downloadSize" : 7.641 + "downloadSize" : 7.641, + "githubStars" : 0 }, "small-era-mods" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/small-era-mods/vcmi-1.6/small-era-mods/mod.json", "download" : "https://github.com/vcmi-mods/small-era-mods/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 16.098 + "downloadSize" : 16.098, + "githubStars" : 0 }, "phoenix-as-a-dream" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/phoenix-as-a-dream/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/phoenix-as-a-dream/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 7.726 + "downloadSize" : 7.726, + "githubStars" : 0 }, "extreme-ai" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/extreme-ai/vcmi-1.6/extreme-ai/mod.json", "download" : "https://github.com/vcmi-mods/extreme-ai/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.003 + "downloadSize" : 0.003, + "githubStars" : 0 }, "object-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.6/object-pack/mod.json", @@ -786,22 +871,26 @@ "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.6/screenshots/screen06.png", "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.6/screenshots/screen07.png" ], - "downloadSize" : 6.407 + "downloadSize" : 6.407, + "githubStars" : 0 }, "tavern-invite" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tavern-invite/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/tavern-invite/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.001 + "downloadSize" : 0.001, + "githubStars" : 0 }, "ultimate-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/simple-game-balance/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/simple-game-balance/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.01 + "downloadSize" : 0.01, + "githubStars" : 0 }, "graphics-balance-music" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/graphics-balance-music/vcmi-1.6/graphics-balance-music/mod.json", "download" : "https://github.com/vcmi-mods/graphics-balance-music/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 119.299 + "downloadSize" : 119.299, + "githubStars" : 0 }, "new-summon-spells" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.6/new-summon-spells/mod.json", @@ -813,7 +902,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.5/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.5/screenshots/screen5.png" ], - "downloadSize" : 4.212 + "downloadSize" : 4.212, + "githubStars" : 0 }, "witchking-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.6/witchking-artifacts/mod.json", @@ -833,7 +923,8 @@ "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/screenshots/screen13.png" ], - "downloadSize" : 8.755 + "downloadSize" : 8.755, + "githubStars" : 0 }, "moon-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.6/moon-artifacts/mod.json", @@ -846,7 +937,8 @@ "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/screenshots/screen6.png" ], - "downloadSize" : 2.391 + "downloadSize" : 2.391, + "githubStars" : 0 }, "factory-creatures" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.6/factory-creatures/mod.json", @@ -857,7 +949,8 @@ "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 39.471 + "downloadSize" : 39.471, + "githubStars" : 0 }, "luk3Z-templates-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.6/luk3Z-templates-pack/mod.json", @@ -871,7 +964,8 @@ "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/screenshots/screen7.png" ], - "downloadSize" : 13.013 + "downloadSize" : 13.013, + "githubStars" : 0 }, "new-monsters-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-monsters-pack/vcmi-1.6/new-monsters-pack/mod.json", @@ -888,17 +982,20 @@ "https://raw.githubusercontent.com/vcmi-mods/new-monsters-pack/vcmi-1.6/screenshots/screen09.png", "https://raw.githubusercontent.com/vcmi-mods/new-monsters-pack/vcmi-1.6/screenshots/screen10.png" ], - "downloadSize" : 205.645 + "downloadSize" : 205.645, + "githubStars" : 0 }, "czech-map-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-map-pack/vcmi-1.6/czech-map-pack/mod.json", "download" : "https://github.com/vcmi-mods/czech-map-pack/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 13.225 + "downloadSize" : 13.225, + "githubStars" : 0 }, "modder-tools-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/modder-tools-pack/main/modder-tools-pack/mod.json", "download" : "https://github.com/vcmi-mods/modder-tools-pack/archive/refs/heads/main.zip", - "downloadSize" : 84.286 + "downloadSize" : 84.286, + "githubStars" : 0 }, "heroes-o-pedia" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-o-pedia/vcmi-1.6/heroes-o-pedia/mod.json", @@ -908,7 +1005,8 @@ "https://raw.githubusercontent.com/vcmi-mods/heroes-o-pedia/vcmi-1.6/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/heroes-o-pedia/vcmi-1.6/screenshots/screen03.png" ], - "downloadSize" : 3.525 + "downloadSize" : 3.525, + "githubStars" : 1 }, "chronicles-enhanced" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chronicles-enhanced/vcmi-1.6/chronicles-enhanced/mod.json", @@ -918,12 +1016,14 @@ "https://raw.githubusercontent.com/vcmi-mods/chronicles-enhanced/vcmi-1.6/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/chronicles-enhanced/vcmi-1.6/screenshots/screen03.png" ], - "downloadSize" : 6.083 + "downloadSize" : 6.083, + "githubStars" : 0 }, "overall-ai-bonus" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/overall-ai-bonus/vcmi-1.6/overall-ai-bonus/mod.json", "download" : "https://github.com/vcmi-mods/overall-ai-bonus/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.063 + "downloadSize" : 0.063, + "githubStars" : 0 }, "vivid-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vivid-battlefields/vcmi-1.6/vivid-battlefields/mod.json", @@ -934,7 +1034,8 @@ "https://raw.githubusercontent.com/vcmi-mods/vivid-battlefields/vcmi-1.6/screenshots/screen03.png", "https://raw.githubusercontent.com/vcmi-mods/vivid-battlefields/vcmi-1.6/screenshots/screen04.png" ], - "downloadSize" : 34.905 + "downloadSize" : 34.905, + "githubStars" : 0 }, "fused-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/fused-artifacts/main/fused-artifacts/mod.json", @@ -942,7 +1043,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/fused-artifacts/main/screenshots/screen01.png" ], - "downloadSize" : 0.928 + "downloadSize" : 0.928, + "githubStars" : 0 }, "immortal-cultivation-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/immortal-cultivation-heroes/vcmi-1.6/lmods/mod.json", @@ -952,27 +1054,32 @@ "https://raw.githubusercontent.com/vcmi-mods/immortal-cultivation-heroes/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/immortal-cultivation-heroes/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 21.928 + "downloadSize" : 21.928, + "githubStars" : 0 }, "heroes3-extended-soundtrack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes3-extended-soundtrack/main/mod.json", "download" : "https://github.com/vcmi-mods/heroes3-extended-soundtrack/archive/refs/heads/main.zip", - "downloadSize" : 248.28 + "downloadSize" : 248.28, + "githubStars" : 0 }, "hq-music" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hq-music/main/mod.json", "download" : "https://github.com/vcmi-mods/hq-music/archive/refs/heads/main.zip", - "downloadSize" : 227.359 + "downloadSize" : 227.359, + "githubStars" : 0 }, "new-sfx-sounds" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-sfx-sounds/main/mod.json", "download" : "https://github.com/vcmi-mods/new-sfx-sounds/archive/refs/heads/main.zip", - "downloadSize" : 61.911 + "downloadSize" : 61.911, + "githubStars" : 0 }, "alternate-townscreens" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/alternate-townscreens/vcmi-1.6/alternate-townscreens/mod.json", "download" : "https://github.com/vcmi-mods/alternate-townscreens/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 60.407 + "downloadSize" : 60.407, + "githubStars" : 0 }, "a-song-of-ice-and-fire" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/a-song-of-ice-and-fire/main/a-song-of-ice-and-fire/mod.json", @@ -982,12 +1089,14 @@ "https://raw.githubusercontent.com/vcmi-mods/a-song-of-ice-and-fire/main/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/a-song-of-ice-and-fire/main/screenshots/screen3.png" ], - "downloadSize" : 10.694 + "downloadSize" : 10.694, + "githubStars" : 0 }, "movement-arrows" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/movement-arrows/main/mod.json", "download" : "https://github.com/vcmi-mods/movement-arrows/archive/refs/heads/main.zip", - "downloadSize" : 0.1 + "downloadSize" : 0.1, + "githubStars" : 0 }, "ark-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ark-town/vcmi-1.6/ark-town/mod.json", @@ -996,7 +1105,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ark-town/vcmi-1.6/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/ark-town/vcmi-1.6/screenshots/screen2.png" ], - "downloadSize" : 16.493 + "downloadSize" : 16.493, + "githubStars" : 1 }, "kremlin-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/kremlin-town/vcmi-1.6/kremlin-town/mod.json", @@ -1008,12 +1118,14 @@ "https://raw.githubusercontent.com/vcmi-mods/kremlin-town/vcmi-1.6/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/kremlin-town/vcmi-1.6/screenshots/screen6.png" ], - "downloadSize" : 45.198 + "downloadSize" : 45.198, + "githubStars" : 1 }, "ai-disable-speedups" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-disable-speedups/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/ai-disable-speedups/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.002 + "downloadSize" : 0.002, + "githubStars" : 0 }, "new-skills-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-skills-pack/main/new-skills-pack/mod.json", @@ -1022,7 +1134,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-skills-pack/main/ScreenShots/Basic Skills.bmp", "https://raw.githubusercontent.com/vcmi-mods/new-skills-pack/main/ScreenShots/Heroes.bmp" ], - "downloadSize" : 3.297 + "downloadSize" : 3.297, + "githubStars" : 0 }, "custom-templates" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/custom-templates/vcmi-1.6/custom-templates/mod.json", @@ -1030,27 +1143,32 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/custom-templates/vcmi-1.6/screenshots/screen1.png" ], - "downloadSize" : 9.183 + "downloadSize" : 9.183, + "githubStars" : 0 }, "cheat-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cheat-mod/vcmi-1.6/cheat-mod/mod.json", "download" : "https://github.com/vcmi-mods/cheat-mod/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.005 + "downloadSize" : 0.005, + "githubStars" : 0 }, "equal-stats" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/equal-stats/vcmi-1.6/equal-stats/mod.json", "download" : "https://github.com/vcmi-mods/equal-stats/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.012 + "downloadSize" : 0.012, + "githubStars" : 0 }, "chinese-maps-collection" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-maps-collection/main/chinese-maps-collection/mod.json", "download" : "https://github.com/vcmi-mods/chinese-maps-collection/archive/refs/heads/main.zip", - "downloadSize" : 104.996 + "downloadSize" : 104.996, + "githubStars" : 0 }, "pvp-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pvp-balance/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/pvp-balance/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 14.451 + "downloadSize" : 14.451, + "githubStars" : 0 }, "pah3-singleplayer-tournament" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/pah3-singleplayer-tournament/mod.json", @@ -1060,12 +1178,14 @@ "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 2.313 + "downloadSize" : 2.313, + "githubStars" : 0 }, "diverse-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/diverse-battlefields/vcmi-1.7/diverse-battlefields/mod.json", "download" : "https://github.com/vcmi-mods/diverse-battlefields/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 269.963 + "downloadSize" : 269.963, + "githubStars" : 0 }, "hd-remastered" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hd-remastered/main/hd-remastered/mod.json", @@ -1074,6 +1194,7 @@ "https://raw.githubusercontent.com/vcmi-mods/hd-remastered/main/screenshots/OH3.png", "https://raw.githubusercontent.com/vcmi-mods/hd-remastered/main/screenshots/HDRemastered.png" ], - "downloadSize" : 148.435 + "downloadSize" : 148.435, + "githubStars" : 0 } } diff --git a/vcmi-1.7.json b/vcmi-1.7.json index d713ad6..6baf91a 100644 --- a/vcmi-1.7.json +++ b/vcmi-1.7.json @@ -3,7 +3,8 @@ "vcmi-extras" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 7.354 + "downloadSize" : 7.354, + "githubStars" : 11 }, "hota" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.7/hota/mod.json", @@ -22,17 +23,20 @@ "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.6/screenshots/wiki2.png", "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.6/screenshots/wiki3.png" ], - "downloadSize" : 244.036 + "downloadSize" : 244.036, + "githubStars" : 42 }, "wake-of-gods" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 89.104 + "downloadSize" : 89.104, + "githubStars" : 18 }, "tides-of-war" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 28.459 + "downloadSize" : 28.459, + "githubStars" : 5 }, "courtyard" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.7/Courtyard/mod.json", @@ -50,12 +54,14 @@ "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.6/screenshots/lore_part1.png", "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.6/screenshots/lore_part2.png" ], - "downloadSize" : 32.966 + "downloadSize" : 32.966, + "githubStars" : 1 }, "neutral-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/neutral-heroes/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 2.615 + "downloadSize" : 2.615, + "githubStars" : 0 }, "new-old-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.7/new-old-heroes/mod.json", @@ -76,7 +82,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/screenshots/StandaloneMirael.png", "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/screenshots/StandaloneRavenwood.png", "https://raw.githubusercontent.com/vcmi-mods/new-old-heroes/vcmi-1.6/screenshots/StandaloneWaerjak.png" - ] + ], + "githubStars" : 0 }, "asylum-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/asylum-town/vcmi-1.7/asylum-town/mod.json", @@ -90,7 +97,8 @@ "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" ], - "downloadSize" : 26.722 + "downloadSize" : 26.722, + "githubStars" : 0 }, "highlands-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.7/highlands-town/mod.json", @@ -100,7 +108,8 @@ "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 15.311 + "downloadSize" : 15.311, + "githubStars" : 1 }, "new-pavilion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.7/New Pavilion/mod.json", @@ -114,7 +123,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen7.png" ], - "downloadSize" : 62.089 + "downloadSize" : 62.089, + "githubStars" : 1 }, "cathedral-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.7/cathedral-town/mod.json", @@ -124,17 +134,20 @@ "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 13.186 + "downloadSize" : 13.186, + "githubStars" : 1 }, "death-valley-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/vcmi-1.7/death-valley-town/mod.json", "download" : "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 19.872 + "downloadSize" : 19.872, + "githubStars" : 0 }, "reworked-commanders" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/vcmi-1.7/reworked-commanders/mod.json", "download" : "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 9.266 + "downloadSize" : 9.266, + "githubStars" : 0 }, "andruids-expansion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.7/andruids-expansion/mod.json", @@ -154,87 +167,104 @@ "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.6/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.6/screenshots/screen13.png" ], - "downloadSize" : 7.797 + "downloadSize" : 7.797, + "githubStars" : 0 }, "german-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/german-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/german-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 107.37 + "downloadSize" : 107.37, + "githubStars" : 1 }, "spanish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/spanish-translation/vcmi-1.6/spanish-translation/mod.json", "download" : "https://github.com/vcmi-mods/spanish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 79.316 + "downloadSize" : 79.316, + "githubStars" : 1 }, "korean-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/korean-translation/vcmi-1.6/korean-translation/mod.json", "download" : "https://github.com/vcmi-mods/korean-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 6.099 + "downloadSize" : 6.099, + "githubStars" : 0 }, "italian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/italian-translation/vcmi-1.6/italian-translation/mod.json", "download" : "https://github.com/vcmi-mods/italian-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 31.203 + "downloadSize" : 31.203, + "githubStars" : 0 }, "czech-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-translation/vcmi-1.6/czech-translation/mod.json", "download" : "https://github.com/vcmi-mods/czech-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 8.412 + "downloadSize" : 8.412, + "githubStars" : 0 }, "finnish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/finnish-translation/vcmi-1.6/finnish-translation/mod.json", "download" : "https://github.com/vcmi-mods/finnish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 4.427 + "downloadSize" : 4.427, + "githubStars" : 0 }, "portuguese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/portuguese-translation/vcmi-1.6/portuguese-translation/mod.json", "download" : "https://github.com/vcmi-mods/portuguese-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 11.613 + "downloadSize" : 11.613, + "githubStars" : 1 }, "swedish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/swedish-translation/vcmi-1.6/swedish-translation/mod.json", "download" : "https://github.com/vcmi-mods/swedish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 18.04 + "downloadSize" : 18.04, + "githubStars" : 0 }, "turkish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/turkish-translation/vcmi-1.6/turkish-translation/mod.json", "download" : "https://github.com/vcmi-mods/turkish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 6.503 + "downloadSize" : 6.503, + "githubStars" : 0 }, "hungarian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hungarian-translation/vcmi-1.6/hungarian-translation/mod.json", "download" : "https://github.com/vcmi-mods/hungarian-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 17.622 + "downloadSize" : 17.622, + "githubStars" : 0 }, "chinese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-translation/vcmi-1.6/chinese-translation/mod.json", "download" : "https://github.com/vcmi-mods/chinese-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 16.968 + "downloadSize" : 16.968, + "githubStars" : 2 }, "french-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/french-translation/vcmi-1.6/french-translation/mod.json", "download" : "https://github.com/vcmi-mods/french-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 51.114 + "downloadSize" : 51.114, + "githubStars" : 0 }, "vietnamese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vietnamese-translation/vcmi-1.7/vietnamese-translation/mod.json", "download" : "https://github.com/vcmi-mods/vietnamese-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 6.05 + "downloadSize" : 6.05, + "githubStars" : 1 }, "polish-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/polish-translation/vcmi-1.6/polish-translation/mod.json", "download" : "https://github.com/vcmi-mods/polish-translation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 182.005 + "downloadSize" : 182.005, + "githubStars" : 1 }, "vcmi-mod-ce-ukr" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.6/ce-ukr/mod.json", "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 11.031 + "downloadSize" : 11.031, + "githubStars" : 2 }, "h3-for-vcmi-englisation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.6/H3forVCMIenglisation/mod.json", "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 32.327 + "downloadSize" : 32.327, + "githubStars" : 1 }, "forge" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.7/forge/mod.json", @@ -247,27 +277,32 @@ "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.6/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.6/screenshots/screen6.png" ], - "downloadSize" : 31.39 + "downloadSize" : 31.39, + "githubStars" : 2 }, "ai trace" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip", - "downloadSize" : 0.001 + "downloadSize" : 0.001, + "githubStars" : 0 }, "demo-support" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip", - "downloadSize" : 4.233 + "downloadSize" : 4.233, + "githubStars" : 1 }, "ai testing maps" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip", - "downloadSize" : 4.062 + "downloadSize" : 4.062, + "githubStars" : 0 }, "campaign-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 0.131 + "downloadSize" : 0.131, + "githubStars" : 0 }, "tarnum" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.7/tarnum/mod.json", @@ -279,7 +314,8 @@ "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.6/screenshots/tarnumPathfinder.png", "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.6/screenshots/tarnumCyborg2k.png" ], - "downloadSize" : 5.74 + "downloadSize" : 5.74, + "githubStars" : 0 }, "grove" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/grove/vcmi-1.7/Grove/mod.json", @@ -291,7 +327,8 @@ "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" ], - "downloadSize" : 20.029 + "downloadSize" : 20.029, + "githubStars" : 0 }, "combine-grail" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/combine-grail/vcmi-1.7/combine-grail/mod.json", @@ -299,7 +336,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" ], - "downloadSize" : 0.506 + "downloadSize" : 0.506, + "githubStars" : 0 }, "fairy-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/fairy-town/vcmi-1.7/fairy-town/mod.json", @@ -307,7 +345,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" ], - "downloadSize" : 21.83 + "downloadSize" : 21.83, + "githubStars" : 0 }, "haven-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.7/haven-town/mod.json", @@ -317,7 +356,8 @@ "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 14.299 + "downloadSize" : 14.299, + "githubStars" : 0 }, "ruins-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.7/ruins-town/mod.json", @@ -332,7 +372,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.6/screenshots/wiki2.png", "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.6/screenshots/wiki3.png" ], - "downloadSize" : 29.077 + "downloadSize" : 29.077, + "githubStars" : 1 }, "h3-themes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.6/h3-themes/mod.json", @@ -346,7 +387,8 @@ "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/screenshots/ToW-menu.png", "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.5/screenshots/WoG-menu.png" ], - "downloadSize" : 438.85 + "downloadSize" : 438.85, + "githubStars" : 0 }, "creatures-hidden-potential" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/vcmi-1.7/creatures-hidden-potential/mod.json", @@ -356,7 +398,8 @@ "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" ], - "downloadSize" : 3.52 + "downloadSize" : 3.52, + "githubStars" : 0 }, "tartarus-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/vcmi-1.7/tartarus-town/mod.json", @@ -369,7 +412,8 @@ "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" ], - "downloadSize" : 16.419 + "downloadSize" : 16.419, + "githubStars" : 0 }, "preserve-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/preserve-town/vcmi-1.7/preserve/mod.json", @@ -382,7 +426,8 @@ "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" ], - "downloadSize" : 21.538 + "downloadSize" : 21.538, + "githubStars" : 0 }, "abyss-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/abyss-town/vcmi-1.7/abyss-town/mod.json", @@ -394,7 +439,8 @@ "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" ], - "downloadSize" : 33.005 + "downloadSize" : 33.005, + "githubStars" : 0 }, "retreat-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.7/retreat-town/mod.json", @@ -404,7 +450,8 @@ "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 18.484 + "downloadSize" : 18.484, + "githubStars" : 0 }, "cetatea-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/vcmi-1.7/cetatea/mod.json", @@ -416,7 +463,8 @@ "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" ], - "downloadSize" : 14.496 + "downloadSize" : 14.496, + "githubStars" : 0 }, "andruids-spell-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/vcmi-1.7/andruids-spell-balance/mod.json", @@ -424,7 +472,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" ], - "downloadSize" : 0.812 + "downloadSize" : 0.812, + "githubStars" : 0 }, "new-old-spells-plus" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/vcmi-1.7/newOldSpellsPlus/mod.json", @@ -432,7 +481,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" ], - "downloadSize" : 2.098 + "downloadSize" : 2.098, + "githubStars" : 0 }, "portraits-packs" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/vcmi-1.6/Portaits%20packs/mod.json", @@ -443,13 +493,15 @@ "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" ], - "downloadSize" : 26.287 + "downloadSize" : 26.287, + "githubStars" : 0 }, "heroes-iii-orchestra" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-iii-orchestra/vcmi-1.6/Heroes%20III%20Orchestra/mod.json", "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/vcmi-1.6.zip", "screenshots" : [], - "downloadSize" : 10.243 + "downloadSize" : 10.243, + "githubStars" : 2 }, "russian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.6/russian-translation/mod.json", @@ -463,7 +515,8 @@ "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.6/screenshots/sc-6.png", "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.6/screenshots/sc-7.png" ], - "downloadSize" : 57.642 + "downloadSize" : 57.642, + "githubStars" : 0 }, "new-interface-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.6/New%20Interface%20Mod/mod.json", @@ -477,7 +530,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.6/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.6/screenshots/screen7.png" ], - "downloadSize" : 35.767 + "downloadSize" : 35.767, + "githubStars" : 0 }, "medusa-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/medusa-mod/refs/heads/vcmi-1.7/Medusa%20Mod/mod.json", @@ -487,7 +541,8 @@ "https://raw.githubusercontent.com/vcmi-mods/medusa-mod/refs/heads/main/Screenshots/Screenshot_20250105_010319.png", "https://raw.githubusercontent.com/vcmi-mods/medusa-mod/refs/heads/main/Screenshots/Screenshot_20250105_010533.png" ], - "downloadSize" : 20.027 + "downloadSize" : 20.027, + "githubStars" : 0 }, "hi-rez-menu" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/vcmi-1.6/new-menu/mod.json", @@ -495,7 +550,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" ], - "downloadSize" : 8.12 + "downloadSize" : 8.12, + "githubStars" : 0 }, "greenhouse-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/vcmi-1.7/Greenhouse/mod.json", @@ -506,22 +562,26 @@ "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" ], - "downloadSize" : 14.238 + "downloadSize" : 14.238, + "githubStars" : 0 }, "lotrd-townscreens" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/lotrd-townscreens/vcmi-1.6/lotrd-townscreens/mod.json", "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 13.253 + "downloadSize" : 13.253, + "githubStars" : 0 }, "boost-ai" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/boost-ai/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/boost-ai/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.008 + "downloadSize" : 0.008, + "githubStars" : 0 }, "an-expansion" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/an-expansion/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/an-expansion/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 6.799 + "downloadSize" : 6.799, + "githubStars" : 1 }, "refugee-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.7/refugee-town/mod.json", @@ -534,7 +594,8 @@ "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.6/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.6/screenshots/screen7.png" ], - "downloadSize" : 34.501 + "downloadSize" : 34.501, + "githubStars" : 0 }, "asphalt-terrain" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.6/asphalt-terrain/mod.json", @@ -543,7 +604,8 @@ "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen02.png" ], - "downloadSize" : 14.444 + "downloadSize" : 14.444, + "githubStars" : 1 }, "newtown-terrains" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.6/newtown-terrains/mod.json", @@ -554,7 +616,8 @@ "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen13.png" ], - "downloadSize" : 51.856 + "downloadSize" : 51.856, + "githubStars" : 1 }, "forge2k" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.7/Forge2k/mod.json", @@ -563,7 +626,8 @@ "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.5/screenshots/screen02.png" ], - "downloadSize" : 21.928 + "downloadSize" : 21.928, + "githubStars" : 1 }, "ab-bad-ending-assets" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.7/AB Bad Ending Assets/mod.json", @@ -572,7 +636,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen02.png" ], - "downloadSize" : 16.516 + "downloadSize" : 16.516, + "githubStars" : 0 }, "ab-bad-ending-maps" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.7/AB Bad Ending Maps/mod.json", @@ -581,7 +646,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen01.png", "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen02.png" ], - "downloadSize" : 1.344 + "downloadSize" : 1.344, + "githubStars" : 0 }, "ensrick-portraits" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.6/ensrick-portraits/mod.json", @@ -624,7 +690,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.6/screenshots/Verdish.png", "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.6/screenshots/Yog.png" ], - "downloadSize" : 81.956 + "downloadSize" : 81.956, + "githubStars" : 0 }, "morns-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.6/morns-battlefields/mod.json", @@ -632,7 +699,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.4/screenshots/01.png" ], - "downloadSize" : 23.788 + "downloadSize" : 23.788, + "githubStars" : 0 }, "towns-new-views" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.6/towns-new-views/mod.json", @@ -643,7 +711,8 @@ "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen4.png" ], - "downloadSize" : 3.257 + "downloadSize" : 3.257, + "githubStars" : 0 }, "campaings-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.6/campaings-pack/mod.json", @@ -651,12 +720,14 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.3/screenshots/screen01.png" ], - "downloadSize" : 11.223 + "downloadSize" : 11.223, + "githubStars" : 0 }, "dydzios-map-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/dydzios-map-pack/vcmi-1.6/dydzios-map-pack/mod.json", "download" : "https://github.com/vcmi-mods/dydzios-map-pack/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 54.304 + "downloadSize" : 54.304, + "githubStars" : 1 }, "h3-campaigns-remade" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.6/h3-campaigns-remade/mod.json", @@ -666,12 +737,14 @@ "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen03.png" ], - "downloadSize" : 5.915 + "downloadSize" : 5.915, + "githubStars" : 0 }, "zefix" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/zefix/vcmi-1.6/ZEfix/mod.json", "download" : "https://github.com/vcmi-mods/zefix/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.002 + "downloadSize" : 0.002, + "githubStars" : 0 }, "adventure-spells-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/adventure-spells-pack/vcmi-1.7/adventure-spells-pack/mod.json", @@ -683,7 +756,8 @@ "https://raw.githubusercontent.com/vcmi-mods/adventure-spells-pack/vcmi-1.7/screenshots/screen04.png", "https://raw.githubusercontent.com/vcmi-mods/adventure-spells-pack/vcmi-1.7/screenshots/screen05.png" ], - "downloadSize" : 3.246 + "downloadSize" : 3.246, + "githubStars" : 0 }, "third-upgrades" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.6/third-upgrades/mod.json", @@ -696,7 +770,8 @@ "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.6/screenshots/screen05.png", "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.6/screenshots/screen06.png" ], - "downloadSize" : 74.657 + "downloadSize" : 74.657, + "githubStars" : 1 }, "mighty-heroes-iii" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.6/mighty-heroes-iii/mod.json", @@ -706,7 +781,8 @@ "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/02.png", "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/03.png" ], - "downloadSize" : 19.214 + "downloadSize" : 19.214, + "githubStars" : 0 }, "erathian-font" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.6/erathian-font/mod.json", @@ -716,17 +792,20 @@ "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 2.449 + "downloadSize" : 2.449, + "githubStars" : 0 }, "kartenarchiv" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/kartenarchiv-mappack/vcmi-1.6/kartenarchiv/mod.json", "download" : "https://github.com/vcmi-mods/kartenarchiv-mappack/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 71.573 + "downloadSize" : 71.573, + "githubStars" : 0 }, "vampires-only-gameplay-enhancements" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vampires-only-gameplay-enhancements/vcmi-1.6/vampiresOnlyGameplayEnhancements/mod.json", "download" : "https://github.com/vcmi-mods/vampires-only-gameplay-enhancements/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 3.204 + "downloadSize" : 3.204, + "githubStars" : 0 }, "farriery-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.7/farriery-town/mod.json", @@ -739,7 +818,8 @@ "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.6/Screenshots/Spoiled Land.png", "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.6/screenshots/screen06.png" ], - "downloadSize" : 34.277 + "downloadSize" : 34.277, + "githubStars" : 0 }, "h3Evo" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/H3Evo/vcmi-1.6/mod.json", @@ -753,22 +833,26 @@ "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Overview.png", "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Recruting Screen.png" ], - "downloadSize" : 7.641 + "downloadSize" : 7.641, + "githubStars" : 0 }, "small-era-mods" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/small-era-mods/vcmi-1.6/small-era-mods/mod.json", "download" : "https://github.com/vcmi-mods/small-era-mods/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 16.098 + "downloadSize" : 16.098, + "githubStars" : 0 }, "phoenix-as-a-dream" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/phoenix-as-a-dream/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/phoenix-as-a-dream/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 7.803 + "downloadSize" : 7.803, + "githubStars" : 0 }, "extreme-ai" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/extreme-ai/vcmi-1.6/extreme-ai/mod.json", "download" : "https://github.com/vcmi-mods/extreme-ai/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.003 + "downloadSize" : 0.003, + "githubStars" : 0 }, "object-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.6/object-pack/mod.json", @@ -782,22 +866,26 @@ "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.6/screenshots/screen06.png", "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.6/screenshots/screen07.png" ], - "downloadSize" : 6.407 + "downloadSize" : 6.407, + "githubStars" : 0 }, "tavern-invite" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/tavern-invite/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/tavern-invite/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.001 + "downloadSize" : 0.001, + "githubStars" : 0 }, "ultimate-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/simple-game-balance/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/simple-game-balance/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.01 + "downloadSize" : 0.01, + "githubStars" : 0 }, "graphics-balance-music" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/graphics-balance-music/vcmi-1.7/graphics-balance-music/mod.json", "download" : "https://github.com/vcmi-mods/graphics-balance-music/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 119.311 + "downloadSize" : 119.311, + "githubStars" : 0 }, "new-summon-spells" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.7/new-summon-spells/mod.json", @@ -809,7 +897,8 @@ "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.7/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/new-summon-spells/vcmi-1.7/screenshots/screen5.png" ], - "downloadSize" : 4.214 + "downloadSize" : 4.214, + "githubStars" : 0 }, "witchking-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.7/witchking-artifacts/mod.json", @@ -829,7 +918,8 @@ "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/screenshots/screen12.png", "https://raw.githubusercontent.com/vcmi-mods/witchking-artifacts/vcmi-1.5/screenshots/screen13.png" ], - "downloadSize" : 8.773 + "downloadSize" : 8.773, + "githubStars" : 0 }, "moon-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.7/moon-artifacts/mod.json", @@ -842,7 +932,8 @@ "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/screenshots/screen5.png", "https://raw.githubusercontent.com/vcmi-mods/moon-artifacts/vcmi-1.5/screenshots/screen6.png" ], - "downloadSize" : 2.392 + "downloadSize" : 2.392, + "githubStars" : 0 }, "factory-creatures" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.7/factory-creatures/mod.json", @@ -853,7 +944,8 @@ "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/vcmi-mods/factory-creatures/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 39.471 + "downloadSize" : 39.471, + "githubStars" : 0 }, "luk3Z-templates-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.6/luk3Z-templates-pack/mod.json", @@ -867,7 +959,8 @@ "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/screenshots/screen6.png", "https://raw.githubusercontent.com/vcmi-mods/luk3Z-templates-pack/vcmi-1.5/screenshots/screen7.png" ], - "downloadSize" : 13.013 + "downloadSize" : 13.013, + "githubStars" : 0 }, "new-monsters-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-monsters-pack/vcmi-1.7/new-monsters-pack/mod.json", @@ -884,17 +977,20 @@ "https://raw.githubusercontent.com/vcmi-mods/new-monsters-pack/vcmi-1.6/screenshots/screen09.png", "https://raw.githubusercontent.com/vcmi-mods/new-monsters-pack/vcmi-1.6/screenshots/screen10.png" ], - "downloadSize" : 214.602 + "downloadSize" : 214.602, + "githubStars" : 0 }, "czech-map-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-map-pack/vcmi-1.6/czech-map-pack/mod.json", "download" : "https://github.com/vcmi-mods/czech-map-pack/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 13.225 + "downloadSize" : 13.225, + "githubStars" : 0 }, "modder-tools-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/modder-tools-pack/main/modder-tools-pack/mod.json", "download" : "https://github.com/vcmi-mods/modder-tools-pack/archive/refs/heads/main.zip", - "downloadSize" : 84.286 + "downloadSize" : 84.286, + "githubStars" : 0 }, "heroes-o-pedia" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-o-pedia/vcmi-1.6/heroes-o-pedia/mod.json", @@ -904,7 +1000,8 @@ "https://raw.githubusercontent.com/vcmi-mods/heroes-o-pedia/vcmi-1.6/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/heroes-o-pedia/vcmi-1.6/screenshots/screen03.png" ], - "downloadSize" : 3.525 + "downloadSize" : 3.525, + "githubStars" : 1 }, "chronicles-enhanced" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chronicles-enhanced/vcmi-1.7/chronicles-enhanced/mod.json", @@ -914,12 +1011,14 @@ "https://raw.githubusercontent.com/vcmi-mods/chronicles-enhanced/vcmi-1.6/screenshots/screen02.png", "https://raw.githubusercontent.com/vcmi-mods/chronicles-enhanced/vcmi-1.6/screenshots/screen03.png" ], - "downloadSize" : 16.897 + "downloadSize" : 16.897, + "githubStars" : 0 }, "overall-ai-bonus" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/overall-ai-bonus/vcmi-1.6/overall-ai-bonus/mod.json", "download" : "https://github.com/vcmi-mods/overall-ai-bonus/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.063 + "downloadSize" : 0.063, + "githubStars" : 0 }, "vivid-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/vivid-battlefields/vcmi-1.6/vivid-battlefields/mod.json", @@ -930,7 +1029,8 @@ "https://raw.githubusercontent.com/vcmi-mods/vivid-battlefields/vcmi-1.6/screenshots/screen03.png", "https://raw.githubusercontent.com/vcmi-mods/vivid-battlefields/vcmi-1.6/screenshots/screen04.png" ], - "downloadSize" : 34.905 + "downloadSize" : 34.905, + "githubStars" : 0 }, "fused-artifacts" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/fused-artifacts/vcmi-1.7/fused-artifacts/mod.json", @@ -938,7 +1038,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/fused-artifacts/main/screenshots/screen01.png" ], - "downloadSize" : 0.933 + "downloadSize" : 0.933, + "githubStars" : 0 }, "immortal-cultivation-heroes" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/immortal-cultivation-heroes/vcmi-1.7/lmods/mod.json", @@ -948,27 +1049,32 @@ "https://raw.githubusercontent.com/vcmi-mods/immortal-cultivation-heroes/vcmi-1.6/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/immortal-cultivation-heroes/vcmi-1.6/screenshots/screen3.png" ], - "downloadSize" : 21.976 + "downloadSize" : 21.976, + "githubStars" : 0 }, "heroes3-extended-soundtrack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes3-extended-soundtrack/main/mod.json", "download" : "https://github.com/vcmi-mods/heroes3-extended-soundtrack/archive/refs/heads/main.zip", - "downloadSize" : 248.28 + "downloadSize" : 248.28, + "githubStars" : 0 }, "hq-music" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hq-music/main/mod.json", "download" : "https://github.com/vcmi-mods/hq-music/archive/refs/heads/main.zip", - "downloadSize" : 227.359 + "downloadSize" : 227.359, + "githubStars" : 0 }, "new-sfx-sounds" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-sfx-sounds/main/mod.json", "download" : "https://github.com/vcmi-mods/new-sfx-sounds/archive/refs/heads/main.zip", - "downloadSize" : 61.911 + "downloadSize" : 61.911, + "githubStars" : 0 }, "alternate-townscreens" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/alternate-townscreens/vcmi-1.6/alternate-townscreens/mod.json", "download" : "https://github.com/vcmi-mods/alternate-townscreens/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 60.407 + "downloadSize" : 60.407, + "githubStars" : 0 }, "a-song-of-ice-and-fire" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/a-song-of-ice-and-fire/main/a-song-of-ice-and-fire/mod.json", @@ -978,12 +1084,14 @@ "https://raw.githubusercontent.com/vcmi-mods/a-song-of-ice-and-fire/main/screenshots/screen2.png", "https://raw.githubusercontent.com/vcmi-mods/a-song-of-ice-and-fire/main/screenshots/screen3.png" ], - "downloadSize" : 10.694 + "downloadSize" : 10.694, + "githubStars" : 0 }, "movement-arrows" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/movement-arrows/main/mod.json", "download" : "https://github.com/vcmi-mods/movement-arrows/archive/refs/heads/main.zip", - "downloadSize" : 0.1 + "downloadSize" : 0.1, + "githubStars" : 0 }, "ark-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ark-town/vcmi-1.7/ark-town/mod.json", @@ -992,7 +1100,8 @@ "https://raw.githubusercontent.com/vcmi-mods/ark-town/vcmi-1.6/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/ark-town/vcmi-1.6/screenshots/screen2.png" ], - "downloadSize" : 16.507 + "downloadSize" : 16.507, + "githubStars" : 1 }, "kremlin-town" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/kremlin-town/vcmi-1.7/kremlin-town/mod.json", @@ -1004,12 +1113,14 @@ "https://raw.githubusercontent.com/vcmi-mods/kremlin-town/vcmi-1.6/screenshots/screen4.png", "https://raw.githubusercontent.com/vcmi-mods/kremlin-town/vcmi-1.6/screenshots/screen5.png" ], - "downloadSize" : 34.338 + "downloadSize" : 34.338, + "githubStars" : 1 }, "ai-disable-speedups" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-disable-speedups/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/ai-disable-speedups/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.002 + "downloadSize" : 0.002, + "githubStars" : 0 }, "new-skills-pack" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-skills-pack/vcmi-1.7/new-skills-pack/mod.json", @@ -1017,7 +1128,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/new-skills-pack/vcmi-1.7/screenshots/screen1.png" ], - "downloadSize" : 2.22 + "downloadSize" : 2.22, + "githubStars" : 0 }, "custom-templates" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/custom-templates/vcmi-1.6/custom-templates/mod.json", @@ -1025,62 +1137,74 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/custom-templates/vcmi-1.6/screenshots/screen1.png" ], - "downloadSize" : 9.183 + "downloadSize" : 9.183, + "githubStars" : 0 }, "cheat-mod" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/cheat-mod/vcmi-1.7/cheat-mod/mod.json", "download" : "https://github.com/vcmi-mods/cheat-mod/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 0.01 + "downloadSize" : 0.01, + "githubStars" : 0 }, "equal-stats" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/equal-stats/vcmi-1.6/equal-stats/mod.json", "download" : "https://github.com/vcmi-mods/equal-stats/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 0.012 + "downloadSize" : 0.012, + "githubStars" : 0 }, "chinese-maps-collection" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-maps-collection/main/chinese-maps-collection/mod.json", "download" : "https://github.com/vcmi-mods/chinese-maps-collection/archive/refs/heads/main.zip", - "downloadSize" : 104.996 + "downloadSize" : 104.996, + "githubStars" : 0 }, "pvp-balance" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pvp-balance/vcmi-1.6/mod.json", "download" : "https://github.com/vcmi-mods/pvp-balance/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 14.451 + "downloadSize" : 14.451, + "githubStars" : 0 }, "pah3-singleplayer-tournament" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/pah3-singleplayer-tournament/mod.json", "download" : "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 2.313 + "downloadSize" : 2.313, + "githubStars" : 0 }, "norwegian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/norwegian-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/norwegian-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 3.931 + "downloadSize" : 3.931, + "githubStars" : 0 }, "greek-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/greek-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/greek-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 5.382 + "downloadSize" : 5.382, + "githubStars" : 0 }, "japanese-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/japanese-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/japanese-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 21.088 + "downloadSize" : 21.088, + "githubStars" : 1 }, "bulgarian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/bulgarian-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/bulgarian-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 4.889 + "downloadSize" : 4.889, + "githubStars" : 0 }, "romanian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/romanian-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/romanian-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 4.24 + "downloadSize" : 4.24, + "githubStars" : 1 }, "belarusian-translation" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/belarusian-translation/vcmi-1.7/mod.json", "download" : "https://github.com/vcmi-mods/belarusian-translation/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 7.766 + "downloadSize" : 7.766, + "githubStars" : 0 }, "market-of-time" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/market-of-time/vcmi-1.7/marketOfTime/mod.json", @@ -1088,7 +1212,8 @@ "screenshots" : [ "https://raw.githubusercontent.com/vcmi-mods/market-of-time/vcmi-1.7/screenshots/screen1.png" ], - "downloadSize" : 1.326 + "downloadSize" : 1.326, + "githubStars" : 0 }, "hd-remastered" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/hd-remastered/main/hd-remastered/mod.json", @@ -1097,7 +1222,8 @@ "https://raw.githubusercontent.com/vcmi-mods/hd-remastered/main/screenshots/OH3.png", "https://raw.githubusercontent.com/vcmi-mods/hd-remastered/main/screenshots/HDRemastered.png" ], - "downloadSize" : 148.435 + "downloadSize" : 148.435, + "githubStars" : 0 }, "more-secondary" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/more-secondary/main/more-secondary/mod.json", @@ -1107,12 +1233,14 @@ "https://raw.githubusercontent.com/vcmi-mods/more-secondary/main/screenshots/screen1.png", "https://raw.githubusercontent.com/vcmi-mods/more-secondary/main/screenshots/screen2.png" ], - "downloadSize" : 1.227 + "downloadSize" : 1.227, + "githubStars" : 0 }, "diverse-battlefields" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/diverse-battlefields/vcmi-1.7/diverse-battlefields/mod.json", "download" : "https://github.com/vcmi-mods/diverse-battlefields/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 269.963 + "downloadSize" : 269.963, + "githubStars" : 0 }, "mmai" : { "mod" : "https://github.com/vcmi-mods/mmai/releases/download/vcmi-1.7-latest/mod.json", @@ -1120,7 +1248,8 @@ "screenshots" : [ "https://github.com/vcmi-mods/mmai/releases/download/vcmi-1.7-latest/screenshot-01.png" ], - "downloadSize" : 37.854 + "downloadSize" : 37.854, + "githubStars" : 0 } } } diff --git a/vcmi-archive.json b/vcmi-archive.json index 048ec4f..0f3eeed 100644 --- a/vcmi-archive.json +++ b/vcmi-archive.json @@ -8,7 +8,8 @@ "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen4.png" ], - "downloadSize" : 20.17 + "downloadSize" : 20.17, + "githubStars" : 0 }, "ciberium-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/ciberium-town/mod.json", @@ -18,92 +19,110 @@ "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen3.png" ], - "downloadSize" : 24.778 + "downloadSize" : 24.778, + "githubStars" : 0 }, "foundry-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/foundry-town/vcmi-1.4/foundry-town/mod.json", "download" : "https://github.com/misiokles/foundry-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 18.394 + "downloadSize" : 18.394, + "githubStars" : 0 }, "small-era-mods" : { "mod" : "https://raw.githubusercontent.com/misiokles/small-era-mods/vcmi-1.4/small-era-mods/mod.json", "download" : "https://github.com/misiokles/small-era-mods/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 15.073 + "downloadSize" : 15.073, + "githubStars" : 0 }, "HoMM3-alternative-towns-music" : { "mod" : "https://raw.githubusercontent.com/misiokles/HoMM3-alternative-towns-music/vcmi-1.4/HoMM3-alternative-towns-music/mod.json", "download" : "https://github.com/misiokles/HoMM3-alternative-towns-music/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 9.836 + "downloadSize" : 9.836, + "githubStars" : 0 }, "astral-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/astral-town/vcmi-1.4/astral-town/mod.json", "download" : "https://github.com/misiokles/astral-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 10.293 + "downloadSize" : 10.293, + "githubStars" : 0 }, "golemcraft" : { "mod" : "https://raw.githubusercontent.com/misiokles/golemcraft/vcmi-1.4/golemcraft/mod.json", "download" : "https://github.com/misiokles/golemcraft/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.075 + "downloadSize" : 0.075, + "githubStars" : 0 }, "slothlux-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/slothlux-town/vcmi-1.4/slothlux-town/mod.json", "download" : "https://github.com/misiokles/slothlux-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 8.811 + "downloadSize" : 8.811, + "githubStars" : 0 }, "peachville-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/peachville-town/vcmi-1.4/peachville-town/mod.json", "download" : "https://github.com/misiokles/peachville-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 8.069 + "downloadSize" : 8.069, + "githubStars" : 0 }, "palace-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/palace-town/vcmi-1.4/palace-town/mod.json", "download" : "https://github.com/misiokles/palace-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 14.683 + "downloadSize" : 14.683, + "githubStars" : 0 }, "h4-arts-hero" : { "mod" : "https://raw.githubusercontent.com/misiokles/h4-arts-hero/vcmi-1.7/h4-arts-hero/mod.json", "download" : "https://github.com/misiokles/h4-arts-hero/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 0.226 + "downloadSize" : 0.226, + "githubStars" : 0 }, "h2-artifacts" : { "mod" : "https://raw.githubusercontent.com/misiokles/h2-artifacts/vcmi-1.4/h2-artifacts/mod.json", "download" : "https://github.com/misiokles/h2-artifacts/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 0.173 + "downloadSize" : 0.173, + "githubStars" : 0 }, "alpha-mod" : { "mod" : "https://raw.githubusercontent.com/misiokles/alpha-mod/vcmi-1.4/alpha-mod/mod.json", "download" : "https://github.com/misiokles/alpha-mod/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 6.885 + "downloadSize" : 6.885, + "githubStars" : 0 }, "regna-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/regna-town/vcmi-1.4/regna-town/mod.json", "download" : "https://github.com/misiokles/regna-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 12.344 + "downloadSize" : 12.344, + "githubStars" : 0 }, "swarm-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/swarm-town/vcmi-1.4/swarm-town/mod.json", "download" : "https://github.com/misiokles/swarm-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 22.894 + "downloadSize" : 22.894, + "githubStars" : 0 }, "rampstorm" : { "mod" : "https://raw.githubusercontent.com/misiokles/rampstorm/vcmi-1.4/rampstorm/mod.json", "download" : "https://github.com/misiokles/rampstorm/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 8.255 + "downloadSize" : 8.255, + "githubStars" : 0 }, "atlantis-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/atlantis-town/vcmi-1.4/atlantis-town/mod.json", "download" : "https://github.com/misiokles/atlantis-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 11.283 + "downloadSize" : 11.283, + "githubStars" : 0 }, "technocracy-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/technocracy-town/vcmi-1.4/technocracy-town/mod.json", "download" : "https://github.com/misiokles/technocracy-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 17.799 + "downloadSize" : 17.799, + "githubStars" : 0 }, "eldorado-town" : { "mod" : "https://raw.githubusercontent.com/kdmcser/eldorado-town/vcmi-1.5/mod.json", "download" : "https://github.com/kdmcser/eldorado-town/archive/refs/heads/vcmi-1.5.zip", - "downloadSize" : 19.259 + "downloadSize" : 19.259, + "githubStars" : 0 }, "haven-old" : { "mod" : "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/haven-old/mod.json", @@ -114,7 +133,8 @@ "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 13.341 + "downloadSize" : 13.341, + "githubStars" : 0 }, "bastille-old" : { "mod" : "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/bastille-old/mod.json", @@ -125,7 +145,8 @@ "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 17.588 + "downloadSize" : 17.588, + "githubStars" : 0 }, "fiorin-heroes" : { "mod" : "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/fiorin-heroes/mod.json", @@ -135,7 +156,8 @@ "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen3.png" ], - "downloadSize" : 2.525 + "downloadSize" : 2.525, + "githubStars" : 0 }, "plane-of-earth-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/plane-of-earth-town/mod.json", @@ -146,7 +168,8 @@ "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 14.417 + "downloadSize" : 14.417, + "githubStars" : 0 }, "might-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/might-town/mod.json", @@ -157,7 +180,8 @@ "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 16.616 + "downloadSize" : 16.616, + "githubStars" : 0 }, "covenant-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/covenant-town/mod.json", @@ -168,7 +192,8 @@ "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 37.546 + "downloadSize" : 37.546, + "githubStars" : 0 }, "ruins092-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/ruins-092/mod.json", @@ -180,7 +205,8 @@ "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen4.png", "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen5.png" ], - "downloadSize" : 14.789 + "downloadSize" : 14.789, + "githubStars" : 0 }, "glacier-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/glacier-town/mod.json", @@ -189,7 +215,8 @@ "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/screenshots/screen1.png", "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/screenshots/screen2.png" ], - "downloadSize" : 13.565 + "downloadSize" : 13.565, + "githubStars" : 0 }, "limes-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/limes-town/mod.json", @@ -200,7 +227,8 @@ "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 22.388 + "downloadSize" : 22.388, + "githubStars" : 0 }, "christmas-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/christmas-town/mod.json", @@ -211,7 +239,8 @@ "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen3.png", "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen4.png" ], - "downloadSize" : 16.138 + "downloadSize" : 16.138, + "githubStars" : 0 }, "warlock-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/warlock-town/mod.json", @@ -221,12 +250,14 @@ "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen3.png" ], - "downloadSize" : 14.243 + "downloadSize" : 14.243, + "githubStars" : 0 }, "mythology-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/mythology-town/vcmi-1.4/mythology-town/mod.json", "download" : "https://github.com/misiokles/mythology-town/archive/refs/heads/vcmi-1.4.zip", - "downloadSize" : 10.816 + "downloadSize" : 10.816, + "githubStars" : 0 }, "abode-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/abode-town/mod.json", @@ -236,12 +267,14 @@ "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen2.png", "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen3.png" ], - "downloadSize" : 21.358 + "downloadSize" : 21.358, + "githubStars" : 0 }, "pah3-singleplayer-tournament" : { "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/pah3-singleplayer-tournament/mod.json", "download" : "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.6.zip", - "downloadSize" : 2.313 + "downloadSize" : 2.313, + "githubStars" : 0 }, "crossroads-of-worlds" : { "mod" : "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/crossroads-of-worlds/mod.json", @@ -258,7 +291,8 @@ "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen09.png", "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen10.png" ], - "downloadSize" : 151.446 + "downloadSize" : 151.446, + "githubStars" : 0 }, "blazers-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/blazers-town/main/blazers-town/mod.json", @@ -268,7 +302,8 @@ "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen02.png", "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen03.png" ], - "downloadSize" : 18.683 + "downloadSize" : 18.683, + "githubStars" : 0 }, "wild-valley-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/wild-valley-town/mod.json", @@ -279,7 +314,8 @@ "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen03.png", "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen04.png" ], - "downloadSize" : 16.63 + "downloadSize" : 16.63, + "githubStars" : 0 }, "evergreen-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/evergreen-town/main/evergreen-town/mod.json", @@ -290,7 +326,8 @@ "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen03.png", "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen04.png" ], - "downloadSize" : 15.318 + "downloadSize" : 15.318, + "githubStars" : 0 }, "h2-towns" : { "mod" : "https://raw.githubusercontent.com/misiokles/h2-towns/main/h2-towns/mod.json", @@ -302,7 +339,8 @@ "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen4.png", "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen5.png" ], - "downloadSize" : 63.742 + "downloadSize" : 63.742, + "githubStars" : 0 }, "haven-vovan" : { "mod" : "https://raw.githubusercontent.com/misiokles/haven-vovan/main/haven-vovan/mod.json", @@ -310,21 +348,25 @@ "screenshots" : [ "https://raw.githubusercontent.com/misiokles/haven-vovan/main/screenshots/screen1.png" ], - "downloadSize" : 12.872 + "downloadSize" : 12.872, + "githubStars" : 0 }, "old-court-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/old-court-town/main/old-court-town/mod.json", "download" : "https://github.com/misiokles/old-court-town/archive/refs/heads/main.zip", - "downloadSize" : 12.721 + "downloadSize" : 12.721, + "githubStars" : 0 }, "naga-town" : { "mod" : "https://raw.githubusercontent.com/misiokles/naga-town/vcmi-1.7/naga-town/mod.json", "download" : "https://github.com/misiokles/naga-town/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 33.763 + "downloadSize" : 33.763, + "githubStars" : 0 }, "land-of-light" : { "mod" : "https://raw.githubusercontent.com/misiokles/land-of-light/vcmi-1.7/land-of-light/mod.json", "download" : "https://github.com/misiokles/land-of-light/archive/refs/heads/vcmi-1.7.zip", - "downloadSize" : 51.853 + "downloadSize" : 51.853, + "githubStars" : 0 } }