├── .github ├── ignore_json.py ├── update_size.py ├── validate_json.py ├── validate_mod_json.py └── workflows │ └── main.yml ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── github.json ├── vcmi-1.2.json ├── vcmi-1.3.json ├── vcmi-1.4-archive.json ├── vcmi-1.4.json ├── vcmi-1.5.json ├── vcmi-1.6.json └── vcmi-1.7.json /.github/ignore_json.py: -------------------------------------------------------------------------------- 1 | ignore = [ "./github.json", "./vcmi-1.2.json", "./vcmi-1.3.json", "./vcmi-1.4.json" ] 2 | -------------------------------------------------------------------------------- /.github/update_size.py: -------------------------------------------------------------------------------- 1 | import json 2 | import glob 3 | import os 4 | import sys 5 | import urllib.request 6 | 7 | from ignore_json import ignore 8 | 9 | for filename in glob.glob(os.path.join('.', '*.json')): 10 | if filename not in ignore: 11 | print(f"Opening: {filename}") 12 | filecontent = open(filename, "r").read() 13 | modlist = json.loads(filecontent) 14 | for mod, data in modlist.items() if 'availableMods' not in modlist else modlist["availableMods"].items(): 15 | url = data["download"].replace(" ", "%20") 16 | print(f"Download {mod}: {url}") 17 | try: 18 | response = urllib.request.urlopen(url) 19 | except: 20 | print("Error: download failed!") 21 | sys.exit(os.EX_SOFTWARE) 22 | filesize = round(len(response.read()) / 1024 / 1024, 3) 23 | print(f"Size: {filesize}") 24 | data["downloadSize"] = filesize 25 | 26 | resultcontent = json.dumps(modlist, indent='\t', separators=(',', ' : ')) + "\n" 27 | 28 | if filecontent != resultcontent: 29 | open(filename, "w").write(resultcontent) 30 | 31 | sys.exit(os.EX_OK) 32 | -------------------------------------------------------------------------------- /.github/validate_json.py: -------------------------------------------------------------------------------- 1 | import jstyleson 2 | import glob 3 | import os 4 | import sys 5 | 6 | from ignore_json import ignore 7 | 8 | error = False 9 | 10 | for filename in glob.glob(os.path.join('.', '*.json')): 11 | if filename not in ignore: 12 | print(f"Opening: {filename}") 13 | 14 | with open(filename, "r") as file: 15 | filecontent = file.read() 16 | 17 | try: 18 | jstyleson.loads(filecontent) 19 | print(f"✅ JSON valid") 20 | except Exception as err: 21 | error = True 22 | print(f"❌ JSON invalid in {filename}:") 23 | print(str(err)) 24 | 25 | if error: 26 | sys.exit(os.EX_SOFTWARE) 27 | else: 28 | print("Everything is ok!") 29 | sys.exit(os.EX_OK) 30 | -------------------------------------------------------------------------------- /.github/validate_mod_json.py: -------------------------------------------------------------------------------- 1 | import jstyleson 2 | import glob 3 | import os 4 | import sys 5 | import urllib.request 6 | from io import StringIO 7 | 8 | from ignore_json import ignore 9 | 10 | error = False 11 | 12 | for filename in glob.glob(os.path.join('.', '*.json')): 13 | if filename not in ignore: 14 | print(f"Opening: {filename}") 15 | 16 | with open(filename, "r") as file: 17 | filecontent = file.read() 18 | 19 | try: 20 | modlist = jstyleson.loads(filecontent) 21 | except Exception as err: 22 | error = True 23 | print(f"❌ Error reading JSON file {filename}: {err}") 24 | continue 25 | 26 | for mod, data in modlist.items() if 'availableMods' not in modlist else modlist["availableMods"].items(): 27 | url = data["mod"].replace(" ", "%20") 28 | print(f"{mod}: {url}") 29 | 30 | try: 31 | response = urllib.request.urlopen(url) 32 | print(f"✅ Download successful") 33 | except Exception as err: 34 | error = True 35 | print(f"❌ Download failed: {err}") 36 | continue 37 | 38 | try: 39 | filecontent = response.read().decode("utf-8") 40 | jstyleson.load(StringIO(filecontent)) 41 | print(f"✅ JSON valid") 42 | except Exception as err: 43 | error = True 44 | print(f"❌ JSON invalid:") 45 | print(str(err)) 46 | continue 47 | 48 | if error: 49 | sys.exit(os.EX_SOFTWARE) 50 | else: 51 | print("Everything is ok!") 52 | sys.exit(os.EX_OK) 53 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: VCMI Mods 2 | 3 | on: 4 | push: 5 | branches: 6 | - develop 7 | pull_request: 8 | paths: 9 | - "**.json" 10 | schedule: 11 | - cron: '0 2 * * *' 12 | workflow_dispatch: 13 | 14 | jobs: 15 | validate_json: 16 | if: ${{ github.event_name == 'pull_request' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} 17 | runs-on: ubuntu-latest 18 | defaults: 19 | run: 20 | shell: bash 21 | steps: 22 | - uses: actions/checkout@v3 23 | with: 24 | fetch-depth: 0 25 | - name: Set up Python environment 26 | run: sudo apt update && sudo apt install -y python3 python3-pip 27 | - name: Install jstyleson 28 | run: pip3 install jstyleson 29 | - name: Validate json 30 | run: python3 .github/validate_json.py 31 | 32 | validate_mod_json: 33 | if: ${{ github.event_name == 'pull_request' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} 34 | needs: validate_json 35 | runs-on: ubuntu-latest 36 | defaults: 37 | run: 38 | shell: bash 39 | steps: 40 | - uses: actions/checkout@v3 41 | - name: Install jstyleson 42 | run: pip3 install jstyleson 43 | - name: Validate mod json 44 | run: python3 .github/validate_mod_json.py 45 | 46 | update_size: 47 | if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/develop') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} 48 | runs-on: ubuntu-latest 49 | defaults: 50 | run: 51 | shell: bash 52 | steps: 53 | - uses: actions/checkout@v3 54 | with: 55 | fetch-depth: 0 56 | - name: Install jstyleson 57 | run: pip3 install jstyleson 58 | 59 | - name: Update size 60 | run: python3 .github/update_size.py 61 | 62 | - name: Determine branch and switch 63 | id: branch_info 64 | run: | 65 | branch_name=$(git symbolic-ref --short HEAD) 66 | echo "branch_name=$branch_name" >> $GITHUB_ENV 67 | echo "Checked out branch: $branch_name" 68 | 69 | - name: Set upstream for branch 70 | run: git push --set-upstream origin $branch_name 71 | 72 | - name: Commit changes to the correct branch 73 | uses: EndBug/add-and-commit@v9 74 | with: 75 | default_author: github_actions 76 | message: Update sizes 77 | add: '*.json' 78 | push: --force 79 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Before contributing make sure to [read about mods respository on our wiki](https://wiki.vcmi.eu/Mods_repository). 2 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcmi/vcmi-mods-repository/38fdfc3de267df989d3d214da249aacf8de92b45/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VCMI mods repository 2 | 3 | For a detailed description of this repository, see the [VCMI wiki](https://github.com/vcmi/vcmi/blob/develop/docs/modders/Readme.md#publishing-mods-in-vcmi-repository). 4 | 5 | ## Adding a mod 6 | 7 | If you have a mod you'd like included in the default list of mods in the VCMI launcher, 8 | please submit a [pull request](https://github.com/vcmi/vcmi-mods-repository/compare). 9 | The PR needs to add a JSON object to the `vcmi-x.y.json` file corresponding to the version your mod is targeting. 10 | Tag the PR with with either the `new mod` or `improvement` label. 11 | ```jsonc 12 | { 13 | [...] 14 | "refugee-town" : { 15 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.4/refugee-town/mod.json", 16 | "download" : "https://github.com/vcmi-mods/refugee-town/archive/refs/heads/vcmi-1.4.zip", 17 | "screenshots" : [ // optional 18 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen1.png", 19 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen2.png", 20 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen3.png", 21 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen4.png", 22 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen5.png" 23 | ] 24 | }, 25 | [...] 26 | } 27 | ``` 28 | 29 | The `mod.json` referenced in the entry in vcmi-x.y.json should be structured like this: 30 | ```jsonc 31 | { 32 | "name": "Refugee Town (release)", 33 | "description": "Refugee Town is a new town created by Yuya that takes its inspiration from WoG's Neutral Town and Heroes3's Refugee Camp. The common point of its creatures is their nonbelonging to the other factions. Thus, this castle sports concepts such as nomadism, motley armies and makeshift solutions. The town also takes elements from the Mesopotamian/Sumerian/Akkadian mythologies. Official VCMI Forum https://forum.vcmi.eu/t/new-town-mod-refugee/5002", 34 | "author": "Yuya Noboru (v0.1-v0.4, v0.8-v1.0), VCMI Community (v0.5-v0.7, v0.8.1-v0.8.5)", 35 | "version": "1.0", 36 | "contact": "mail: yuya.noboru@gmail.com", // optional 37 | "modType": "Town", 38 | "compatibility": { 39 | "min": "1.4.0" 40 | }, 41 | "changelog": { // optional 42 | "Note": [ 43 | "See 'RefugeeTown-Changelog.txt' file inside the mod to see the full changelog. Or go to the VCMI forum on the official thread: https://forum.vcmi.eu/t/new-town-mod-refugee/5002" 44 | ], 45 | "v1.0.1 (11/02/2024)": [ 46 | "Udated chinese translation. - by Rindlit." 47 | ], 48 | "v1.0 (09/01/2024)": [ 49 | "BRAND NEW VISUALS FOR TOWN-SCREEN, SIEGE-SCREEN, ADV.MAP VISUALS, ETC.!", 50 | ] 51 | }, 52 | "french": { 53 | "name": "Réfugiés", 54 | "description": "Réfugiés est une ville créée par Yuya qui s'inspire de la ville neutre de WoG, ainsi que des camps de réfugiés d'Heroes 3. Le point commun de ses créatures est leur non-appartenance aux autres factions. Ainsi, ce château arbore des concepts tels que le nomadisme, les armées hétéroclites et les solutions de fortune. La ville reprend également des éléments des mythologies mésopotamiennes, sumériennes et akkadiennes. Forum officiel VCMI https://forum.vcmi.eu/t/new-town-mod-refugee/5002", 55 | "translations": [ 56 | "translation/refugee/french.json" 57 | ] 58 | }, 59 | "german": { 60 | "name": "Flüchtlings-Stadt", 61 | "description": "Flüchtlings-Stadt ist eine von Yuya erschaffene Stadt, die von WoG's Neutral Town und Heroes3's Refugee Camp inspiriert wurde. Der gemeinsame Punkt seiner Kreaturen ist ihre Nicht-Zugehörigkeit zu den anderen Fraktionen. So finden sich in dieser Burg Konzepte wie Nomadentum, bunt zusammengewürfelte Armeen und Behelfslösungen. Die Stadt nimmt auch Elemente aus der mesopotamischen/sumerischen/akkadischen Mythologie auf. Offizielles VCMI-Forum https://forum.vcmi.eu/t/new-town-mod-refugee/5002", 62 | "translations": [ 63 | "translation/refugee/german.json" 64 | ] 65 | }, 66 | "factions": [ 67 | "config/town/buildings.json" 68 | ], 69 | "creatures": [ 70 | "config/creatures/RFGCL1L.json" 71 | ], 72 | "heroClasses": [ 73 | "config/classes/RFGHC-EnchanterF.json" 74 | ], 75 | "heroes": [ 76 | "config/heroes/RFGH-Leyla.json", 77 | "config/heroes/RFGH-Niusha.json", 78 | "config/heroes/RFGH-Kiana.json" 79 | ], 80 | "spells": [ 81 | "config/spells/RFGS-Emet.json", 82 | "config/spells/RFGS-Met.json" 83 | ], 84 | "objects": [ 85 | "config/town/dwellings.json" 86 | ] 87 | } 88 | ``` 89 | 90 | ### Mod compliance 91 | 92 | The official mods repository, available in VCMI by default, shall not contain links leading to domains other than GitHub. 93 | Also, mods shall not contain any archives (except those that are natively supported by VCMI but not zip). 94 | Non-compliant mods can be added into experimental repositories which are not available in the launcher by default. 95 | 96 | ## Other links 97 | 98 | * Homepage: https://vcmi.eu/ 99 | * Wiki: https://github.com/vcmi/vcmi/blob/develop/docs/Readme.md 100 | * Forums: https://forum.vcmi.eu/ 101 | * Bugtracker: https://bugs.vcmi.eu/ 102 | * Discord: https://discord.gg/chBT42V 103 | * Slack: https://slack.vcmi.eu/ 104 | -------------------------------------------------------------------------------- /github.json: -------------------------------------------------------------------------------- 1 | { 2 | "vcmi-extras": 3 | { 4 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.1/mod.json", 5 | "download": "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.1.zip" 6 | }, 7 | "hota": { 8 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/hota/mod.json", 9 | "download": "https://github.com/vcmi-mods/horn-of-the-abyss/archive/refs/heads/vcmi-1.1.zip", 10 | "screenshots": 11 | [ 12 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/01.png", 13 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/02.png", 14 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/03.png", 15 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/04.png", 16 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/05.png", 17 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/06.png", 18 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/07.png", 19 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/08.png", 20 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/09.png" 21 | ] 22 | }, 23 | "forge": 24 | { 25 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.1/mod.json", 26 | "download" : "https://github.com/vcmi-mods/forge/archive/refs/heads/vcmi-1.1.zip" 27 | }, 28 | "tides-of-war": 29 | { 30 | "mod": "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/master/mod.json", 31 | "download": "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/master.zip" 32 | }, 33 | "wake-of-gods": 34 | { 35 | "mod": "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/master/mod.json", 36 | "download": "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/master.zip" 37 | }, 38 | "Korean TrueType Fonts": 39 | { 40 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/master/Korean%20TrueType%20Fonts/mod.json", 41 | "download": "https://github.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/archive/refs/heads/master.zip", 42 | "screenshots": 43 | [ 44 | "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/master/sc1.png", 45 | "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/master/sc2.png" 46 | ] 47 | }, 48 | "ai trace": 49 | { 50 | "mod": "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", 51 | "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip" 52 | }, 53 | "demo support" : { 54 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", 55 | "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip" 56 | }, 57 | "ai testing maps": 58 | { 59 | "mod": "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", 60 | "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip" 61 | }, 62 | "campaign-heroes": 63 | { 64 | "mod": "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/master/mod.json", 65 | "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/master.zip" 66 | }, 67 | "axolotl-creatures-pack": 68 | { 69 | "mod": "https://raw.githubusercontent.com/vcmi-mods/axolotl-creatures-pack/main/mod.json", 70 | "download" : "https://github.com/vcmi-mods/axolotl-creatures-pack/archive/refs/heads/main.zip" 71 | }, 72 | "german-translation": 73 | { 74 | "mod": "https://raw.githubusercontent.com/vcmi-mods/german-translation/master/mod.json", 75 | "download" : "https://github.com/vcmi-mods/german-translation/archive/refs/heads/master.zip" 76 | }, 77 | "vcmi-mod-ce-ukr": 78 | { 79 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.1/ce-ukr/mod.json", 80 | "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.1.zip" 81 | }, 82 | "h3-for-vcmi-englisation": 83 | { 84 | "mod": "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.1/H3forVCMIenglisation/mod.json", 85 | "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.1.zip" 86 | }, 87 | "tarnum": 88 | { 89 | "name" : "Tarnum is back (Original Factions)", 90 | "description" : "Playable Tarnum in all his previous incarnations (Knight, Ranger, Barbarian, Wizard, Beastmaster and Overlord) as well as 3 new ones (Death Knight, Demoniac and Planeswalker). Most of the graphics are exported from Heroes Chronicles, Heroes of Might and Magic 3 Complete or Horn of the Abyss. I'm the author of Planeswalker and Demoniac portraits and some speciality graphics, Hobbit is the author of Death Knight Tarnum (I received his permission to use this portrait). Mod gives each of original Heroes factions one Tarnum :)", 91 | "author" : "marif, Hobbit (Death Knight), HotA Team (Overlord speciality icons)", 92 | "contact" : "http://forum.vcmi.eu/viewtopic.php?t=798", 93 | "version" : "1.1.0", 94 | "modType" : "Heroes", 95 | "changelog" : 96 | { 97 | "1.0.0" : [ "Initial release" ], 98 | "1.0.1" : [ "Bug fixes" ], 99 | "1.0.2" : [ "Changed Overlord Tarnum speciality icons to the ones used in HotA", "Changes in abilities of Death Knight Tarnum (added basic Offence, reduced Necromancy to basic)", "Fixed quantity of Beastmaster Tarnum's Serpent Flies" ], 100 | "1.0.3" : [ "Bug fixes" ], 101 | "1.0.4" : [ "Updated mod file to VCMI version 0.96" ], 102 | "1.0.5" : [ "Graphic fixes", "New specialty format" ], 103 | "1.1.0" : [ "Few new Tarnums were added :)" ] 104 | }, 105 | "download" : "https://github.com/vcmi-mods/tarnum/archive/refs/heads/main.zip" 106 | }, 107 | "neutral-heroes": 108 | { 109 | "version" : "1.03", 110 | "author" : "avatar, Nephretes, Witchking, draeganfire, MK. Portraits are taken from various sources from the net.", 111 | "contact" : "http://www.vault.acidcave.net/download.php?id=553", 112 | "description" : "Mod creates neutral heroes class called Drifter. Drifter can be hired in Tavers, but can't chosen as starting heroes.", 113 | "modType" : "Heroes", 114 | "name" : "Neutral Heroes", 115 | "changelog" : 116 | { 117 | "1.0" : ["Initial release"], 118 | "1.01" : ["fixes"], 119 | "1.02" : ["Add female hero sprites"], 120 | "1.03" : ["Add two HotA heroes"] 121 | }, 122 | "download" : "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/main.zip" 123 | }, 124 | "highlands-town": 125 | { 126 | "name" : "Highlands Town", 127 | "description" : "New town made by Turbanellos. New townscreen.", 128 | "author" : "FF Team, mod : Turbanellos", 129 | "contact" : "http://forum.vcmi.eu/index.php", 130 | "version" : "1.07", 131 | "modType" : "Town", 132 | "conflicts" : 133 | [ 134 | "bastille" 135 | ], 136 | "changelog" : 137 | { 138 | "1.07" : ["Partial grail building support"], 139 | "1.06" : ["Partial special buildings support"], 140 | "1.05" : ["new interface and new abilities, new lvl 6 creatures!"], 141 | "1.02" : [ "Added new commander", "Cosmetic fixes" ], 142 | "1.01" : [ "Bug fixes" ], 143 | "1.00" : [ "Initial release" ] 144 | }, 145 | "download" : "https://github.com/vcmi-mods/highlands-town/archive/refs/heads/main.zip" 146 | }, 147 | "courtyard": 148 | { 149 | "name" : "Courtyard town", 150 | "author" : "Trith, special thanks to: avatar, Kammer, Andruids, Hobbicus and MDT team", 151 | "contact" : "NONE", 152 | "description" : "New faction.", 153 | "licenseName" : "Creative Commons Attribution-ShareAlike", 154 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 155 | "modType" : "Town", 156 | "version" : "1.02", 157 | "changelog" : 158 | { 159 | "1.02" : [ "Tweaks" ], 160 | "1.01" : [ "Special buildings support" ], 161 | "1.00" : [ "Initial release" ] 162 | }, 163 | "compatibility": 164 | { 165 | "min" : "1.0.0" 166 | }, 167 | "download" : "https://github.com/vcmi-mods/courtyard/archive/refs/heads/main.zip", 168 | "screenshots": 169 | [ 170 | "https://raw.githubusercontent.com/vcmi-mods/courtyard/main/screenshots/screen1.png", 171 | "https://raw.githubusercontent.com/vcmi-mods/courtyard/main/screenshots/screen2.png", 172 | "https://raw.githubusercontent.com/vcmi-mods/courtyard/main/screenshots/screen3.png" 173 | ] 174 | }, 175 | "tok": 176 | { 177 | "name" : "The Other Kingdom", 178 | "author" : "Fiorin", 179 | "contact" : "http://fior.in/", 180 | "description" : "New neutral creatures, new classes, heroes and graphics improvements made by Fiorin", 181 | "licenseName" : "Creative Commons Attribution-ShareAlike", 182 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 183 | "modType" : "Creatures", 184 | "version" : "0.1", 185 | "changelog" : 186 | { 187 | "0.1" : [ "Initial release" ] 188 | }, 189 | "download" : "https://github.com/vcmi-mods/tok/archive/refs/heads/main.zip" 190 | }, 191 | "magic-fader": 192 | { 193 | "name" : "Magic Fader", 194 | "author" : "avatar. Graphic: HotA Team (rejected material).", 195 | "contact" : "NONE", 196 | "description" : "New secondary skill: Magic Fader. Partially blocks casting spells by enemy hero.", 197 | "licenseName" : "Creative Commons Attribution-ShareAlike", 198 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 199 | "modType" : "Skills", 200 | "version" : "1.02", 201 | "changelog" : 202 | { 203 | "1.0.0" : [ "Initial release" ] 204 | }, 205 | "compatibility": 206 | { 207 | "min" : "1.0.0" 208 | }, 209 | "download" : "https://github.com/vcmi-mods/magic-fader/archive/refs/heads/main.zip" 210 | }, 211 | "grove": 212 | { 213 | "name" : "Grove town", 214 | "author" : "New Grove Team & Trith, mod : Kuririn & Pointer, fixes: avatar, Alyx182008", 215 | "contact" : "NONE", 216 | "description" : "New town made by New Grove Team & Trith.", 217 | "licenseName" : "Creative Commons Attribution-ShareAlike", 218 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 219 | "modType" : "Town", 220 | "version" : "1.16", 221 | "changelog" : 222 | { 223 | "1.16" : [ "Tweaks" ], 224 | "1.10" : [ "Special buildings support" ], 225 | "1.00" : [ "Initial release" ] 226 | }, 227 | "compatibility": 228 | { 229 | "min" : "1.0.0" 230 | }, 231 | "download" : "https://github.com/vcmi-mods/grove/archive/refs/heads/main.zip", 232 | "screenshots": 233 | [ 234 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen1.png", 235 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen2.png", 236 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen3.png", 237 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", 238 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" 239 | ] 240 | }, 241 | "combine-grail": 242 | { 243 | "name" : "Combine Grail", 244 | "author" : "avatar, Trith, Hobbit", 245 | "contact" : "NONE", 246 | "description" : "Grail as combined artifact. Find 5 new artifacts to combine Grail of them instead of digging.", 247 | "licenseName" : "Creative Commons Attribution-ShareAlike", 248 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 249 | "modType" : "Mechanic", 250 | "version" : "1.2", 251 | "changelog" : 252 | { 253 | "1.2" : [ "Tweaks" ], 254 | "1.1" : [ "Graphical fixes" ], 255 | "1.0" : [ "Initial release" ] 256 | }, 257 | "compatibility": 258 | { 259 | "min" : "1.0.0" 260 | }, 261 | "download" : "https://github.com/vcmi-mods/combine-grail/archive/refs/heads/main.zip", 262 | "screenshots": 263 | [ 264 | "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" 265 | ] 266 | }, 267 | "fairy-town": 268 | { 269 | "name" : "Fairy town", 270 | "author" : "Ben Yan, New fairy Team, mod : Kuririn, zeryss, Draeganfire, avatar", 271 | "contact" : "NONE", 272 | "description" : "New town made by New fairy Team, updated by Turbanellos in 2022.", 273 | "licenseName" : "Creative Commons Attribution-ShareAlike", 274 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 275 | "modType" : "Town", 276 | "version" : "1.5", 277 | "changelog" : 278 | { 279 | "1.5" : [ "Totally reworked town" ], 280 | "1.0" : [ "Initial release" ] 281 | }, 282 | "compatibility": 283 | { 284 | "min" : "1.0.0" 285 | }, 286 | "download" : "https://github.com/vcmi-mods/fairy-town/archive/refs/heads/main.zip", 287 | "screenshots": 288 | [ 289 | "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" 290 | ] 291 | }, 292 | "haven-town": 293 | { 294 | "name" : "Haven town", 295 | "author" : "Ganymed, Necronix, Deo. VCMI port acidchalk.Updated by Ben Yan(Turbanellos) in March 2022.", 296 | "contact" : "NONE", 297 | "description" : "New town made by Turbanellos.", 298 | "licenseName" : "Creative Commons Attribution-ShareAlike", 299 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 300 | "modType" : "Town", 301 | "version" : "1.10", 302 | "changelog" : 303 | { 304 | "1.10" : [ "Great Updates" ], 305 | "1.04" : [ "Special buildings support" ], 306 | "1.03" : [ "Another fixes" ], 307 | "1.02" : [ "Some missing buildings" ], 308 | "1.01" : [ "New hero specialty format", "Bugfixes" ], 309 | "1.0" : [ "Initial release" ] 310 | }, 311 | "compatibility": 312 | { 313 | "min" : "1.0.0" 314 | }, 315 | "download" : "https://github.com/vcmi-mods/haven-town/archive/refs/heads/main.zip", 316 | "screenshots": 317 | [ 318 | "https://raw.githubusercontent.com/vcmi-mods/haven-town/main/screenshots/screen1.png" 319 | ] 320 | }, 321 | "reworked-commanders": 322 | { 323 | "name" : "Reworked commanders", 324 | "author" : "Concept and most Commanders' graphics - WoG Team; New Commanders Mod - Avatar support and MinosKing; Werewolf def - MDT; Orange Orc def - HotA Team; Idea and implemetation - Andruids; Sunseeker def - Andruids, based on Kuririn's Crusader; Totem def - Andruids, based on Rettosukero's Wendigo.", 325 | "contact" : "NONE", 326 | "description" : "Reworked commanders for original factions. Loosely based on abilities and design of WoG commanders. Read Reworked_Commanders_VCMI_Manual.pdf for more infos", 327 | "licenseName" : "Creative Commons Attribution-ShareAlike", 328 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 329 | "modType" : "Creatures", 330 | "version" : "1.11", 331 | "changelog" : 332 | { 333 | "1.11" : [ "Tweaks" ], 334 | "1.1" : [ "Balance changes" ], 335 | "1.0" : [ "Initial release" ] 336 | }, 337 | "compatibility": 338 | { 339 | "min" : "1.0.0" 340 | }, 341 | "conflicts": 342 | [ 343 | "wog.commanders", 344 | "wake-of-gods.commanders" 345 | ], 346 | "download" : "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/main.zip", 347 | "screenshots": 348 | [ 349 | "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/main/screenshots/screen1.png", 350 | "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/main/screenshots/screen2.png", 351 | "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/main/screenshots/screen3.png" 352 | ] 353 | }, 354 | "cathedral-town": 355 | { 356 | "name" : "Cathedral town", 357 | "author" : "Ben Yan", 358 | "contact" : "NONE", 359 | "description" : "Cathedral Town is a mod which recreated by Ben Yan.", 360 | "licenseName" : "Creative Commons Attribution-ShareAlike", 361 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 362 | "modType" : "Town", 363 | "version" : "1.0.2", 364 | "changelog" : 365 | { 366 | "1.0.2" : [ "Grail building support" ], 367 | "1.0.1" : [ "Special buildings support" ], 368 | "1.0.0" : [ "Initial release" ] 369 | }, 370 | "compatibility": 371 | { 372 | "min" : "1.0.0" 373 | }, 374 | "download" : "https://github.com/vcmi-mods/cathedral-town/archive/refs/heads/main.zip", 375 | "screenshots": 376 | [ 377 | "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen1.png", 378 | "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen2.png", 379 | "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen3.png", 380 | "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen4.png" 381 | ] 382 | }, 383 | "ruins-town": 384 | { 385 | "name" : "Ruins town", 386 | "author" : "Fiorin", 387 | "contact" : "https://fior.in", 388 | "description" : "Ruins town\nVersion 1.2.3 - 2020/11/27\n\nMod done with much affection, enjoy. I await your feedback.\n\n More info at http://heroescommunity.com/viewthread.php3?TID=44951", 389 | "licenseName" : "Creative Commons Attribution-ShareAlike", 390 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 391 | "modType" : "Town", 392 | "version" : "1.2.3", 393 | "compatibility" : 394 | { 395 | "min" : "1.0.0" 396 | }, 397 | "changelog" : 398 | { 399 | "1.2.3" : [ "Lots od changes and fixes" ], 400 | "0.95" : [ "Initial release" ] 401 | }, 402 | "download" : "https://github.com/vcmi-mods/ruins-town/archive/refs/heads/main.zip", 403 | "screenshots": 404 | [ 405 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen1.png", 406 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen2.png", 407 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen3.png", 408 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen4.png", 409 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen5.png", 410 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen6.png" 411 | ] 412 | }, 413 | "h3-themes": 414 | { 415 | "name" : "H3 themes", 416 | "author" : "New World Computing, HotA Team. Port: avatar", 417 | "contact" : "NONE", 418 | "description" : "Game screens from all HoMM3 parts: RoE, AB, SoD, HotA", 419 | "licenseName" : "Creative Commons Attribution-ShareAlike", 420 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 421 | "modType" : "Themes", 422 | "version" : "1.1", 423 | "compatibility" : 424 | { 425 | "min" : "1.0.0" 426 | }, 427 | "changelog" : 428 | { 429 | "1.1" : [ "Added one more screen" ], 430 | "1.0" : [ "Initial release" ] 431 | }, 432 | "download" : "https://github.com/vcmi-mods/h3-themes/archive/refs/heads/main.zip", 433 | "screenshots": 434 | [ 435 | "https://raw.githubusercontent.com/vcmi-mods/h3-themes/main/screenshots/screen1.png" 436 | ] 437 | }, 438 | "creatures-hidden-potential": 439 | { 440 | "name" : "Creatures Hidden Potential", 441 | "author" : "Andruids", 442 | "contact" : "madaosoul@gmail.com", 443 | "description" : "Mod adding various bonuses for creatures, to make use of their unused animations, with as slight impact to game's balance as possible.", 444 | "licenseName" : "Creative Commons Attribution-ShareAlike", 445 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 446 | "modType" : "Creatures", 447 | "version" : "0.4", 448 | "compatibility" : 449 | { 450 | "min" : "1.0.0" 451 | }, 452 | "changelog" : 453 | { 454 | "0.4" : [ "Initial release" ] 455 | }, 456 | "download" : "https://github.com/vcmi-mods/creatures-hidden-potential/archive/refs/heads/main.zip", 457 | "screenshots": 458 | [ 459 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen1.png", 460 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", 461 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" 462 | ] 463 | }, 464 | "asylum-town": 465 | { 466 | "name" : "Asylum town", 467 | "author" : "FF Team, mod by Turbanellos", 468 | "contact" : "https://forum.vcmi.eu/t/preserve-new-and-asylum-town/1061", 469 | "description" : "New town made by Turbanellos, The Forgotten Fields. Asylum Town is a new force with mental attack.", 470 | "licenseName" : "Creative Commons Attribution-ShareAlike", 471 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 472 | "modType" : "Town", 473 | "version" : "1.06", 474 | "compatibility" : 475 | { 476 | "min" : "1.0.0" 477 | }, 478 | "changelog" : 479 | { 480 | "1.06" : [ "Reworks and tweaks" ], 481 | "1.00" : [ "Initial release" ] 482 | }, 483 | "download" : "https://github.com/vcmi-mods/asylum-town/archive/refs/heads/main.zip", 484 | "screenshots": 485 | [ 486 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen1.png", 487 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen2.png", 488 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen3.png", 489 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen4.png", 490 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen5.png", 491 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", 492 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" 493 | ] 494 | }, 495 | "death-valley-town": 496 | { 497 | "name" : "Death Valley", 498 | "author" : "VCMI ROFL and Turbanellos(Ben Yan)", 499 | "contact" : "https://forum.vcmi.eu/t/death-valley-1-1-0-version/5648", 500 | "description" : "New necro town", 501 | "licenseName" : "Creative Commons Attribution-ShareAlike", 502 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 503 | "modType" : "Town", 504 | "version" : "1.10", 505 | "compatibility" : 506 | { 507 | "min" : "1.0.0" 508 | }, 509 | "changelog" : 510 | { 511 | "1.00" : [ "Initial release" ], 512 | "1.10" : [" changes for town screen, map objects, seige screen, creatures"] 513 | }, 514 | "download" : "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/main.zip", 515 | "screenshots": 516 | [ 517 | "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen1.png", 518 | "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen2.png", 519 | "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen3.png", 520 | "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen4.png", 521 | "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen5.png" 522 | ] 523 | }, 524 | "tartarus-town": 525 | { 526 | "name" : "Tartarus town", 527 | "author" : "FF Team, mod : Turbanellos", 528 | "contact" : "https://forum.vcmi.eu/t/new-town-tartarus-ice-demons/5623", 529 | "description" : "New town made by Turbanellos(Ben YAN), Tartarus is a new town for ice demons. Released in January 2022.", 530 | "licenseName" : "Creative Commons Attribution-ShareAlike", 531 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 532 | "modType" : "Town", 533 | "version" : "1.02", 534 | "compatibility" : 535 | { 536 | "min" : "1.0.0" 537 | }, 538 | "changelog" : 539 | { 540 | "1.02" : [ "New lvl6 creatures graphic" ], 541 | "1.01" : [ "Fixes, added Arrow Towers icons" ], 542 | "1.00" : [ "Initial release" ] 543 | }, 544 | "download" : "https://github.com/vcmi-mods/tartarus-town/archive/refs/heads/main.zip", 545 | "screenshots": 546 | [ 547 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen1.png", 548 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen2.png", 549 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen3.png", 550 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen4.png", 551 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", 552 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" 553 | ] 554 | }, 555 | "preserve-town": 556 | { 557 | "name" : "Preserve town", 558 | "author" : "FF Team, mod : Turbanellos", 559 | "contact" : "https://forum.vcmi.eu/t/preserve-new-and-asylum-town/1061", 560 | "description" : "New town made by Turbanellos, The Forgotten Fields, avatar, acidchalk", 561 | "licenseName" : "Creative Commons Attribution-ShareAlike", 562 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 563 | "modType" : "Town", 564 | "version" : "1.1.6", 565 | "compatibility" : 566 | { 567 | "min" : "1.0.0" 568 | }, 569 | "changelog" : 570 | { 571 | "1.1.6" : [ "Partial special building support" ], 572 | "1.1.5" : [ "New abilities and animations" ], 573 | "1.1.2" : [ "Small bug fixes", "New puzzle by acidchalk" ], 574 | "1.1.1" : [ "Upgaded graphic", "Hero males and female sprites on the battlefields", "Bug fixes" ], 575 | "1.1.0" : [ "Bug fixes" ], 576 | "1.0.0" : [ "Initial release" ] 577 | }, 578 | "download" : "https://github.com/vcmi-mods/preserve-town/archive/refs/heads/main.zip", 579 | "screenshots": 580 | [ 581 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen1.png", 582 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen2.png", 583 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen3.png", 584 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen4.png", 585 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", 586 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" 587 | ] 588 | }, 589 | "new-pavilion": 590 | { 591 | "name" : "Pavilion town", 592 | "author" : "Bastion New Town Group, edeksumo, New Pawulon Team, Acid Cave community", 593 | "contact" : "madaosoul@gmail.com", 594 | "description" : "Modified and balanced version of the egyptian 'Bastion Town' ported to VCMI by edeksumo with help of Acid Cave modding community, originally conceptualised and created by New Town Group.", 595 | "licenseName" : "Creative Commons Attribution-ShareAlike", 596 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 597 | "modType" : "Town", 598 | "version" : "2.7", 599 | "compatibility" : 600 | { 601 | "min" : "1.0.0" 602 | }, 603 | "changelog" : 604 | { 605 | }, 606 | "download" : "https://github.com/vcmi-mods/new-pavilion/archive/refs/heads/main.zip", 607 | "screenshots": 608 | [ 609 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen1.png", 610 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen2.png", 611 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen3.png", 612 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen4.png", 613 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen5.png" 614 | ] 615 | }, 616 | "abyss-town": 617 | { 618 | "name" : "Abyss town", 619 | "author" : "Axolotl (graphics), mitlandy, Tooandorisu, Warmonger, misiokles, Troggly, Dydzio, Anonymous, StasPV", 620 | "contact" : "https://forum.vcmi.eu/t/abyss-town-revived/1010", 621 | "description" : "New town with ocean climax.", 622 | "licenseName" : "Creative Commons Attribution-ShareAlike", 623 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 624 | "modType" : "Town", 625 | "version" : "0.8", 626 | "changelog" : 627 | { 628 | "0.80" : [ "Various fixes" ], 629 | "0.70" : [ "Initial release" ] 630 | }, 631 | "download" : "https://github.com/vcmi-mods/abyss-town/archive/refs/heads/main.zip", 632 | "screenshots": 633 | [ 634 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen1.png", 635 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen2.png", 636 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen3.png", 637 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", 638 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" 639 | ] 640 | }, 641 | "retreat-town": 642 | { 643 | "name" : "Retreat town", 644 | "author" : "XEricSin, Zeryss, acidchalk, avatar", 645 | "contact" : "http://heroescommunity.com/viewthread.php3?TID=42498", 646 | "description" : "Retreat town with chinese climax", 647 | "licenseName" : "Creative Commons Attribution-ShareAlike", 648 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 649 | "modType" : "Town", 650 | "version" : "0.5.1", 651 | "changelog" : 652 | { 653 | "0.5.1" : [ "Special buildings support" ], 654 | "0.5.0" : [ "Re-worked mod to match ERA original version" ] 655 | }, 656 | "download" : "https://github.com/vcmi-mods/retreat-town/archive/refs/heads/main.zip", 657 | "screenshots": 658 | [ 659 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen1.png", 660 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen2.png", 661 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen3.png" 662 | ] 663 | }, 664 | "cetatea-town": 665 | { 666 | "name" : "Cetatea town", 667 | "author" : "LizardWarrior, József Csanádi, Planet Avril, avatar, acidchalk", 668 | "contact" : "http://heroescommunity.com/viewthread.php3?TID=39546", 669 | "description" : "New town in Romanian Style", 670 | "licenseName" : "Creative Commons Attribution-ShareAlike", 671 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 672 | "modType" : "Town", 673 | "version" : "2.12", 674 | "changelog" : 675 | { 676 | "2.12" : [ "Special buildings support" ], 677 | "2.11" : [ "New hero specialty format", "New hero portraits" ] 678 | }, 679 | "download" : "https://github.com/vcmi-mods/cetatea-town/archive/refs/heads/main.zip", 680 | "screenshots": 681 | [ 682 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen1.png", 683 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen2.png", 684 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen3.png", 685 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", 686 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" 687 | ] 688 | }, 689 | "lost-souls": 690 | { 691 | "name" : "Lost souls", 692 | "author" : "speehgee", 693 | "contact" : "http://forum.vcmi.eu/viewforum.php?f=15", 694 | "description" : "Mod adds one new neutral creature - Lost Soul", 695 | "licenseName" : "Creative Commons Attribution-ShareAlike", 696 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 697 | "modType" : "Creatures", 698 | "version" : "0.1.1", 699 | "changelog" : 700 | { 701 | "0.1" : ["Initial release"], 702 | "0.1.1" : ["fixed advAmount value", "new calculated AI/Fight values"] 703 | }, 704 | "download" : "https://github.com/vcmi-mods/lost-souls/archive/refs/heads/main.zip", 705 | "screenshots": 706 | [ 707 | "https://raw.githubusercontent.com/vcmi-mods/lost-souls/main/screenshots/screen1.png" 708 | ] 709 | }, 710 | "kurek-creatures": 711 | { 712 | "name" : "Kurek creatures", 713 | "author" : "Kurek", 714 | "contact" : "http://www.forum.acidcave.net/profile.php?UID=4121", 715 | "description" : "Mod adds two new neutral creatures: Cherub and Marid", 716 | "licenseName" : "Creative Commons Attribution-ShareAlike", 717 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 718 | "modType" : "Creatures", 719 | "version" : "1.00", 720 | "changelog" : 721 | { 722 | "1.00" : ["Initial release"] 723 | }, 724 | "download" : "https://github.com/vcmi-mods/kurek-creatures/archive/refs/heads/main.zip", 725 | "screenshots": 726 | [ 727 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen1.png", 728 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen2.png" 729 | ] 730 | }, 731 | "undead-sphinxes": 732 | { 733 | "name" : "Undead Sphinxes", 734 | "author" : "witchking, fiorin, Trith, avatar, Andruids, fred79", 735 | "contact" : "http://forum.vcmi.eu", 736 | "description" : "Two new neutral creatures: Ashen Sphinx and Entombed Sphinx.", 737 | "licenseName" : "Creative Commons Attribution-ShareAlike", 738 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 739 | "modType" : "Creatures", 740 | "version" : "1.00", 741 | "changelog" : 742 | { 743 | "1.0" : ["Initial release"] 744 | }, 745 | "download" : "https://github.com/vcmi-mods/undead-sphinxes/archive/refs/heads/main.zip", 746 | "screenshots": 747 | [ 748 | "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/main/screenshots/screen1.png" 749 | ] 750 | }, 751 | "andruids-spell-balance": 752 | { 753 | "name" : "New Magic Balance", 754 | "author" : "Andruids", 755 | "contact" : "http://heroescommunity.com/viewthread.php3?TID=30659&PID=1466087#focus", 756 | "description" : "Modifications of Heroes 3 spells system (see screen1.png)", 757 | "licenseName" : "Creative Commons Attribution-ShareAlike", 758 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 759 | "modType" : "Spells", 760 | "version" : "0.8", 761 | "changelog" : 762 | { 763 | "0.8" : ["Initial release"] 764 | }, 765 | "download" : "https://github.com/vcmi-mods/andruids-spell-balance/archive/refs/heads/main.zip", 766 | "screenshots": 767 | [ 768 | "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" 769 | ] 770 | }, 771 | "new-old-spells-plus": 772 | { 773 | "name" : "New Old Spells+", 774 | "author" : "Warmonger, avatar, Kuririn, Andruids", 775 | "contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12", 776 | "description" : "9 spells from other Homm games", 777 | "licenseName" : "Creative Commons Attribution-ShareAlike", 778 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 779 | "modType" : "Spells", 780 | "version" : "0.9.5", 781 | "changelog" : 782 | { 783 | "0.8" : ["Initial release"], 784 | "0.9" : ["Added spell Fear (abandoned H3 spell)"], 785 | "0.9.1" : ["Small improvements"], 786 | "0.9.5" : ["Graphical lifting, some balancing improvements and adapting to the new spell format"] 787 | }, 788 | "download" : "https://github.com/vcmi-mods/new-old-spells-plus/archive/refs/heads/main.zip", 789 | "screenshots": 790 | [ 791 | "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" 792 | ] 793 | }, 794 | "andruids-expansion": 795 | { 796 | "name" : "Andruids Expansion mod", 797 | "author" : "Andruids, M&M Community", 798 | "contact" : "madaosoul@gmail.com", 799 | "description" : "Various modifications expanding Heroes III mechanics and elements (http://heroescommunity.com/viewthread.php3?TID=45286)", 800 | "licenseName" : "Creative Commons Attribution-ShareAlike", 801 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 802 | "modType" : "Expansion", 803 | "version" : "0.7.6", 804 | "changelog" : 805 | { 806 | "0.7.6" : ["Proper mod folder names"], 807 | "0.7.5" : ["Initial release"] 808 | }, 809 | "download" : "https://github.com/vcmi-mods/andruids-expansion/archive/refs/heads/main.zip", 810 | "screenshots": 811 | [ 812 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen1.png", 813 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen2.png", 814 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen3.png", 815 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen4.png", 816 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen5.png", 817 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen6.png", 818 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen7.png", 819 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen8.png", 820 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen9.png", 821 | "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen10.png" 822 | ] 823 | }, 824 | "portraits-packs": 825 | { 826 | "name" : "Portraits packs", 827 | "author" : "Dtnmang, Nitroflower, Striker, Vallex", 828 | "contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12", 829 | "description" : "Portaits packs for standard HoMM3 heroes ported from ERA2 mods by avatar", 830 | "licenseName" : "Creative Commons Attribution-ShareAlike", 831 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 832 | "modType" : "Graphical", 833 | "version" : "1.1", 834 | "changelog" : 835 | { 836 | "1.0" : ["Initial release"], 837 | "1.1" : [ "Added StableDiffusion AI portraits pack" ] 838 | }, 839 | "download" : "https://github.com/vcmi-mods/portraits-packs/archive/refs/heads/main.zip", 840 | "screenshots": 841 | [ 842 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen1.png", 843 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen2.png", 844 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", 845 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" 846 | ] 847 | }, 848 | "heroes-iii-orchestra": 849 | { 850 | "name" : "Heroes III Orchestra", 851 | "author" : "Heroes III Orchestra", 852 | "contact" : "https://www.youtube.com/c/HeroesOrchestra", 853 | "description" : "Orchestral tracks of Heroes III towns and combat, arranged by Heroes Orchestra", 854 | "licenseName" : "Creative Commons Attribution-ShareAlike", 855 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 856 | "modType" : "Music", 857 | "version" : "1.0", 858 | "changelog" : 859 | { 860 | "1.0" : ["Initial release"] 861 | }, 862 | "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/main.zip", 863 | "screenshots": 864 | [ 865 | ] 866 | }, 867 | "mega-pack-rus": 868 | { 869 | "name" : "MegaPack Rus", 870 | "author" : "ZoTaC, Dmitry - mygms.ru", 871 | "contact" : "https://forum.df2.ru/index.php?showtopic=35881", 872 | "description" : "Исправляет кривости графики русских локализаций SoD и Complete от Буки", 873 | "licenseName" : "Creative Commons Attribution-ShareAlike", 874 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 875 | "modType" : "Translation", 876 | "version" : "1.2", 877 | "changelog" : 878 | { 879 | "1.0" : ["Initial release"], 880 | "1.2" : [ "Update" ] 881 | }, 882 | "download" : "https://github.com/vcmi-mods/mega-pack-rus/archive/refs/heads/main.zip", 883 | "screenshots": 884 | [ 885 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-1.png", 886 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-2.png", 887 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-3.png", 888 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-4.png", 889 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-5.png", 890 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-6.png", 891 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-7.png" 892 | ] 893 | }, 894 | "new-interface-mod": 895 | { 896 | "name" : "New-style Interface", 897 | "author" : "FCst1 and NI team. Mod - Kuririn", 898 | "contact" : "https://www.youtube.com/watch?v=BMz2CFtGuEw", 899 | "description" : "Mod changes many of standard H3 interface graphics (not works for all resolutions).", 900 | "licenseName" : "Creative Commons Attribution-ShareAlike", 901 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 902 | "modType" : "Interface", 903 | "version" : "1.0", 904 | "changelog" : 905 | { 906 | "1.0" : ["Initial release"] 907 | }, 908 | "download" : "https://github.com/vcmi-mods/new-interface-mod/archive/refs/heads/main.zip", 909 | "screenshots": 910 | [ 911 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen1.png", 912 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen2.png", 913 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen3.png", 914 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen4.png", 915 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen5.png", 916 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen6.png" 917 | ] 918 | }, 919 | "hi-rez-menu": 920 | { 921 | "name" : "High-res Menu", 922 | "author" : "Dru", 923 | "contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12", 924 | "description" : "High resolution main menu pack created by Dru for VCMI", 925 | "licenseName" : "Creative Commons Attribution-ShareAlike", 926 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 927 | "modType" : "Interface", 928 | "version" : "1.1", 929 | "changelog" : 930 | { 931 | "1.0" : ["Initial release"], 932 | "1.1" : ["Fixes"] 933 | }, 934 | "download" : "https://github.com/vcmi-mods/hi-rez-menu/archive/refs/heads/main.zip", 935 | "screenshots": 936 | [ 937 | "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" 938 | ] 939 | }, 940 | "greenhouse-town": 941 | { 942 | "name" : "Greenhouse", 943 | "author" : "Mad Hatter Workshop", 944 | "contact" : "https://www.youtube.com/@MadHatterDomain", 945 | "description" : "Greenhouse - Town of Vegetables and Fruits.", 946 | "licenseName" : "Creative Commons Attribution-ShareAlike", 947 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 948 | "modType" : "Town", 949 | "version" : "0.1.5", 950 | "changelog" : 951 | { 952 | "0.1.5" : [ "Fixes" ], 953 | "0.1.0" : [ "Initial release" ] 954 | }, 955 | "download" : "https://github.com/vcmi-mods/greenhouse-town/archive/refs/heads/main.zip", 956 | "screenshots": 957 | [ 958 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen1.png", 959 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen2.png", 960 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", 961 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" 962 | ] 963 | }, 964 | "sand-tower": 965 | { 966 | "name" : "Sand Tower", 967 | "author" : "totkotoriy, J. M. Sower", 968 | "contact" : "http://forum.vcmi.eu/viewtopic.php?p=11046&sid=c709e37f1a8d8b91d286928e90cf4a8a#11046", 969 | "description" : "Mod changes Tower's internal look into more sandy", 970 | "licenseName" : "Creative Commons Attribution-ShareAlike", 971 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 972 | "modType" : "Graphical town modifications", 973 | "version" : "1.1", 974 | "changelog" : 975 | { 976 | "1.1" : [ "Fixes" ], 977 | "1.0" : [ "Initial release" ] 978 | }, 979 | "download" : "https://github.com/vcmi-mods/sand-tower/archive/refs/heads/main.zip", 980 | "screenshots": 981 | [ 982 | "https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/screenshots/screen1.png" 983 | ] 984 | }, 985 | "autumn-rampart": 986 | { 987 | "name" : "Autumn Rampart", 988 | "author" : "Irhak alias Kreegan", 989 | "contact" : "http://www.forum.acidcave.net/profile.php?UID=1646", 990 | "description" : "Alternative, darker Rampart", 991 | "licenseName" : "Creative Commons Attribution-ShareAlike", 992 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 993 | "modType" : "Graphical town modifications", 994 | "version" : "0.92", 995 | "changelog" : 996 | { 997 | "0.92" : [ "Fixed problem with map editor" ], 998 | "0.91" : [ "Adds Fountain of Fortune def", "Small fixes" ], 999 | "0.9" : [ "Initial release" ] 1000 | }, 1001 | "download" : "https://github.com/vcmi-mods/autumn-rampart/archive/refs/heads/main.zip", 1002 | "screenshots": 1003 | [ 1004 | "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/main/screenshots/screen1.png" 1005 | ] 1006 | }, 1007 | "another-rampart": 1008 | { 1009 | "name" : "Another Rampart", 1010 | "author" : "Unknown, kuririn, avatar", 1011 | "contact" : "unknown", 1012 | "description" : "Another Rampart mod for ERA II ported to VCMI. New internal Rampart look.", 1013 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1014 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1015 | "modType" : "Graphical town modifications", 1016 | "version" : "1.0", 1017 | "changelog" : 1018 | { 1019 | "1.1" : [ "Renamed folders" ], 1020 | "1.0" : [ "Initial release" ] 1021 | }, 1022 | "download" : "https://github.com/vcmi-mods/another-rampart/archive/refs/heads/main.zip", 1023 | "screenshots": 1024 | [ 1025 | "https://raw.githubusercontent.com/vcmi-mods/another-rampart/main/screenshots/screen1.png" 1026 | ] 1027 | }, 1028 | "red-castle": 1029 | { 1030 | "name" : "Red Castle", 1031 | "author" : "Mitlandy, avatar", 1032 | "contact" : "unknown", 1033 | "description" : "Tired of blue colour in Castle? What's about some red?", 1034 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1035 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1036 | "modType" : "Graphical town modifications", 1037 | "version" : "1.0", 1038 | "changelog" : 1039 | { 1040 | "1.1" : [ "Fixes" ], 1041 | "1.0" : [ "Initial release" ] 1042 | }, 1043 | "download" : "https://github.com/vcmi-mods/red-castle/archive/refs/heads/main.zip", 1044 | "screenshots": 1045 | [ 1046 | "https://raw.githubusercontent.com/vcmi-mods/red-castle/main/screenshots/screen1.png" 1047 | ] 1048 | }, 1049 | "lotrd-townscreens": 1050 | { 1051 | "name" : "LotRD townscreens", 1052 | "author" : "itsjustme", 1053 | "contact" : "https://www.youtube.com/watch?v=GTEYML9dXtQ", 1054 | "description" : "Ten townscreens ported from LotRD mod", 1055 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1056 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1057 | "modType" : "Graphical town modifications", 1058 | "version" : "1.0", 1059 | "changelog" : 1060 | { 1061 | "1.0" : [ "Initial release" ] 1062 | }, 1063 | "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/main.zip" 1064 | }, 1065 | "ghost-necropolis": 1066 | { 1067 | "name" : "Ghost Necropolis", 1068 | "author" : "avatar, Ubisoft", 1069 | "contact" : "unknown", 1070 | "description" : "Buildings in Necropolis are faded like a ghost", 1071 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1072 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1073 | "modType" : "Graphical town modifications", 1074 | "version" : "1.0", 1075 | "changelog" : 1076 | { 1077 | "1.0" : [ "Initial release" ] 1078 | }, 1079 | "download" : "https://github.com/vcmi-mods/ghost-necropolis/archive/refs/heads/main.zip", 1080 | "screenshots": 1081 | [ 1082 | "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/main/screenshots/screen1.png" 1083 | ] 1084 | }, 1085 | "quartz": 1086 | { 1087 | "name" : "Quartz", 1088 | "author" : "feanor, Bes", 1089 | "contact" : "https://www.youtube.com/watch?v=so3g9CGkNAU", 1090 | "description" : "HoMM3 towns in the mirror.", 1091 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1092 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1093 | "modType" : "Graphical town modifications", 1094 | "version" : "1.0", 1095 | "changelog" : 1096 | { 1097 | "1.0" : [ "Initial release" ] 1098 | }, 1099 | "download" : "https://github.com/vcmi-mods/quartz/archive/refs/heads/main.zip", 1100 | "screenshots": 1101 | [ 1102 | "https://raw.githubusercontent.com/vcmi-mods/quartz/main/screenshots/screen1.png" 1103 | ] 1104 | }, 1105 | "snow-in-Tower": 1106 | { 1107 | "name" : "Snow in Tower", 1108 | "author" : "Andruids, whoever made the snow gif", 1109 | "contact" : "madaosoul@gmail.com", 1110 | "description" : "Additional animation that changes the weather in the Tower town screen.", 1111 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1112 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1113 | "modType" : "Graphical town modifications", 1114 | "version" : "0.5", 1115 | "changelog" : 1116 | { 1117 | "0.5" : [ "Initial release" ] 1118 | }, 1119 | "download" : "https://github.com/vcmi-mods/snow-in-Tower/archive/refs/heads/main.zip", 1120 | "screenshots": 1121 | [ 1122 | "https://raw.githubusercontent.com/vcmi-mods/snow-in-Tower/main/screenshots/screen1.png" 1123 | ] 1124 | }, 1125 | "snow-castle": 1126 | { 1127 | "name" : "Snow Castle", 1128 | "author" : "Planet Avril, Dreamaker, avatar", 1129 | "contact" : "http://heroescommunity.com/viewthread.php3?TID=39205", 1130 | "description" : "Graphical town modifications.", 1131 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1132 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1133 | "modType" : "Graphical town modifications", 1134 | "version" : "1.0", 1135 | "changelog" : 1136 | { 1137 | "1.0" : [ "Initial release" ] 1138 | }, 1139 | "download" : "https://github.com/vcmi-mods/snow-castle/archive/refs/heads/main.zip", 1140 | "screenshots": 1141 | [ 1142 | "https://raw.githubusercontent.com/vcmi-mods/snow-castle/main/screenshots/screen1.png" 1143 | ] 1144 | }, 1145 | "resourceful-ai": 1146 | { 1147 | "mod": "https://raw.githubusercontent.com/vcmi-mods/resourceful-ai/master/mod.json", 1148 | "download": "https://github.com/vcmi-mods/resourceful-ai/archive/refs/heads/master.zip" 1149 | }, 1150 | "an-expansion": 1151 | { 1152 | "name" : "an-expansion", 1153 | "author" : "Vũ Đắc Hoàng Â", 1154 | "contact" : "https://vudachoangan.com", 1155 | "description" : "Rebalances skills, heroes, creatures, etc.", 1156 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1157 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1158 | "modType" : "Mechanics", 1159 | "version" : "2.5.0", 1160 | "changelog" : 1161 | { 1162 | }, 1163 | "download" : "https://github.com/vdhan/an-expansion/archive/refs/heads/master.zip" 1164 | }, 1165 | "refugee-town": 1166 | { 1167 | "name" : "Refugee Town", 1168 | "author" : "Yuya Noboru", 1169 | "contact" : "yuya.noboru@gmail.com", 1170 | "description" : "Refugee is a new town created by Yuya that takes its inspiration from WoG's Neutral Town and Heroes3's Refugee Camp. The common point of its creatures is their nonbelonging to the other factions. Thus, this castle sports concepts such as nomadism, motley armies and makeshift solutions. The town also takes elements from the Mesopotamian/Sumerian/Akkadian mythologies", 1171 | "licenseName" : "Creative Commons Attribution-ShareAlike", 1172 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 1173 | "modType" : "Town", 1174 | "version" : "0.5", 1175 | "compatibility" : 1176 | { 1177 | "min" : "1.0.0" 1178 | }, 1179 | "changelog" : 1180 | { 1181 | "0.5": [ "Some tweaks", "Tower icons added"], 1182 | "0.4": [ "Under construction..."], 1183 | "0.2": [ "New Townscreen and buildings; Renamed buildings and edited ressources costs and unlocking tree; Edited various game icons; Remastered town's theme; Added 2 new spells; Replaced Keyvan/Shayan specialties; Changed LVL7/LVL3 stats and abilities; Fixed the two 'Hordes' buildings; Fixed every .JSON files syntax errors and optimized their codes."], 1184 | "0.1": [ "Initial release: Added new factions 'Refugee'; Creatures & Heroes" ] 1185 | }, 1186 | "download" : "https://github.com/vcmi-mods/refugee-town/archive/refs/heads/main.zip", 1187 | "screenshots": 1188 | [ 1189 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen1.png", 1190 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen2.png", 1191 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen3.png", 1192 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen4.png", 1193 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen5.png" 1194 | ] 1195 | } 1196 | } 1197 | -------------------------------------------------------------------------------- /vcmi-1.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "vcmi-extras": 3 | { 4 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.2/mod.json", 5 | "download": "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.2.zip" 6 | }, 7 | "hota": { 8 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/hota/mod.json", 9 | "download": "https://github.com/vcmi-mods/horn-of-the-abyss/archive/refs/heads/vcmi-1.2.zip", 10 | "screenshots": 11 | [ 12 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/01.png", 13 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/02.png", 14 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/03.png", 15 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/04.png", 16 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/05.png", 17 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/06.png", 18 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/07.png", 19 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/08.png", 20 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.2/screenshots/09.png" 21 | ] 22 | }, 23 | "wake-of-gods": { 24 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/vcmi-1.2/mod.json", 25 | "download": "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/vcmi-1.2.zip" 26 | }, 27 | "tides-of-war": { 28 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/vcmi-1.2/mod.json", 29 | "download": "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/vcmi-1.2.zip" 30 | }, 31 | "courtyard": { 32 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.2/Courtyard/mod.json", 33 | "download": "https://github.com/vcmi-mods/courtyard/archive/refs/heads/vcmi-1.2.zip" 34 | }, 35 | "neutral-heroes": { 36 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/neutral-heroes/vcmi-1.2/mod.json", 37 | "download": "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/vcmi-1.2.zip" 38 | }, 39 | "asylum-town": { 40 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/asylum-town/vcmi-1.2/asylum-town/mod.json", 41 | "download": "https://github.com/vcmi-mods/asylum-town/archive/refs/heads/vcmi-1.2.zip", 42 | "screenshots": 43 | [ 44 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen1.png", 45 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen2.png", 46 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen3.png", 47 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen4.png", 48 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen5.png", 49 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", 50 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" 51 | ] 52 | }, 53 | "highlands-town": { 54 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.2/mod.json", 55 | "download": "https://github.com/vcmi-mods/highlands-town/archive/refs/heads/vcmi-1.2.zip" 56 | }, 57 | "new-pavilion": { 58 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.2/New Pavilion/mod.json", 59 | "download": "https://github.com/vcmi-mods/new-pavilion/archive/refs/heads/vcmi-1.2.zip" 60 | }, 61 | "cathedral-town": { 62 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.2/cathedral-town/mod.json", 63 | "download": "https://github.com/vcmi-mods/cathedral-town/archive/refs/heads/vcmi-1.2.zip" 64 | }, 65 | "death-valley-town": { 66 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/vcmi-1.2/death-valley-town/mod.json", 67 | "download": "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/vcmi-1.2.zip" 68 | }, 69 | "reworked-commanders": { 70 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/vcmi-1.2/reworked-commanders/mod.json", 71 | "download": "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/vcmi-1.2.zip" 72 | }, 73 | "andruids-expansion": { 74 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.2/andruids-expansion/mod.json", 75 | "download": "https://github.com/vcmi-mods/andruids-expansion/archive/refs/heads/vcmi-1.2.zip" 76 | }, 77 | "tok": { 78 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tok/vcmi-1.2/mod.json", 79 | "download": "https://github.com/vcmi-mods/tok/archive/refs/heads/vcmi-1.2.zip" 80 | }, 81 | "elemental-nodes": { 82 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.2/elemental-nodes/mod.json", 83 | "download": "https://github.com/vcmi-mods/elemental-nodes/archive/refs/heads/vcmi-1.2.zip", 84 | "screenshots": 85 | [ 86 | "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.2/screenshots/screen1.png", 87 | "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.2/screenshots/screen2.png" 88 | ] 89 | }, 90 | "german-translation": { 91 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/german-translation/vcmi-1.2/mod.json", 92 | "download": "https://github.com/vcmi-mods/german-translation/archive/refs/heads/vcmi-1.2.zip" 93 | }, 94 | "spanish-translation": { 95 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/spanish-translation/vcmi-1.2/spanish-translation/mod.json", 96 | "download": "https://github.com/vcmi-mods/spanish-translation/archive/refs/heads/vcmi-1.2.zip" 97 | }, 98 | "korean-translation": { 99 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/korean-translation/vcmi-1.2/korean-translation/mod.json", 100 | "download": "https://github.com/vcmi-mods/korean-translation/archive/refs/heads/vcmi-1.2.zip" 101 | }, 102 | "chinese-translation": { 103 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-translation/vcmi-1.2/chinese-translation/mod.json", 104 | "download": "https://github.com/vcmi-mods/chinese-translation/archive/refs/heads/vcmi-1.2.zip" 105 | }, 106 | "vcmi-mod-ce-ukr": 107 | { 108 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.2/ce-ukr/mod.json", 109 | "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.2.zip" 110 | }, 111 | "h3-for-vcmi-englisation": 112 | { 113 | "mod": "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.2/H3forVCMIenglisation/mod.json", 114 | "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.2.zip" 115 | }, 116 | 117 | "forge": 118 | { 119 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.2/mod.json", 120 | "download" : "https://github.com/vcmi-mods/forge/archive/refs/heads/vcmi-1.2.zip" 121 | }, 122 | "ai trace": 123 | { 124 | "mod": "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", 125 | "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip" 126 | }, 127 | "demo support" : { 128 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", 129 | "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip" 130 | }, 131 | "ai testing maps": 132 | { 133 | "mod": "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", 134 | "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip" 135 | }, 136 | "campaign-heroes": 137 | { 138 | "mod": "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/vcmi-1.2/mod.json", 139 | "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/vcmi-1.2.zip" 140 | }, 141 | "axolotl-creatures-pack": 142 | { 143 | "mod": "https://raw.githubusercontent.com/vcmi-mods/axolotl-creatures-pack/vcmi-1.2/mod.json", 144 | "download" : "https://github.com/vcmi-mods/axolotl-creatures-pack/archive/refs/heads/vcmi-1.2.zip" 145 | }, 146 | "tarnum": 147 | { 148 | "mod": "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.2/mod.json", 149 | "download" : "https://github.com/vcmi-mods/tarnum/archive/refs/heads/vcmi-1.2.zip" 150 | }, 151 | "magic-fader": 152 | { 153 | "mod": "https://raw.githubusercontent.com/vcmi-mods/magic-fader/vcmi-1.2/mod.json", 154 | "download" : "https://github.com/vcmi-mods/magic-fader/archive/refs/heads/vcmi-1.2.zip" 155 | }, 156 | "grove": 157 | { 158 | 159 | "mod": "https://raw.githubusercontent.com/vcmi-mods/grove/vcmi-1.2/Grove/mod.json", 160 | "download" : "https://github.com/vcmi-mods/grove/archive/refs/heads/vcmi-1.2.zip", 161 | "screenshots": 162 | [ 163 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen1.png", 164 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen2.png", 165 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen3.png", 166 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", 167 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" 168 | ] 169 | }, 170 | "combine-grail": 171 | { 172 | "mod": "https://raw.githubusercontent.com/vcmi-mods/combine-grail/vcmi-1.2/combine-grail/mod.json", 173 | "download" : "https://github.com/vcmi-mods/combine-grail/archive/refs/heads/vcmi-1.2.zip", 174 | "screenshots": 175 | [ 176 | "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" 177 | ] 178 | }, 179 | "fairy-town": 180 | { 181 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/fairy-town/vcmi-1.2/fairy-town/mod.json", 182 | "download" : "https://github.com/vcmi-mods/fairy-town/archive/refs/heads/vcmi-1.2.zip", 183 | "screenshots": 184 | [ 185 | "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" 186 | ] 187 | }, 188 | "haven-town": 189 | { 190 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.2/haven-town/mod.json", 191 | "download": "https://github.com/vcmi-mods/haven-town/archive/refs/heads/vcmi-1.2.zip", 192 | "screenshots": 193 | [ 194 | "https://raw.githubusercontent.com/vcmi-mods/haven-town/main/screenshots/screen1.png" 195 | ] 196 | }, 197 | "ruins-town": 198 | { 199 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.2/ruins-town/mod.json", 200 | "download" : "https://github.com/vcmi-mods/ruins-town/archive/refs/heads/vcmi-1.2.zip", 201 | "screenshots": 202 | [ 203 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen1.png", 204 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen2.png", 205 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen3.png", 206 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen4.png", 207 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen5.png", 208 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen6.png" 209 | ] 210 | }, 211 | "h3-themes": 212 | { 213 | 214 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.2/h3-themes/mod.json", 215 | "download" : "https://github.com/vcmi-mods/h3-themes/archive/refs/heads/vcmi-1.2.zip", 216 | "screenshots": 217 | [ 218 | "https://raw.githubusercontent.com/vcmi-mods/h3-themes/main/screenshots/screen1.png" 219 | ] 220 | }, 221 | "creatures-hidden-potential": 222 | { 223 | "name" : "Creatures Hidden Potential", 224 | "author" : "Andruids", 225 | "contact" : "madaosoul@gmail.com", 226 | "description" : "Mod adding various bonuses for creatures, to make use of their unused animations, with as slight impact to game's balance as possible.", 227 | "licenseName" : "Creative Commons Attribution-ShareAlike", 228 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 229 | "modType" : "Creatures", 230 | "version" : "0.4", 231 | "compatibility" : 232 | { 233 | "min" : "1.0.0" 234 | }, 235 | "changelog" : 236 | { 237 | "0.4" : [ "Initial release" ] 238 | }, 239 | "download" : "https://github.com/vcmi-mods/creatures-hidden-potential/archive/refs/heads/main.zip", 240 | "screenshots": 241 | [ 242 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen1.png", 243 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", 244 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" 245 | ] 246 | }, 247 | "tartarus-town": 248 | { 249 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/vcmi-1.2/tartarus-town/mod.json", 250 | "download" : "https://github.com/vcmi-mods/tartarus-town/archive/refs/heads/vcmi-1.2.zip", 251 | "screenshots": 252 | [ 253 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen1.png", 254 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen2.png", 255 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen3.png", 256 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen4.png", 257 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", 258 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" 259 | ] 260 | }, 261 | "preserve-town": 262 | { 263 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/preserve-town/vcmi-1.2/preserve/mod.json", 264 | "download" : "https://github.com/vcmi-mods/preserve-town/archive/refs/heads/vcmi-1.2.zip", 265 | "screenshots": 266 | [ 267 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen1.png", 268 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen2.png", 269 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen3.png", 270 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen4.png", 271 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", 272 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" 273 | ] 274 | }, 275 | "abyss-town": 276 | { 277 | 278 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/abyss-town/vcmi-1.2/abyss-town/mod.json", 279 | "download" : "https://github.com/vcmi-mods/abyss-town/archive/refs/heads/vcmi-1.2.zip", 280 | "screenshots": 281 | [ 282 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen1.png", 283 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen2.png", 284 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen3.png", 285 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", 286 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" 287 | ] 288 | }, 289 | "retreat-town": 290 | { 291 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.2/retreat-town/mod.json", 292 | "download": "https://github.com/vcmi-mods/retreat-town/archive/refs/heads/vcmi-1.2.zip", 293 | "screenshots": 294 | [ 295 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen1.png", 296 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen2.png", 297 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen3.png" 298 | ] 299 | }, 300 | "cetatea-town": 301 | { 302 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/vcmi-1.2/cetatea/mod.json", 303 | "download" : "https://github.com/vcmi-mods/cetatea-town/archive/refs/heads/vcmi-1.2.zip", 304 | "screenshots": 305 | [ 306 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen1.png", 307 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen2.png", 308 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen3.png", 309 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", 310 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" 311 | ] 312 | }, 313 | "lost-souls": 314 | { 315 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/lost-souls/vcmi-1.2/doomMod/mod.json", 316 | "download" : "https://github.com/vcmi-mods/lost-souls/archive/refs/heads/vcmi-1.2.zip", 317 | "screenshots": 318 | [ 319 | "https://raw.githubusercontent.com/vcmi-mods/lost-souls/main/screenshots/screen1.png" 320 | ] 321 | }, 322 | "kurek-creatures": 323 | { 324 | 325 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/vcmi-1.2/kurek-creatures/mod.json", 326 | "download" : "https://github.com/vcmi-mods/kurek-creatures/archive/refs/heads/vcmi-1.2.zip", 327 | "screenshots": 328 | [ 329 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen1.png", 330 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen2.png" 331 | ] 332 | }, 333 | "undead-sphinxes": 334 | { 335 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/vcmi-1.2/undeadSphinxes/mod.json", 336 | "download" : "https://github.com/vcmi-mods/undead-sphinxes/archive/refs/heads/vcmi-1.2.zip", 337 | "screenshots": 338 | [ 339 | "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/main/screenshots/screen1.png" 340 | ] 341 | }, 342 | "andruids-spell-balance": 343 | { 344 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/vcmi-1.2/andruids-spell-balance/mod.json", 345 | "download" : "https://github.com/vcmi-mods/andruids-spell-balance/archive/refs/heads/vcmi-1.2.zip", 346 | "screenshots": 347 | [ 348 | "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" 349 | ] 350 | }, 351 | "new-old-spells-plus": 352 | { 353 | "name" : "New Old Spells+", 354 | "author" : "Warmonger, avatar, Kuririn, Andruids", 355 | "contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12", 356 | "description" : "9 spells from other Homm games", 357 | "licenseName" : "Creative Commons Attribution-ShareAlike", 358 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 359 | "modType" : "Spells", 360 | "version" : "0.9.5", 361 | "changelog" : 362 | { 363 | "0.8" : ["Initial release"], 364 | "0.9" : ["Added spell Fear (abandoned H3 spell)"], 365 | "0.9.1" : ["Small improvements"], 366 | "0.9.5" : ["Graphical lifting, some balancing improvements and adapting to the new spell format"] 367 | }, 368 | "download" : "https://github.com/vcmi-mods/new-old-spells-plus/archive/refs/heads/main.zip", 369 | "screenshots": 370 | [ 371 | "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" 372 | ] 373 | }, 374 | "portraits-packs": 375 | { 376 | "name" : "Portraits packs", 377 | "author" : "Dtnmang, Nitroflower, Striker, Vallex", 378 | "contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12", 379 | "description" : "Portaits packs for standard HoMM3 heroes ported from ERA2 mods by avatar", 380 | "licenseName" : "Creative Commons Attribution-ShareAlike", 381 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 382 | "modType" : "Graphical", 383 | "version" : "1.1", 384 | "changelog" : 385 | { 386 | "1.0" : ["Initial release"], 387 | "1.1" : [ "Added StableDiffusion AI portraits pack" ] 388 | }, 389 | "download" : "https://github.com/vcmi-mods/portraits-packs/archive/refs/heads/main.zip", 390 | "screenshots": 391 | [ 392 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen1.png", 393 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen2.png", 394 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", 395 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" 396 | ] 397 | }, 398 | "heroes-iii-orchestra": 399 | { 400 | "name" : "Heroes III Orchestra", 401 | "author" : "Heroes III Orchestra", 402 | "contact" : "https://www.youtube.com/c/HeroesOrchestra", 403 | "description" : "Orchestral tracks of Heroes III towns and combat, arranged by Heroes Orchestra", 404 | "licenseName" : "Creative Commons Attribution-ShareAlike", 405 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 406 | "modType" : "Music", 407 | "version" : "1.0", 408 | "changelog" : 409 | { 410 | "1.0" : ["Initial release"] 411 | }, 412 | "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/main.zip", 413 | "screenshots": 414 | [ 415 | ] 416 | }, 417 | "mega-pack-rus": 418 | { 419 | "name" : "MegaPack Rus", 420 | "author" : "ZoTaC, Dmitry - mygms.ru", 421 | "contact" : "https://forum.df2.ru/index.php?showtopic=35881", 422 | "description" : "Исправляет кривости графики русских локализаций SoD и Complete от Буки", 423 | "licenseName" : "Creative Commons Attribution-ShareAlike", 424 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 425 | "modType" : "Translation", 426 | "version" : "1.2", 427 | "changelog" : 428 | { 429 | "1.0" : ["Initial release"], 430 | "1.2" : [ "Update" ] 431 | }, 432 | "download" : "https://github.com/vcmi-mods/mega-pack-rus/archive/refs/heads/main.zip", 433 | "screenshots": 434 | [ 435 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-1.png", 436 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-2.png", 437 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-3.png", 438 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-4.png", 439 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-5.png", 440 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-6.png", 441 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-7.png" 442 | ] 443 | }, 444 | "new-interface-mod": 445 | { 446 | "name" : "New-style Interface", 447 | "author" : "FCst1 and NI team. Mod - Kuririn", 448 | "contact" : "https://www.youtube.com/watch?v=BMz2CFtGuEw", 449 | "description" : "Mod changes many of standard H3 interface graphics (not works for all resolutions).", 450 | "licenseName" : "Creative Commons Attribution-ShareAlike", 451 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 452 | "modType" : "Interface", 453 | "version" : "1.0", 454 | "changelog" : 455 | { 456 | "1.0" : ["Initial release"] 457 | }, 458 | "download" : "https://github.com/vcmi-mods/new-interface-mod/archive/refs/heads/main.zip", 459 | "screenshots": 460 | [ 461 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen1.png", 462 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen2.png", 463 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen3.png", 464 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen4.png", 465 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen5.png", 466 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen6.png" 467 | ] 468 | }, 469 | "hi-rez-menu": 470 | { 471 | "name" : "High-res Menu", 472 | "author" : "Dru", 473 | "contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12", 474 | "description" : "High resolution main menu pack created by Dru for VCMI", 475 | "licenseName" : "Creative Commons Attribution-ShareAlike", 476 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 477 | "modType" : "Interface", 478 | "version" : "1.1", 479 | "changelog" : 480 | { 481 | "1.0" : ["Initial release"], 482 | "1.1" : ["Fixes"] 483 | }, 484 | "download" : "https://github.com/vcmi-mods/hi-rez-menu/archive/refs/heads/main.zip", 485 | "screenshots": 486 | [ 487 | "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" 488 | ] 489 | }, 490 | "no-battle-intro": 491 | { 492 | "name" : "No Battle Music", 493 | "description" : "Here are a few silent .wav files to remove the start up battle fx sound that freezes battle for around 3 seconds.", 494 | "version" : "1.0", 495 | "author" : "Nicolás Suárez", 496 | "contact" : "forum.vcmi.eu", 497 | "modType" : "Music", 498 | "changelog" : 499 | { 500 | "1.00" : [ "Initial release" ] 501 | }, 502 | "download": "https://github.com/vcmi-mods/no-battle-intro/archive/refs/heads/master.zip" 503 | }, 504 | "greenhouse-town": 505 | { 506 | "name" : "Greenhouse", 507 | "author" : "Mad Hatter Workshop", 508 | "contact" : "https://www.youtube.com/@MadHatterDomain", 509 | "description" : "Greenhouse - Town of Vegetables and Fruits.", 510 | "licenseName" : "Creative Commons Attribution-ShareAlike", 511 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 512 | "modType" : "Town", 513 | "version" : "0.1.5", 514 | "changelog" : 515 | { 516 | "0.1.5" : [ "Fixes" ], 517 | "0.1.0" : [ "Initial release" ] 518 | }, 519 | "download" : "https://github.com/vcmi-mods/greenhouse-town/archive/refs/heads/main.zip", 520 | "screenshots": 521 | [ 522 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen1.png", 523 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen2.png", 524 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", 525 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" 526 | ] 527 | }, 528 | "sand-tower": 529 | { 530 | "name" : "Sand Tower", 531 | "author" : "totkotoriy, J. M. Sower", 532 | "contact" : "http://forum.vcmi.eu/viewtopic.php?p=11046&sid=c709e37f1a8d8b91d286928e90cf4a8a#11046", 533 | "description" : "Mod changes Tower's internal look into more sandy", 534 | "licenseName" : "Creative Commons Attribution-ShareAlike", 535 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 536 | "modType" : "Graphical town modifications", 537 | "version" : "1.1", 538 | "changelog" : 539 | { 540 | "1.1" : [ "Fixes" ], 541 | "1.0" : [ "Initial release" ] 542 | }, 543 | "download" : "https://github.com/vcmi-mods/sand-tower/archive/refs/heads/main.zip", 544 | "screenshots": 545 | [ 546 | "https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/screenshots/screen1.png" 547 | ] 548 | }, 549 | "autumn-rampart": 550 | { 551 | "name" : "Autumn Rampart", 552 | "author" : "Irhak alias Kreegan", 553 | "contact" : "http://www.forum.acidcave.net/profile.php?UID=1646", 554 | "description" : "Alternative, darker Rampart", 555 | "licenseName" : "Creative Commons Attribution-ShareAlike", 556 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 557 | "modType" : "Graphical town modifications", 558 | "version" : "0.92", 559 | "changelog" : 560 | { 561 | "0.92" : [ "Fixed problem with map editor" ], 562 | "0.91" : [ "Adds Fountain of Fortune def", "Small fixes" ], 563 | "0.9" : [ "Initial release" ] 564 | }, 565 | "download" : "https://github.com/vcmi-mods/autumn-rampart/archive/refs/heads/main.zip", 566 | "screenshots": 567 | [ 568 | "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/main/screenshots/screen1.png" 569 | ] 570 | }, 571 | "another-rampart": 572 | { 573 | "name" : "Another Rampart", 574 | "author" : "Unknown, kuririn, avatar", 575 | "contact" : "unknown", 576 | "description" : "Another Rampart mod for ERA II ported to VCMI. New internal Rampart look.", 577 | "licenseName" : "Creative Commons Attribution-ShareAlike", 578 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 579 | "modType" : "Graphical town modifications", 580 | "version" : "1.0", 581 | "changelog" : 582 | { 583 | "1.1" : [ "Renamed folders" ], 584 | "1.0" : [ "Initial release" ] 585 | }, 586 | "download" : "https://github.com/vcmi-mods/another-rampart/archive/refs/heads/main.zip", 587 | "screenshots": 588 | [ 589 | "https://raw.githubusercontent.com/vcmi-mods/another-rampart/main/screenshots/screen1.png" 590 | ] 591 | }, 592 | "red-castle": 593 | { 594 | "mod": "https://raw.githubusercontent.com/vcmi-mods/red-castle/vcmi-1.2/red-castle/mod.json", 595 | "download" : "https://github.com/vcmi-mods/red-castle/archive/refs/heads/vcmi-1.2.zip", 596 | "screenshots": 597 | [ 598 | "https://raw.githubusercontent.com/vcmi-mods/red-castle/main/screenshots/screen1.png" 599 | ] 600 | }, 601 | "lotrd-townscreens": 602 | { 603 | "name" : "LotRD townscreens", 604 | "author" : "itsjustme", 605 | "contact" : "https://www.youtube.com/watch?v=GTEYML9dXtQ", 606 | "description" : "Ten townscreens ported from LotRD mod", 607 | "licenseName" : "Creative Commons Attribution-ShareAlike", 608 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 609 | "modType" : "Graphical town modifications", 610 | "version" : "1.0", 611 | "changelog" : 612 | { 613 | "1.0" : [ "Initial release" ] 614 | }, 615 | "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/main.zip" 616 | }, 617 | "ghost-necropolis": 618 | { 619 | "name" : "Ghost Necropolis", 620 | "author" : "avatar, Ubisoft", 621 | "contact" : "unknown", 622 | "description" : "Buildings in Necropolis are faded like a ghost", 623 | "licenseName" : "Creative Commons Attribution-ShareAlike", 624 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 625 | "modType" : "Graphical town modifications", 626 | "version" : "1.0", 627 | "changelog" : 628 | { 629 | "1.0" : [ "Initial release" ] 630 | }, 631 | "download" : "https://github.com/vcmi-mods/ghost-necropolis/archive/refs/heads/main.zip", 632 | "screenshots": 633 | [ 634 | "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/main/screenshots/screen1.png" 635 | ] 636 | }, 637 | "quartz": 638 | { 639 | "name" : "Quartz", 640 | "author" : "feanor, Bes", 641 | "contact" : "https://www.youtube.com/watch?v=so3g9CGkNAU", 642 | "description" : "HoMM3 towns in the mirror.", 643 | "licenseName" : "Creative Commons Attribution-ShareAlike", 644 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 645 | "modType" : "Graphical town modifications", 646 | "version" : "1.0", 647 | "changelog" : 648 | { 649 | "1.0" : [ "Initial release" ] 650 | }, 651 | "download" : "https://github.com/vcmi-mods/quartz/archive/refs/heads/main.zip", 652 | "screenshots": 653 | [ 654 | "https://raw.githubusercontent.com/vcmi-mods/quartz/main/screenshots/screen1.png" 655 | ] 656 | }, 657 | "snow-in-tower": 658 | { 659 | "name" : "Snow in Tower", 660 | "author" : "Andruids, whoever made the snow gif", 661 | "contact" : "madaosoul@gmail.com", 662 | "description" : "Additional animation that changes the weather in the Tower town screen.", 663 | "licenseName" : "Creative Commons Attribution-ShareAlike", 664 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 665 | "modType" : "Graphical town modifications", 666 | "version" : "0.5", 667 | "changelog" : 668 | { 669 | "0.5" : [ "Initial release" ] 670 | }, 671 | "download" : "https://github.com/vcmi-mods/snow-in-Tower/archive/refs/heads/main.zip", 672 | "screenshots": 673 | [ 674 | "https://raw.githubusercontent.com/vcmi-mods/snow-in-Tower/main/screenshots/screen1.png" 675 | ] 676 | }, 677 | "snow-castle": 678 | { 679 | "mod": "https://raw.githubusercontent.com/vcmi-mods/snow-castle/vcmi-1.2/snow-castle/mod.json", 680 | "download" : "https://github.com/vcmi-mods/snow-castle/archive/refs/heads/vcmi-1.2.zip", 681 | "screenshots": 682 | [ 683 | "https://raw.githubusercontent.com/vcmi-mods/snow-castle/main/screenshots/screen1.png" 684 | ] 685 | }, 686 | "resourceful-ai": 687 | { 688 | "mod": "https://raw.githubusercontent.com/vcmi-mods/resourceful-ai/vcmi-1.2/mod.json", 689 | "download": "https://github.com/vcmi-mods/resourceful-ai/archive/refs/heads/vcmi-1.2.zip" 690 | }, 691 | "an-expansion": 692 | { 693 | "name" : "an-expansion", 694 | "author" : "Vũ Đắc Hoàng Â", 695 | "contact" : "https://vudachoangan.com", 696 | "description" : "Rebalances skills, heroes, creatures, etc.", 697 | "licenseName" : "Creative Commons Attribution-ShareAlike", 698 | "licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed", 699 | "modType" : "Mechanics", 700 | "version" : "2.5.0", 701 | "changelog" : 702 | { 703 | }, 704 | "download" : "https://github.com/vdhan/an-expansion/archive/refs/heads/master.zip" 705 | }, 706 | "refugee-town": 707 | { 708 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.2/refugee-town/mod.json", 709 | "download" : "https://github.com/vcmi-mods/refugee-town/archive/refs/heads/vcmi-1.2.zip", 710 | "screenshots": 711 | [ 712 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen1.png", 713 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen2.png", 714 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen3.png", 715 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen4.png", 716 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen5.png" 717 | ] 718 | }, 719 | "asphalt-terrain": 720 | { 721 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/asphalt-terrain/mod.json", 722 | "download" : "https://github.com/vcmi-mods/asphalt-terrain/archive/refs/heads/vcmi-1.2.zip", 723 | "screenshots": 724 | [ 725 | "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen01.png", 726 | "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen02.png" 727 | ] 728 | }, 729 | "stardust-terrain": 730 | { 731 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/stardust-terrain/mod.json", 732 | "download" : "https://github.com/vcmi-mods/stardust-terrain/archive/refs/heads/vcmi-1.2.zip", 733 | "screenshots": 734 | [ 735 | "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/screenshots/screen1.png", 736 | "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/screenshots/screen2.png", 737 | "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/screenshots/screen3.png" 738 | ] 739 | }, 740 | "forge2k": 741 | { 742 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.2/Forge2k/mod.json", 743 | "download" : "https://github.com/vcmi-mods/forge2k/archive/refs/heads/vcmi-1.2.zip", 744 | "screenshots": 745 | [ 746 | "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.2/screenshots/screen01.png", 747 | "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.2/screenshots/screen02.png" 748 | ] 749 | }, 750 | "ab-bad-ending-assets": 751 | { 752 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.2/AB Bad Ending Assets/mod.json", 753 | "download" : "https://github.com/vcmi-mods/ab-bad-ending-assets/archive/refs/heads/vcmi-1.2.zip", 754 | "screenshots": 755 | [ 756 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.2/screenshots/screen01.png", 757 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.2/screenshots/screen02.png" 758 | ] 759 | }, 760 | "ab-bad-ending-maps": 761 | { 762 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.2/AB Bad Ending Maps/mod.json", 763 | "download" : "https://github.com/vcmi-mods/ab-bad-ending-maps/archive/refs/heads/vcmi-1.2.zip", 764 | "screenshots": 765 | [ 766 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.2/screenshots/screen01.png", 767 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.2/screenshots/screen02.png" 768 | ] 769 | }, 770 | "towns-new-views": 771 | { 772 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/towns-new-views/mod.json", 773 | "download" : "https://github.com/vcmi-mods/towns-new-views/archive/refs/heads/vcmi-1.2.zip", 774 | "screenshots": 775 | [ 776 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen1.png", 777 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen2.png", 778 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen3.png", 779 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen4.png" 780 | ] 781 | } 782 | } 783 | -------------------------------------------------------------------------------- /vcmi-1.3.json: -------------------------------------------------------------------------------- 1 | { 2 | "vcmi-extras": 3 | { 4 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.3/mod.json", 5 | "download": "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.3.zip" 6 | }, 7 | "hota": { 8 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/hota/mod.json", 9 | "download": "https://github.com/vcmi-mods/horn-of-the-abyss/archive/refs/heads/vcmi-1.3.zip", 10 | "screenshots": 11 | [ 12 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/01.png", 13 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/02.png", 14 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/03.png", 15 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/04.png", 16 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/05.png", 17 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/06.png", 18 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/07.png", 19 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/08.png", 20 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.3/screenshots/09.png" 21 | ] 22 | }, 23 | "wake-of-gods": { 24 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/vcmi-1.3/mod.json", 25 | "download": "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/vcmi-1.3.zip" 26 | }, 27 | "tides-of-war": { 28 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/vcmi-1.3/mod.json", 29 | "download": "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/vcmi-1.3.zip" 30 | }, 31 | "courtyard": { 32 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.3/Courtyard/mod.json", 33 | "download": "https://github.com/vcmi-mods/courtyard/archive/refs/heads/vcmi-1.3.zip" 34 | }, 35 | "neutral-heroes": { 36 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/neutral-heroes/vcmi-1.3/mod.json", 37 | "download": "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/vcmi-1.3.zip" 38 | }, 39 | "asylum-town": { 40 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/asylum-town/vcmi-1.3/asylum-town/mod.json", 41 | "download": "https://github.com/vcmi-mods/asylum-town/archive/refs/heads/vcmi-1.3.zip", 42 | "screenshots": 43 | [ 44 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen1.png", 45 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen2.png", 46 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen3.png", 47 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen4.png", 48 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen5.png", 49 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", 50 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" 51 | ] 52 | }, 53 | "highlands-town": { 54 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.3/mod.json", 55 | "download": "https://github.com/vcmi-mods/highlands-town/archive/refs/heads/vcmi-1.3.zip" 56 | }, 57 | "new-pavilion": { 58 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/New Pavilion/mod.json", 59 | "download": "https://github.com/vcmi-mods/new-pavilion/archive/refs/heads/vcmi-1.3.zip", 60 | "screenshots": 61 | [ 62 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/screenshots/screen1.png", 63 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/screenshots/screen2.png", 64 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/screenshots/screen3.png", 65 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/screenshots/screen4.png", 66 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/screenshots/screen5.png", 67 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.3/screenshots/screen6.png" 68 | ] 69 | }, 70 | "cathedral-town": { 71 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.3/cathedral-town/mod.json", 72 | "download": "https://github.com/vcmi-mods/cathedral-town/archive/refs/heads/vcmi-1.3.zip" 73 | }, 74 | "death-valley-town": { 75 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/vcmi-1.3/death-valley-town/mod.json", 76 | "download": "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/vcmi-1.3.zip" 77 | }, 78 | "reworked-commanders": { 79 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/vcmi-1.2/reworked-commanders/mod.json", 80 | "download": "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/vcmi-1.2.zip" 81 | }, 82 | "andruids-expansion": { 83 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.2/andruids-expansion/mod.json", 84 | "download": "https://github.com/vcmi-mods/andruids-expansion/archive/refs/heads/vcmi-1.2.zip" 85 | }, 86 | "tok": { 87 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tok/vcmi-1.2/mod.json", 88 | "download": "https://github.com/vcmi-mods/tok/archive/refs/heads/vcmi-1.2.zip" 89 | }, 90 | "elemental-nodes": { 91 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.3/elemental-nodes/mod.json", 92 | "download": "https://github.com/vcmi-mods/elemental-nodes/archive/refs/heads/vcmi-1.3.zip", 93 | "screenshots": 94 | [ 95 | "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.2/screenshots/screen1.png", 96 | "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.2/screenshots/screen2.png" 97 | ] 98 | }, 99 | "german-translation": { 100 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/german-translation/vcmi-1.2/mod.json", 101 | "download": "https://github.com/vcmi-mods/german-translation/archive/refs/heads/vcmi-1.2.zip" 102 | }, 103 | "spanish-translation": { 104 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/spanish-translation/vcmi-1.2/spanish-translation/mod.json", 105 | "download": "https://github.com/vcmi-mods/spanish-translation/archive/refs/heads/vcmi-1.2.zip" 106 | }, 107 | "korean-translation": { 108 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/korean-translation/vcmi-1.2/korean-translation/mod.json", 109 | "download": "https://github.com/vcmi-mods/korean-translation/archive/refs/heads/vcmi-1.2.zip" 110 | }, 111 | "italian-translation": { 112 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/italian-translation/vcmi-1.3/italian-translation/mod.json", 113 | "download": "https://github.com/vcmi-mods/italian-translation/archive/refs/heads/vcmi-1.3.zip" 114 | }, 115 | "czech-translation": { 116 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-translation/vcmi-1.3/czech-translation/mod.json", 117 | "download": "https://github.com/vcmi-mods/czech-translation/archive/refs/heads/vcmi-1.3.zip" 118 | }, 119 | "finnish-translation": { 120 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/finnish-translation/vcmi-1.3/finnish-translation/mod.json", 121 | "download": "https://github.com/vcmi-mods/finnish-translation/archive/refs/heads/vcmi-1.3.zip" 122 | }, 123 | "portuguese-translation": { 124 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/portuguese-translation/vcmi-1.3/portuguese-translation/mod.json", 125 | "download": "https://github.com/vcmi-mods/portuguese-translation/archive/refs/heads/vcmi-1.3.zip" 126 | }, 127 | "swedish-translation": { 128 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/swedish-translation/vcmi-1.3/swedish-translation/mod.json", 129 | "download": "https://github.com/vcmi-mods/swedish-translation/archive/refs/heads/vcmi-1.3.zip" 130 | }, 131 | "turkish-translation": { 132 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/turkish-translation/vcmi-1.3/turkish-translation/mod.json", 133 | "download": "https://github.com/vcmi-mods/turkish-translation/archive/refs/heads/vcmi-1.3.zip" 134 | }, 135 | "hungarian-translation": { 136 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/hungarian-translation/vcmi-1.3/hungarian-translation/mod.json", 137 | "download": "https://github.com/vcmi-mods/hungarian-translation/archive/refs/heads/vcmi-1.3.zip" 138 | }, 139 | "chinese-translation": { 140 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-translation/vcmi-1.2/chinese-translation/mod.json", 141 | "download": "https://github.com/vcmi-mods/chinese-translation/archive/refs/heads/vcmi-1.2.zip" 142 | }, 143 | "french-translation": { 144 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/french-translation/vcmi-1.2/french-translation/mod.json", 145 | "download": "https://github.com/vcmi-mods/french-translation/archive/refs/heads/vcmi-1.2.zip" 146 | }, 147 | "vietnamese-translation": { 148 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/vietnamese-translation/vcmi-1.3/vietnamese-translation/mod.json", 149 | "download": "https://github.com/vcmi-mods/vietnamese-translation/archive/refs/heads/vcmi-1.3.zip" 150 | }, 151 | "polish-translation": { 152 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/polish-translation/vcmi-1.2/polish-translation/mod.json", 153 | "download": "https://github.com/vcmi-mods/polish-translation/archive/refs/heads/vcmi-1.2.zip" 154 | }, 155 | "vcmi-mod-ce-ukr": 156 | { 157 | "mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.2/ce-ukr/mod.json", 158 | "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.2.zip" 159 | }, 160 | "h3-for-vcmi-englisation": 161 | { 162 | "mod": "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.2/H3forVCMIenglisation/mod.json", 163 | "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.2.zip" 164 | }, 165 | 166 | "forge": 167 | { 168 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.3/mod.json", 169 | "download" : "https://github.com/vcmi-mods/forge/archive/refs/heads/vcmi-1.3.zip" 170 | }, 171 | "ai trace": 172 | { 173 | "mod": "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", 174 | "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip" 175 | }, 176 | "demo support" : { 177 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", 178 | "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip", 179 | "downloadSize" : 4.234 180 | }, 181 | "ai testing maps": 182 | { 183 | "mod": "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", 184 | "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip" 185 | }, 186 | "campaign-heroes": 187 | { 188 | "mod": "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/vcmi-1.2/mod.json", 189 | "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/vcmi-1.2.zip" 190 | }, 191 | "axolotl-creatures-pack": 192 | { 193 | "mod": "https://raw.githubusercontent.com/vcmi-mods/axolotl-creatures-pack/vcmi-1.3/mod.json", 194 | "download" : "https://github.com/vcmi-mods/axolotl-creatures-pack/archive/refs/heads/vcmi-1.3.zip" 195 | }, 196 | "tarnum": 197 | { 198 | "mod": "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.2/mod.json", 199 | "download" : "https://github.com/vcmi-mods/tarnum/archive/refs/heads/vcmi-1.2.zip" 200 | }, 201 | "magic-fader": 202 | { 203 | "mod": "https://raw.githubusercontent.com/vcmi-mods/magic-fader/vcmi-1.2/mod.json", 204 | "download" : "https://github.com/vcmi-mods/magic-fader/archive/refs/heads/vcmi-1.2.zip" 205 | }, 206 | "grove": 207 | { 208 | 209 | "mod": "https://raw.githubusercontent.com/vcmi-mods/grove/vcmi-1.3/Grove/mod.json", 210 | "download" : "https://github.com/vcmi-mods/grove/archive/refs/heads/vcmi-1.3.zip", 211 | "screenshots": 212 | [ 213 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen1.png", 214 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen2.png", 215 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen3.png", 216 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", 217 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" 218 | ] 219 | }, 220 | "combine-grail": 221 | { 222 | "mod": "https://raw.githubusercontent.com/vcmi-mods/combine-grail/vcmi-1.2/combine-grail/mod.json", 223 | "download" : "https://github.com/vcmi-mods/combine-grail/archive/refs/heads/vcmi-1.2.zip", 224 | "screenshots": 225 | [ 226 | "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" 227 | ] 228 | }, 229 | "fairy-town": 230 | { 231 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/fairy-town/vcmi-1.3/fairy-town/mod.json", 232 | "download" : "https://github.com/vcmi-mods/fairy-town/archive/refs/heads/vcmi-1.3.zip", 233 | "screenshots": 234 | [ 235 | "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" 236 | ] 237 | }, 238 | "haven-town": 239 | { 240 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.3/haven-town/mod.json", 241 | "download": "https://github.com/vcmi-mods/haven-town/archive/refs/heads/vcmi-1.3.zip", 242 | "screenshots": 243 | [ 244 | "https://raw.githubusercontent.com/vcmi-mods/haven-town/main/screenshots/screen1.png" 245 | ] 246 | }, 247 | "ruins-town": 248 | { 249 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.3/ruins-town/mod.json", 250 | "download" : "https://github.com/vcmi-mods/ruins-town/archive/refs/heads/vcmi-1.3.zip", 251 | "screenshots": 252 | [ 253 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen1.png", 254 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen2.png", 255 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen3.png", 256 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen4.png", 257 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen5.png", 258 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen6.png" 259 | ] 260 | }, 261 | "h3-themes": 262 | { 263 | 264 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.2/h3-themes/mod.json", 265 | "download" : "https://github.com/vcmi-mods/h3-themes/archive/refs/heads/vcmi-1.2.zip", 266 | "screenshots": 267 | [ 268 | "https://raw.githubusercontent.com/vcmi-mods/h3-themes/main/screenshots/screen1.png" 269 | ] 270 | }, 271 | "creatures-hidden-potential": 272 | { 273 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/vcmi-1.3/creatures-hidden-potential/mod.json", 274 | "download" : "https://github.com/vcmi-mods/creatures-hidden-potential/archive/refs/heads/vcmi-1.3.zip", 275 | "screenshots": 276 | [ 277 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen1.png", 278 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", 279 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" 280 | ] 281 | }, 282 | "tartarus-town": 283 | { 284 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/vcmi-1.3/tartarus-town/mod.json", 285 | "download" : "https://github.com/vcmi-mods/tartarus-town/archive/refs/heads/vcmi-1.3.zip", 286 | "screenshots": 287 | [ 288 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen1.png", 289 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen2.png", 290 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen3.png", 291 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen4.png", 292 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", 293 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" 294 | ] 295 | }, 296 | "preserve-town": 297 | { 298 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/preserve-town/vcmi-1.3/preserve/mod.json", 299 | "download" : "https://github.com/vcmi-mods/preserve-town/archive/refs/heads/vcmi-1.3.zip", 300 | "screenshots": 301 | [ 302 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen1.png", 303 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen2.png", 304 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen3.png", 305 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen4.png", 306 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", 307 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" 308 | ] 309 | }, 310 | "abyss-town": 311 | { 312 | 313 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/abyss-town/vcmi-1.3/abyss-town/mod.json", 314 | "download" : "https://github.com/vcmi-mods/abyss-town/archive/refs/heads/vcmi-1.3.zip", 315 | "screenshots": 316 | [ 317 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen1.png", 318 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen2.png", 319 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen3.png", 320 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", 321 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" 322 | ] 323 | }, 324 | "retreat-town": 325 | { 326 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.2/retreat-town/mod.json", 327 | "download": "https://github.com/vcmi-mods/retreat-town/archive/refs/heads/vcmi-1.3.zip", 328 | "screenshots": 329 | [ 330 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen1.png", 331 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen2.png", 332 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen3.png" 333 | ] 334 | }, 335 | "cetatea-town": 336 | { 337 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/vcmi-1.3/cetatea/mod.json", 338 | "download" : "https://github.com/vcmi-mods/cetatea-town/archive/refs/heads/vcmi-1.3.zip", 339 | "screenshots": 340 | [ 341 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen1.png", 342 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen2.png", 343 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen3.png", 344 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", 345 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" 346 | ] 347 | }, 348 | "lost-souls": 349 | { 350 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/lost-souls/vcmi-1.2/doomMod/mod.json", 351 | "download" : "https://github.com/vcmi-mods/lost-souls/archive/refs/heads/vcmi-1.2.zip", 352 | "screenshots": 353 | [ 354 | "https://raw.githubusercontent.com/vcmi-mods/lost-souls/main/screenshots/screen1.png" 355 | ] 356 | }, 357 | "carpet-whisperers": 358 | { 359 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/carpet-whisperers/mod.json", 360 | "download" : "https://github.com/vcmi-mods/carpet-whisperers/archive/refs/heads/vcmi-1.3.zip", 361 | "screenshots": 362 | [ 363 | "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/screenshots/screen01.png", 364 | "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/screenshots/screen02.png" 365 | ] 366 | }, 367 | "kurek-creatures": 368 | { 369 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/vcmi-1.2/kurek-creatures/mod.json", 370 | "download" : "https://github.com/vcmi-mods/kurek-creatures/archive/refs/heads/vcmi-1.2.zip", 371 | "screenshots": 372 | [ 373 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen1.png", 374 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen2.png" 375 | ] 376 | }, 377 | "undead-sphinxes": 378 | { 379 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/vcmi-1.2/undeadSphinxes/mod.json", 380 | "download" : "https://github.com/vcmi-mods/undead-sphinxes/archive/refs/heads/vcmi-1.2.zip", 381 | "screenshots": 382 | [ 383 | "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/main/screenshots/screen1.png" 384 | ] 385 | }, 386 | "andruids-spell-balance": 387 | { 388 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/vcmi-1.2/andruids-spell-balance/mod.json", 389 | "download" : "https://github.com/vcmi-mods/andruids-spell-balance/archive/refs/heads/vcmi-1.2.zip", 390 | "screenshots": 391 | [ 392 | "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" 393 | ] 394 | }, 395 | "new-old-spells-plus": 396 | { 397 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/vcmi-1.2/newOldSpellsPlus/mod.json", 398 | "download" : "https://github.com/vcmi-mods/new-old-spells-plus/archive/refs/heads/vcmi-1.2.zip", 399 | "screenshots": 400 | [ 401 | "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" 402 | ] 403 | }, 404 | "portraits-packs": 405 | { 406 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/Portaits%20packs/mod.json", 407 | "download" : "https://github.com/vcmi-mods/portraits-packs/archive/refs/heads/main.zip", 408 | "screenshots": 409 | [ 410 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen1.png", 411 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen2.png", 412 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", 413 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" 414 | ] 415 | }, 416 | "heroes-iii-orchestra": 417 | { 418 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-iii-orchestra/main/Heroes%20III%20Orchestra/mod.json", 419 | "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/main.zip", 420 | "screenshots": 421 | [ 422 | ] 423 | }, 424 | "russian-translation": 425 | { 426 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/russian-translation/mod.json", 427 | "download" : "https://github.com/vcmi-mods/mega-pack-rus/archive/refs/heads/vcmi-1.2.zip", 428 | "screenshots": 429 | [ 430 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-1.png", 431 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-2.png", 432 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-3.png", 433 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-4.png", 434 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-5.png", 435 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-6.png", 436 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.2/screenshots/sc-7.png" 437 | ] 438 | }, 439 | "new-interface-mod": 440 | { 441 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/New%20Interface%20Mod/mod.json", 442 | "download" : "https://github.com/vcmi-mods/new-interface-mod/archive/refs/heads/main.zip", 443 | "screenshots": 444 | [ 445 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen1.png", 446 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen2.png", 447 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen3.png", 448 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen4.png", 449 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen5.png", 450 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen6.png" 451 | ] 452 | }, 453 | "hi-rez-menu": 454 | { 455 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/new-menu/mod.json", 456 | "download" : "https://github.com/vcmi-mods/hi-rez-menu/archive/refs/heads/main.zip", 457 | "screenshots": 458 | [ 459 | "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" 460 | ] 461 | }, 462 | "greenhouse-town": 463 | { 464 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/vcmi-1.3/Greenhouse/mod.json", 465 | "download" : "https://github.com/vcmi-mods/greenhouse-town/archive/refs/heads/vcmi-1.3.zip", 466 | "screenshots": 467 | [ 468 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen1.png", 469 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen2.png", 470 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", 471 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" 472 | ] 473 | }, 474 | "sand-tower": 475 | { 476 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/sand-tower/mod.json", 477 | "download" : "https://github.com/vcmi-mods/sand-tower/archive/refs/heads/main.zip", 478 | "screenshots": 479 | [ 480 | "https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/screenshots/screen1.png" 481 | ] 482 | }, 483 | "autumn-rampart": 484 | { 485 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/main/autumn-rampart/mod.json", 486 | "download" : "https://github.com/vcmi-mods/autumn-rampart/archive/refs/heads/main.zip", 487 | "screenshots": 488 | [ 489 | "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/main/screenshots/screen1.png" 490 | ] 491 | }, 492 | "another-rampart": 493 | { 494 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/another-rampart/main/another-rampart/mod.json", 495 | "download" : "https://github.com/vcmi-mods/another-rampart/archive/refs/heads/main.zip", 496 | "screenshots": 497 | [ 498 | "https://raw.githubusercontent.com/vcmi-mods/another-rampart/main/screenshots/screen1.png" 499 | ] 500 | }, 501 | "red-castle": 502 | { 503 | "mod": "https://raw.githubusercontent.com/vcmi-mods/red-castle/vcmi-1.2/red-castle/mod.json", 504 | "download" : "https://github.com/vcmi-mods/red-castle/archive/refs/heads/vcmi-1.2.zip", 505 | "screenshots": 506 | [ 507 | "https://raw.githubusercontent.com/vcmi-mods/red-castle/main/screenshots/screen1.png" 508 | ] 509 | }, 510 | "lotrd-townscreens": 511 | { 512 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/lotrd-townscreens/main/lotrd-townscreens/mod.json", 513 | "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/main.zip" 514 | }, 515 | "ghost-necropolis": 516 | { 517 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/main/ghost-necropolis/mod.json", 518 | "download" : "https://github.com/vcmi-mods/ghost-necropolis/archive/refs/heads/main.zip", 519 | "screenshots": 520 | [ 521 | "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/main/screenshots/screen1.png" 522 | ] 523 | }, 524 | "quartz": 525 | { 526 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/quartz/main/quartz/mod.json", 527 | "download" : "https://github.com/vcmi-mods/quartz/archive/refs/heads/main.zip", 528 | "screenshots": 529 | [ 530 | "https://raw.githubusercontent.com/vcmi-mods/quartz/main/screenshots/screen1.png" 531 | ] 532 | }, 533 | "snow-in-Tower": 534 | { 535 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/snow-in-tower/main/snow-in-Tower/mod.json", 536 | "download" : "https://github.com/vcmi-mods/snow-in-Tower/archive/refs/heads/main.zip", 537 | "screenshots": 538 | [ 539 | "https://raw.githubusercontent.com/vcmi-mods/snow-in-Tower/main/screenshots/screen1.png" 540 | ] 541 | }, 542 | "snow-castle": 543 | { 544 | "mod": "https://raw.githubusercontent.com/vcmi-mods/snow-castle/vcmi-1.2/snow-castle/mod.json", 545 | "download" : "https://github.com/vcmi-mods/snow-castle/archive/refs/heads/vcmi-1.2.zip", 546 | "screenshots": 547 | [ 548 | "https://raw.githubusercontent.com/vcmi-mods/snow-castle/main/screenshots/screen1.png" 549 | ] 550 | }, 551 | "resourceful-ai": 552 | { 553 | "mod": "https://raw.githubusercontent.com/vcmi-mods/resourceful-ai/vcmi-1.2/mod.json", 554 | "download": "https://github.com/vcmi-mods/resourceful-ai/archive/refs/heads/vcmi-1.2.zip" 555 | }, 556 | "an-expansion": 557 | { 558 | "mod" : "https://raw.githubusercontent.com/vdhan/an-expansion/master/mod.json", 559 | "download" : "https://github.com/vdhan/an-expansion/archive/refs/heads/master.zip" 560 | }, 561 | "refugee-town": 562 | { 563 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.3/refugee-town/mod.json", 564 | "download" : "https://github.com/vcmi-mods/refugee-town/archive/refs/heads/vcmi-1.3.zip", 565 | "screenshots": 566 | [ 567 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen1.png", 568 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen2.png", 569 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen3.png", 570 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen4.png", 571 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen5.png" 572 | ] 573 | }, 574 | "asphalt-terrain": 575 | { 576 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.3/asphalt-terrain/mod.json", 577 | "download" : "https://github.com/vcmi-mods/asphalt-terrain/archive/refs/heads/vcmi-1.3.zip", 578 | "screenshots": 579 | [ 580 | "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen01.png", 581 | "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen02.png" 582 | ] 583 | }, 584 | "stardust-terrain": 585 | { 586 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.3/stardust-terrain/mod.json", 587 | "download" : "https://github.com/vcmi-mods/stardust-terrain/archive/refs/heads/vcmi-1.3.zip", 588 | "screenshots": 589 | [ 590 | "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/screenshots/screen1.png", 591 | "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/screenshots/screen2.png", 592 | "https://raw.githubusercontent.com/vcmi-mods/stardust-terrain/vcmi-1.2/screenshots/screen3.png" 593 | ] 594 | }, 595 | "newtown-terrains": 596 | { 597 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.3/newtown-terrains/mod.json", 598 | "download" : "https://github.com/vcmi-mods/newtown-terrains/archive/refs/heads/vcmi-1.3.zip" 599 | }, 600 | "forge2k": 601 | { 602 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.3/Forge2k/mod.json", 603 | "download" : "https://github.com/vcmi-mods/forge2k/archive/refs/heads/vcmi-1.3.zip", 604 | "screenshots": 605 | [ 606 | "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.2/screenshots/screen01.png", 607 | "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.2/screenshots/screen02.png" 608 | ] 609 | }, 610 | "ab-bad-ending-assets": 611 | { 612 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.3/AB Bad Ending Assets/mod.json", 613 | "download" : "https://github.com/vcmi-mods/ab-bad-ending-assets/archive/refs/heads/vcmi-1.3.zip", 614 | "screenshots": 615 | [ 616 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.2/screenshots/screen01.png", 617 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.2/screenshots/screen02.png" 618 | ] 619 | }, 620 | "ab-bad-ending-maps": 621 | { 622 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.3/AB Bad Ending Maps/mod.json", 623 | "download" : "https://github.com/vcmi-mods/ab-bad-ending-maps/archive/refs/heads/vcmi-1.3.zip", 624 | "screenshots": 625 | [ 626 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.2/screenshots/screen01.png", 627 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.2/screenshots/screen02.png" 628 | ] 629 | }, 630 | "warzyw-templates": { 631 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/warzyw-templates/vcmi-1.3/warzyw-templates/mod.json", 632 | "download": "https://github.com/vcmi-mods/warzyw-templates/archive/refs/heads/vcmi-1.3.zip" 633 | }, 634 | "wyrmsun-boats": 635 | { 636 | 637 | "mod": "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.3/wyrmsun-boats/mod.json", 638 | "download" : "https://github.com/vcmi-mods/wyrmsun-boats/archive/refs/heads/vcmi-1.3.zip", 639 | "screenshots": 640 | [ 641 | "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.3/screenshots/screen1.png", 642 | "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.3/screenshots/screen2.png" 643 | ] 644 | }, 645 | "ensrick-portraits": 646 | { 647 | 648 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.3/ensrick-portraits/mod.json", 649 | "download" : "https://github.com/vcmi-mods/ensrick-portraits/archive/refs/heads/vcmi-1.3.zip", 650 | "screenshots": 651 | [ 652 | "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/main/screenshots/screen01.png", 653 | "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/main/screenshots/screen02.png" 654 | ] 655 | }, 656 | "morns-battlefields": 657 | { 658 | 659 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.3/morns-battlefields/mod.json", 660 | "download" : "https://github.com/vcmi-mods/morns-battlefields/archive/refs/heads/vcmi-1.3.zip", 661 | "screenshots": 662 | [ 663 | "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.3/screenshots/01.png" 664 | ] 665 | }, 666 | "towns-new-views": 667 | { 668 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/towns-new-views/mod.json", 669 | "download" : "https://github.com/vcmi-mods/towns-new-views/archive/refs/heads/vcmi-1.2.zip", 670 | "screenshots": 671 | [ 672 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen1.png", 673 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen2.png", 674 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen3.png", 675 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen4.png" 676 | ] 677 | }, 678 | "invisible-man": 679 | { 680 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/invisible-man/vcmi-1.3/invisible-man/mod.json", 681 | "download" : "https://github.com/vcmi-mods/invisible-man/archive/refs/heads/vcmi-1.3.zip", 682 | "screenshots": 683 | [ 684 | "https://raw.githubusercontent.com/vcmi-mods/invisible-man/vcmi-1.3/screenshots/screen01.png" 685 | ] 686 | }, 687 | "campaings-pack": 688 | { 689 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.3/campaings-pack/mod.json", 690 | "download" : "https://github.com/vcmi-mods/campaings-pack/archive/refs/heads/vcmi-1.3.zip", 691 | "screenshots": 692 | [ 693 | "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.3/screenshots/screen01.png" 694 | ] 695 | }, 696 | "dydzios-map-pack": 697 | { 698 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/dydzios-map-pack/vcmi-1.3/dydzios-map-pack/mod.json", 699 | "download" : "https://github.com/vcmi-mods/dydzios-map-pack/archive/refs/heads/vcmi-1.3.zip" 700 | }, 701 | "h3-campaigns-remade": 702 | { 703 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/h3-campaigns-remade/mod.json", 704 | "download" : "https://github.com/vcmi-mods/h3-campaigns-remade/archive/refs/heads/vcmi-1.3.zip", 705 | "screenshots": 706 | [ 707 | "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen01.png", 708 | "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen02.png", 709 | "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen03.png" 710 | ] 711 | }, 712 | "zefix": 713 | { 714 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/zefix/vcmi-1.2/ZEfix/mod.json", 715 | "download" : "https://github.com/vcmi-mods/zefix/archive/refs/heads/vcmi-1.2.zip" 716 | }, 717 | "test-map-spells-mod": 718 | { 719 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/test-map-spells-mod/mod.json", 720 | "download" : "https://github.com/vcmi-mods/test-map-spells-mod/archive/refs/heads/vcmi-1.3.zip", 721 | "screenshots": 722 | [ 723 | "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen01.png", 724 | "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen02.png", 725 | "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen03.png" 726 | ] 727 | }, 728 | "third-upgrades": 729 | { 730 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.3/third-upgrades/mod.json", 731 | "download" : "https://github.com/vcmi-mods/third-upgrades/archive/refs/heads/vcmi-1.3.zip", 732 | "screenshots": 733 | [ 734 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.3/screenshots/screen01.png", 735 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.3/screenshots/screen02.png", 736 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.3/screenshots/screen03.png", 737 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.3/screenshots/screen04.png" 738 | ] 739 | }, 740 | "pah3-singleplayer-tournament": { 741 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.3/pah3-singleplayer-tournament/mod.json", 742 | "download": "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.3.zip" 743 | }, 744 | "mighty-heroes-iii": { 745 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.3/mighty-heroes-iii/mod.json", 746 | "download": "https://github.com/vcmi-mods/mighty-heroes-iii/archive/refs/heads/vcmi-1.3.zip", 747 | "screenshots": 748 | [ 749 | "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.3/screenshots/01.png", 750 | "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.3/screenshots/02.png", 751 | "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.3/screenshots/03.png" 752 | ] 753 | }, 754 | "erathian-font": { 755 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.3/erathian-font/mod.json", 756 | "download": "https://github.com/vcmi-mods/erathian-font/archive/refs/heads/vcmi-1.3.zip" 757 | }, 758 | "farriery-town": 759 | { 760 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.3/farriery-town/mod.json", 761 | "download" : "https://github.com/vcmi-mods/farriery-town/archive/refs/heads/vcmi-1.3.zip", 762 | "screenshots": 763 | [ 764 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.3/Screenshots/buildings.png", 765 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.3/Screenshots/Dragon Utopia.png", 766 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.3/Screenshots/Farriery-town-and-lineup.png", 767 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.3/Screenshots/lineup.png", 768 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.3/Screenshots/Spoiled Land.png" 769 | ] 770 | } 771 | } 772 | -------------------------------------------------------------------------------- /vcmi-1.4-archive.json: -------------------------------------------------------------------------------- 1 | { 2 | "horde-town" : { 3 | "mod" : "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/horde-town/mod.json", 4 | "download" : "https://github.com/misiokles/horde-town/archive/refs/heads/vcmi-1.4.zip", 5 | "screenshots" : [ 6 | "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen1.png", 7 | "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen2.png", 8 | "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen3.png", 9 | "https://raw.githubusercontent.com/misiokles/horde-town/vcmi-1.4/screenshots/screen4.png" 10 | ], 11 | "downloadSize" : 20.168 12 | }, 13 | "ciberium-town" : { 14 | "mod" : "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/ciberium-town/mod.json", 15 | "download" : "https://github.com/misiokles/ciberium-town/archive/refs/heads/vcmi-1.4.zip", 16 | "screenshots" : [ 17 | "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen1.png", 18 | "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen2.png", 19 | "https://raw.githubusercontent.com/misiokles/ciberium-town/vcmi-1.4/screenshots/screen3.png" 20 | ], 21 | "downloadSize" : 24.778 22 | }, 23 | "foundry-town" : { 24 | "mod" : "https://raw.githubusercontent.com/misiokles/foundry-town/vcmi-1.4/foundry-town/mod.json", 25 | "download" : "https://github.com/misiokles/foundry-town/archive/refs/heads/vcmi-1.4.zip", 26 | "downloadSize" : 18.394 27 | }, 28 | "small-era-mods" : { 29 | "mod" : "https://raw.githubusercontent.com/misiokles/small-era-mods/vcmi-1.4/small-era-mods/mod.json", 30 | "download" : "https://github.com/misiokles/small-era-mods/archive/refs/heads/vcmi-1.4.zip", 31 | "downloadSize" : 15.073 32 | }, 33 | "HoMM3-alternative-towns-music" : { 34 | "mod" : "https://raw.githubusercontent.com/misiokles/HoMM3-alternative-towns-music/vcmi-1.4/HoMM3-alternative-towns-music/mod.json", 35 | "download" : "https://github.com/misiokles/HoMM3-alternative-towns-music/archive/refs/heads/vcmi-1.4.zip", 36 | "downloadSize" : 9.836 37 | }, 38 | "ruins-town-alt" : { 39 | "mod" : "https://raw.githubusercontent.com/misiokles/ruins-town-alt/vcmi-1.4/ruins-town-alt/mod.json", 40 | "download" : "https://github.com/misiokles/ruins-town-alt/archive/refs/heads/vcmi-1.4.zip", 41 | "downloadSize" : 18.857 42 | }, 43 | "astral-town" : { 44 | "mod" : "https://raw.githubusercontent.com/misiokles/astral-town/vcmi-1.4/astral-town/mod.json", 45 | "download" : "https://github.com/misiokles/astral-town/archive/refs/heads/vcmi-1.4.zip", 46 | "downloadSize" : 10.293 47 | }, 48 | "golemcraft" : { 49 | "mod" : "https://raw.githubusercontent.com/misiokles/golemcraft/vcmi-1.4/golemcraft/mod.json", 50 | "download" : "https://github.com/misiokles/golemcraft/archive/refs/heads/vcmi-1.4.zip", 51 | "downloadSize" : 0.075 52 | }, 53 | "slothlux-town" : { 54 | "mod" : "https://raw.githubusercontent.com/misiokles/slothlux-town/vcmi-1.4/slothlux-town/mod.json", 55 | "download" : "https://github.com/misiokles/slothlux-town/archive/refs/heads/vcmi-1.4.zip", 56 | "downloadSize" : 8.811 57 | }, 58 | "peachville-town" : { 59 | "mod" : "https://raw.githubusercontent.com/misiokles/peachville-town/vcmi-1.4/peachville-town/mod.json", 60 | "download" : "https://github.com/misiokles/peachville-town/archive/refs/heads/vcmi-1.4.zip", 61 | "downloadSize" : 8.069 62 | }, 63 | "palace-town" : { 64 | "mod" : "https://raw.githubusercontent.com/misiokles/palace-town/vcmi-1.4/palace-town/mod.json", 65 | "download" : "https://github.com/misiokles/palace-town/archive/refs/heads/vcmi-1.4.zip", 66 | "downloadSize" : 14.683 67 | }, 68 | "h4-arts-hero" : { 69 | "mod" : "https://raw.githubusercontent.com/misiokles/h4-arts-hero/vcmi-1.4/h4-arts-hero/mod.json", 70 | "download" : "https://github.com/misiokles/h4-arts-hero/archive/refs/heads/vcmi-1.4.zip", 71 | "downloadSize" : 0.216 72 | }, 73 | "h2-artifacts" : { 74 | "mod" : "https://raw.githubusercontent.com/misiokles/h2-artifacts/vcmi-1.4/h2-artifacts/mod.json", 75 | "download" : "https://github.com/misiokles/h2-artifacts/archive/refs/heads/vcmi-1.4.zip", 76 | "downloadSize" : 0.173 77 | }, 78 | "alpha-mod" : { 79 | "mod" : "https://raw.githubusercontent.com/misiokles/alpha-mod/vcmi-1.4/alpha-mod/mod.json", 80 | "download" : "https://github.com/misiokles/alpha-mod/archive/refs/heads/vcmi-1.4.zip", 81 | "downloadSize" : 6.885 82 | }, 83 | "regna-town" : { 84 | "mod" : "https://raw.githubusercontent.com/misiokles/regna-town/vcmi-1.4/regna-town/mod.json", 85 | "download" : "https://github.com/misiokles/regna-town/archive/refs/heads/vcmi-1.4.zip", 86 | "downloadSize" : 12.344 87 | }, 88 | "swarm-town" : { 89 | "mod" : "https://raw.githubusercontent.com/misiokles/swarm-town/vcmi-1.4/swarm-town/mod.json", 90 | "download" : "https://github.com/misiokles/swarm-town/archive/refs/heads/vcmi-1.4.zip", 91 | "downloadSize" : 16.025 92 | }, 93 | "rampstorm" : { 94 | "mod" : "https://raw.githubusercontent.com/misiokles/rampstorm/vcmi-1.4/rampstorm/mod.json", 95 | "download" : "https://github.com/misiokles/rampstorm/archive/refs/heads/vcmi-1.4.zip", 96 | "downloadSize" : 8.255 97 | }, 98 | "atlantis-town" : { 99 | "mod" : "https://raw.githubusercontent.com/misiokles/atlantis-town/vcmi-1.4/atlantis-town/mod.json", 100 | "download" : "https://github.com/misiokles/atlantis-town/archive/refs/heads/vcmi-1.4.zip", 101 | "downloadSize" : 11.283 102 | }, 103 | "technocracy-town" : { 104 | "mod" : "https://raw.githubusercontent.com/misiokles/technocracy-town/vcmi-1.4/technocracy-town/mod.json", 105 | "download" : "https://github.com/misiokles/technocracy-town/archive/refs/heads/vcmi-1.4.zip", 106 | "downloadSize" : 17.799 107 | }, 108 | "eldorado-town" : { 109 | "mod" : "https://raw.githubusercontent.com/kdmcser/eldorado-town/vcmi-1.5/mod.json", 110 | "download" : "https://github.com/kdmcser/eldorado-town/archive/refs/heads/vcmi-1.5.zip", 111 | "downloadSize" : 19.259 112 | }, 113 | "haven-old" : { 114 | "mod" : "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/haven-old/mod.json", 115 | "download" : "https://github.com/misiokles/haven-old/archive/refs/heads/vcmi-1.5.zip", 116 | "screenshots" : [ 117 | "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen1.png", 118 | "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen2.png", 119 | "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen3.png", 120 | "https://raw.githubusercontent.com/misiokles/haven-old/vcmi-1.5/screenshots/screen4.png" 121 | ], 122 | "downloadSize" : 13.341 123 | }, 124 | "bastille-old" : { 125 | "mod" : "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/bastille-old/mod.json", 126 | "download" : "https://github.com/misiokles/bastille-old/archive/refs/heads/vcmi-1.5.zip", 127 | "screenshots" : [ 128 | "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen1.png", 129 | "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen2.png", 130 | "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen3.png", 131 | "https://raw.githubusercontent.com/misiokles/bastille-old/vcmi-1.5/screenshots/screen4.png" 132 | ], 133 | "downloadSize" : 17.588 134 | }, 135 | "fiorin-heroes" : { 136 | "mod" : "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/fiorin-heroes/mod.json", 137 | "download" : "https://github.com/misiokles/fiorin-heroes/archive/refs/heads/vcmi-1.5.zip", 138 | "screenshots" : [ 139 | "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen1.png", 140 | "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen2.png", 141 | "https://raw.githubusercontent.com/misiokles/fiorin-heroes/vcmi-1.5/screenshots/screen3.png" 142 | ], 143 | "downloadSize" : 2.525 144 | }, 145 | "plane-of-earth-town" : { 146 | "mod" : "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/plane-of-earth-town/mod.json", 147 | "download" : "https://github.com/misiokles/plane-of-earth-town/archive/refs/heads/vcmi-1.5.zip", 148 | "screenshots" : [ 149 | "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen1.png", 150 | "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen2.png", 151 | "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen3.png", 152 | "https://raw.githubusercontent.com/misiokles/plane-of-earth-town/vcmi-1.5/screenshots/screen4.png" 153 | ], 154 | "downloadSize" : 14.417 155 | }, 156 | "might-town" : { 157 | "mod" : "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/might-town/mod.json", 158 | "download" : "https://github.com/misiokles/might-town/archive/refs/heads/vcmi-1.5.zip", 159 | "screenshots" : [ 160 | "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen1.png", 161 | "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen2.png", 162 | "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen3.png", 163 | "https://raw.githubusercontent.com/misiokles/might-town/vcmi-1.5/screenshots/screen4.png" 164 | ], 165 | "downloadSize" : 16.616 166 | }, 167 | "covenant-town" : { 168 | "mod" : "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/covenant-town/mod.json", 169 | "download" : "https://github.com/misiokles/covenant-town/archive/refs/heads/vcmi-1.5.zip", 170 | "screenshots" : [ 171 | "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen1.png", 172 | "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen2.png", 173 | "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen3.png", 174 | "https://raw.githubusercontent.com/misiokles/covenant-town/vcmi-1.5/screenshots/screen4.png" 175 | ], 176 | "downloadSize" : 37.546 177 | }, 178 | "ruins092-town" : { 179 | "mod" : "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/ruins-092/mod.json", 180 | "download" : "https://github.com/misiokles/ruins-092/archive/refs/heads/vcmi-1.5.zip", 181 | "screenshots" : [ 182 | "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen1.png", 183 | "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen2.png", 184 | "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen3.png", 185 | "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen4.png", 186 | "https://raw.githubusercontent.com/misiokles/ruins-092/vcmi-1.5/screenshots/screen5.png" 187 | ], 188 | "downloadSize" : 14.789 189 | }, 190 | "glacier-town" : { 191 | "mod" : "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/glacier-town/mod.json", 192 | "download" : "https://github.com/misiokles/glacier-town/archive/refs/heads/vcmi-1.5.zip", 193 | "screenshots" : [ 194 | "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/screenshots/screen1.png", 195 | "https://raw.githubusercontent.com/misiokles/glacier-town/vcmi-1.5/screenshots/screen2.png" 196 | ], 197 | "downloadSize" : 13.565 198 | }, 199 | "limes-town" : { 200 | "mod" : "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/limes-town/mod.json", 201 | "download" : "https://github.com/misiokles/limes-town/archive/refs/heads/vcmi-1.5.zip", 202 | "screenshots" : [ 203 | "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen1.png", 204 | "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen2.png", 205 | "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen3.png", 206 | "https://raw.githubusercontent.com/misiokles/limes-town/vcmi-1.5/screenshots/screen4.png" 207 | ], 208 | "downloadSize" : 22.388 209 | }, 210 | "christmas-town" : { 211 | "mod" : "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/christmas-town/mod.json", 212 | "download" : "https://github.com/misiokles/christmas-town/archive/refs/heads/vcmi-1.5.zip", 213 | "screenshots" : [ 214 | "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen1.png", 215 | "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen2.png", 216 | "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen3.png", 217 | "https://raw.githubusercontent.com/misiokles/christmas-town/vcmi-1.5/screenshots/screen4.png" 218 | ], 219 | "downloadSize" : 16.138 220 | }, 221 | "warlock-town" : { 222 | "mod" : "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/warlock-town/mod.json", 223 | "download" : "https://github.com/misiokles/warlock-town/archive/refs/heads/vcmi-1.5.zip", 224 | "screenshots" : [ 225 | "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen1.png", 226 | "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen2.png", 227 | "https://raw.githubusercontent.com/misiokles/warlock-town/vcmi-1.5/screenshots/screen3.png" 228 | ], 229 | "downloadSize" : 14.424 230 | }, 231 | "mythology-town" : { 232 | "mod" : "https://raw.githubusercontent.com/misiokles/mythology-town/vcmi-1.4/mythology-town/mod.json", 233 | "download" : "https://github.com/misiokles/mythology-town/archive/refs/heads/vcmi-1.4.zip", 234 | "downloadSize" : 10.816 235 | }, 236 | "abode-town" : { 237 | "mod" : "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/abode-town/mod.json", 238 | "download" : "https://github.com/misiokles/abode-town/archive/refs/heads/vcmi-1.5.zip", 239 | "screenshots" : [ 240 | "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen1.png", 241 | "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen2.png", 242 | "https://raw.githubusercontent.com/misiokles/abode-town/vcmi-1.5/screenshots/screen3.png" 243 | ], 244 | "downloadSize" : 21.358 245 | }, 246 | "pah3-singleplayer-tournament" : { 247 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.6/pah3-singleplayer-tournament/mod.json", 248 | "download" : "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.6.zip", 249 | "downloadSize" : 1.518 250 | }, 251 | "crossroads-of-worlds" : { 252 | "mod" : "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/crossroads-of-worlds/mod.json", 253 | "download" : "https://github.com/misiokles/crossroads-of-worlds/archive/refs/heads/vcmi-1.6.zip", 254 | "screenshots" : [ 255 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen01.png", 256 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen02.png", 257 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen03.png", 258 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen04.png", 259 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen05.png", 260 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen06.png", 261 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen07.png", 262 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen08.png", 263 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen09.png", 264 | "https://raw.githubusercontent.com/misiokles/crossroads-of-worlds/vcmi-1.6/screenshots/screen10.png" 265 | ], 266 | "downloadSize" : 151.446 267 | }, 268 | "blazers-town" : { 269 | "mod" : "https://raw.githubusercontent.com/misiokles/blazers-town/main/blazers-town/mod.json", 270 | "download" : "https://github.com/misiokles/blazers-town/archive/refs/heads/main.zip", 271 | "screenshots" : [ 272 | "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen01.png", 273 | "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen02.png", 274 | "https://raw.githubusercontent.com/misiokles/blazers-town/main/screenshots/screen03.png" 275 | ], 276 | "downloadSize" : 18.683 277 | }, 278 | "wild-valley-town" : { 279 | "mod" : "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/wild-valley-town/mod.json", 280 | "download" : "https://github.com/misiokles/wild-valley-town/archive/refs/heads/main.zip", 281 | "screenshots" : [ 282 | "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen01.png", 283 | "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen02.png", 284 | "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen03.png", 285 | "https://raw.githubusercontent.com/misiokles/wild-valley-town/main/screenshots/screen04.png" 286 | ], 287 | "downloadSize" : 16.573 288 | }, 289 | "evergreen-town" : { 290 | "mod" : "https://raw.githubusercontent.com/misiokles/evergreen-town/main/evergreen-town/mod.json", 291 | "download" : "https://github.com/misiokles/evergreen-town/archive/refs/heads/main.zip", 292 | "screenshots" : [ 293 | "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen01.png", 294 | "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen02.png", 295 | "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen03.png", 296 | "https://raw.githubusercontent.com/misiokles/evergreen-town/main/screenshots/screen04.png" 297 | ], 298 | "downloadSize" : 15.318 299 | }, 300 | "h2-towns" : { 301 | "mod" : "https://raw.githubusercontent.com/misiokles/h2-towns/main/h2-towns/mod.json", 302 | "download" : "https://github.com/misiokles/h2-towns/archive/refs/heads/main.zip", 303 | "screenshots" : [ 304 | "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen1.png", 305 | "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen2.png", 306 | "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen3.png", 307 | "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen4.png", 308 | "https://raw.githubusercontent.com/misiokles/h2-towns/main/screenshots/screen5.png" 309 | ], 310 | "downloadSize" : 63.742 311 | }, 312 | "haven-vovan" : { 313 | "mod" : "https://raw.githubusercontent.com/misiokles/haven-vovan/main/haven-vovan/mod.json", 314 | "download" : "https://github.com/misiokles/haven-vovan/archive/refs/heads/main.zip", 315 | "screenshots" : [ 316 | "https://raw.githubusercontent.com/misiokles/haven-vovan/main/screenshots/screen1.png" 317 | ], 318 | "downloadSize" : 12.872 319 | } 320 | } 321 | -------------------------------------------------------------------------------- /vcmi-1.4.json: -------------------------------------------------------------------------------- 1 | { 2 | "vcmi-extras" : { 3 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.4/mod.json", 4 | "download" : "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.4.zip", 5 | "downloadSize" : 4.549 6 | }, 7 | "hota" : { 8 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/hota/mod.json", 9 | "download" : "https://github.com/vcmi-mods/horn-of-the-abyss/archive/refs/heads/vcmi-1.4.zip", 10 | "screenshots" : [ 11 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/01.png", 12 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/02.png", 13 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/03.png", 14 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/04.png", 15 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/05.png", 16 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/06.png", 17 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/07.png", 18 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/08.png", 19 | "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.4/screenshots/09.png" 20 | ], 21 | "downloadSize" : 109.664 22 | }, 23 | "wake-of-gods" : { 24 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/vcmi-1.4/mod.json", 25 | "download" : "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/vcmi-1.4.zip", 26 | "downloadSize" : 68.817 27 | }, 28 | "tides-of-war" : { 29 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/vcmi-1.4/mod.json", 30 | "download" : "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/vcmi-1.4.zip", 31 | "downloadSize" : 27.148 32 | }, 33 | "courtyard" : { 34 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/courtyard/vcmi-1.4/Courtyard/mod.json", 35 | "download" : "https://github.com/vcmi-mods/courtyard/archive/refs/heads/vcmi-1.4.zip", 36 | "downloadSize" : 24.615 37 | }, 38 | "neutral-heroes" : { 39 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/neutral-heroes/vcmi-1.4/mod.json", 40 | "download" : "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/vcmi-1.4.zip", 41 | "downloadSize" : 2.596 42 | }, 43 | "asylum-town" : { 44 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/asylum-town/vcmi-1.4/asylum-town/mod.json", 45 | "download" : "https://github.com/vcmi-mods/asylum-town/archive/refs/heads/vcmi-1.4.zip", 46 | "screenshots" : [ 47 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen1.png", 48 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen2.png", 49 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen3.png", 50 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen4.png", 51 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen5.png", 52 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png", 53 | "https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png" 54 | ], 55 | "downloadSize" : 26.542 56 | }, 57 | "highlands-town" : { 58 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/highlands-town/vcmi-1.4/mod.json", 59 | "download" : "https://github.com/vcmi-mods/highlands-town/archive/refs/heads/vcmi-1.4.zip", 60 | "downloadSize" : 13.209 61 | }, 62 | "new-pavilion" : { 63 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/New Pavilion/mod.json", 64 | "download" : "https://github.com/vcmi-mods/new-pavilion/archive/refs/heads/vcmi-1.4.zip", 65 | "screenshots" : [ 66 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen1.png", 67 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen2.png", 68 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen3.png", 69 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen4.png", 70 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen5.png", 71 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen6.png", 72 | "https://raw.githubusercontent.com/vcmi-mods/new-pavilion/vcmi-1.4/screenshots/screen7.png" 73 | ], 74 | "downloadSize" : 50.781 75 | }, 76 | "cathedral-town" : { 77 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/cathedral-town/vcmi-1.4/cathedral-town/mod.json", 78 | "download" : "https://github.com/vcmi-mods/cathedral-town/archive/refs/heads/vcmi-1.4.zip", 79 | "downloadSize" : 10.738 80 | }, 81 | "death-valley-town" : { 82 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/death-valley-town/vcmi-1.4/death-valley-town/mod.json", 83 | "download" : "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/vcmi-1.4.zip", 84 | "downloadSize" : 19.658 85 | }, 86 | "reworked-commanders" : { 87 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/vcmi-1.4/reworked-commanders/mod.json", 88 | "download" : "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/vcmi-1.4.zip", 89 | "downloadSize" : 9.265 90 | }, 91 | "andruids-expansion" : { 92 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/vcmi-1.4/andruids-expansion/mod.json", 93 | "download" : "https://github.com/vcmi-mods/andruids-expansion/archive/refs/heads/vcmi-1.4.zip", 94 | "downloadSize" : 6.707 95 | }, 96 | "tok" : { 97 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tok/vcmi-1.4/mod.json", 98 | "download" : "https://github.com/vcmi-mods/tok/archive/refs/heads/vcmi-1.4.zip", 99 | "downloadSize" : 3.221 100 | }, 101 | "elemental-nodes" : { 102 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.4/elemental-nodes/mod.json", 103 | "download" : "https://github.com/vcmi-mods/elemental-nodes/archive/refs/heads/vcmi-1.4.zip", 104 | "screenshots" : [ 105 | "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.4/screenshots/screen1.png", 106 | "https://raw.githubusercontent.com/vcmi-mods/elemental-nodes/vcmi-1.4/screenshots/screen2.png" 107 | ], 108 | "downloadSize" : 1.405 109 | }, 110 | "german-translation" : { 111 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/german-translation/vcmi-1.4/mod.json", 112 | "download" : "https://github.com/vcmi-mods/german-translation/archive/refs/heads/vcmi-1.4.zip", 113 | "downloadSize" : 179.836 114 | }, 115 | "spanish-translation" : { 116 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/spanish-translation/vcmi-1.4/spanish-translation/mod.json", 117 | "download" : "https://github.com/vcmi-mods/spanish-translation/archive/refs/heads/vcmi-1.4.zip", 118 | "downloadSize" : 12.369 119 | }, 120 | "korean-translation" : { 121 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/korean-translation/vcmi-1.4/korean-translation/mod.json", 122 | "download" : "https://github.com/vcmi-mods/korean-translation/archive/refs/heads/vcmi-1.4.zip", 123 | "downloadSize" : 4.068 124 | }, 125 | "italian-translation" : { 126 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/italian-translation/vcmi-1.4/italian-translation/mod.json", 127 | "download" : "https://github.com/vcmi-mods/italian-translation/archive/refs/heads/vcmi-1.4.zip", 128 | "downloadSize" : 12.166 129 | }, 130 | "czech-translation" : { 131 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/czech-translation/vcmi-1.4/czech-translation/mod.json", 132 | "download" : "https://github.com/vcmi-mods/czech-translation/archive/refs/heads/vcmi-1.4.zip", 133 | "downloadSize" : 6.847 134 | }, 135 | "finnish-translation" : { 136 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/finnish-translation/vcmi-1.4/finnish-translation/mod.json", 137 | "download" : "https://github.com/vcmi-mods/finnish-translation/archive/refs/heads/vcmi-1.4.zip", 138 | "downloadSize" : 0.59 139 | }, 140 | "portuguese-translation" : { 141 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/portuguese-translation/vcmi-1.4/portuguese-translation/mod.json", 142 | "download" : "https://github.com/vcmi-mods/portuguese-translation/archive/refs/heads/vcmi-1.4.zip", 143 | "downloadSize" : 0.351 144 | }, 145 | "swedish-translation" : { 146 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/swedish-translation/vcmi-1.4/swedish-translation/mod.json", 147 | "download" : "https://github.com/vcmi-mods/swedish-translation/archive/refs/heads/vcmi-1.4.zip", 148 | "downloadSize" : 0.127 149 | }, 150 | "turkish-translation" : { 151 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/turkish-translation/vcmi-1.4/turkish-translation/mod.json", 152 | "download" : "https://github.com/vcmi-mods/turkish-translation/archive/refs/heads/vcmi-1.4.zip", 153 | "downloadSize" : 0.049 154 | }, 155 | "hungarian-translation" : { 156 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/hungarian-translation/vcmi-1.4/hungarian-translation/mod.json", 157 | "download" : "https://github.com/vcmi-mods/hungarian-translation/archive/refs/heads/vcmi-1.4.zip", 158 | "downloadSize" : 16.348 159 | }, 160 | "chinese-translation" : { 161 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/chinese-translation/vcmi-1.4/chinese-translation/mod.json", 162 | "download" : "https://github.com/vcmi-mods/chinese-translation/archive/refs/heads/vcmi-1.4.zip", 163 | "downloadSize" : 20.243 164 | }, 165 | "french-translation" : { 166 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/french-translation/vcmi-1.4/french-translation/mod.json", 167 | "download" : "https://github.com/vcmi-mods/french-translation/archive/refs/heads/vcmi-1.4.zip", 168 | "downloadSize" : 14.962 169 | }, 170 | "vietnamese-translation" : { 171 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/vietnamese-translation/vcmi-1.4/vietnamese-translation/mod.json", 172 | "download" : "https://github.com/vcmi-mods/vietnamese-translation/archive/refs/heads/vcmi-1.4.zip", 173 | "downloadSize" : 6.053 174 | }, 175 | "polish-translation" : { 176 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/polish-translation/vcmi-1.4/polish-translation/mod.json", 177 | "download" : "https://github.com/vcmi-mods/polish-translation/archive/refs/heads/vcmi-1.4.zip", 178 | "downloadSize" : 163.578 179 | }, 180 | "vcmi-mod-ce-ukr" : { 181 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.4/ce-ukr/mod.json", 182 | "download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.4.zip", 183 | "downloadSize" : 7.285 184 | }, 185 | "h3-for-vcmi-englisation" : { 186 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.4/H3forVCMIenglisation/mod.json", 187 | "download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.4.zip", 188 | "downloadSize" : 128.045 189 | }, 190 | "forge" : { 191 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.4/mod.json", 192 | "download" : "https://github.com/vcmi-mods/forge/archive/refs/heads/vcmi-1.4.zip", 193 | "downloadSize" : 15.043 194 | }, 195 | "ai trace" : { 196 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json", 197 | "download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip", 198 | "downloadSize" : 0.001 199 | }, 200 | "demo support" : { 201 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/demo-support/master/mod.json", 202 | "download" : "https://github.com/vcmi-mods/demo-support/archive/refs/heads/master.zip", 203 | "downloadSize" : 4.234 204 | }, 205 | "ai testing maps" : { 206 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json", 207 | "download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip", 208 | "downloadSize" : 4.062 209 | }, 210 | "campaign-heroes" : { 211 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/vcmi-1.4/mod.json", 212 | "download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/vcmi-1.4.zip", 213 | "downloadSize" : 0.093 214 | }, 215 | "axolotl-creatures-pack" : { 216 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/axolotl-creatures-pack/vcmi-1.4/mod.json", 217 | "download" : "https://github.com/vcmi-mods/axolotl-creatures-pack/archive/refs/heads/vcmi-1.4.zip", 218 | "downloadSize" : 63.66 219 | }, 220 | "tarnum" : { 221 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.4/tarnum/mod.json", 222 | "download" : "https://github.com/vcmi-mods/tarnum/archive/refs/heads/vcmi-1.4.zip", 223 | "screenshots" : [ 224 | "https://raw.githubusercontent.com/vcmi-mods/tarnum/vcmi-1.4/screenshots/tarnumVizier.png" 225 | ], 226 | "downloadSize" : 1.586 227 | }, 228 | "magic-fader" : { 229 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/magic-fader/vcmi-1.4/mod.json", 230 | "download" : "https://github.com/vcmi-mods/magic-fader/archive/refs/heads/vcmi-1.4.zip", 231 | "downloadSize" : 0.092 232 | }, 233 | "grove" : { 234 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/grove/vcmi-1.4/Grove/mod.json", 235 | "download" : "https://github.com/vcmi-mods/grove/archive/refs/heads/vcmi-1.4.zip", 236 | "screenshots" : [ 237 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen1.png", 238 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen2.png", 239 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen3.png", 240 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png", 241 | "https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png" 242 | ], 243 | "downloadSize" : 19.492 244 | }, 245 | "combine-grail" : { 246 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/combine-grail/vcmi-1.4/combine-grail/mod.json", 247 | "download" : "https://github.com/vcmi-mods/combine-grail/archive/refs/heads/vcmi-1.4.zip", 248 | "screenshots" : [ 249 | "https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png" 250 | ], 251 | "downloadSize" : 0.509 252 | }, 253 | "fairy-town" : { 254 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/fairy-town/vcmi-1.4/fairy-town/mod.json", 255 | "download" : "https://github.com/vcmi-mods/fairy-town/archive/refs/heads/vcmi-1.4.zip", 256 | "screenshots" : [ 257 | "https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png" 258 | ], 259 | "downloadSize" : 14.032 260 | }, 261 | "haven-town" : { 262 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.4/haven-town/mod.json", 263 | "download" : "https://github.com/vcmi-mods/haven-town/archive/refs/heads/vcmi-1.4.zip", 264 | "screenshots" : [ 265 | "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.4/screenshots/screen1.png", 266 | "https://raw.githubusercontent.com/vcmi-mods/haven-town/vcmi-1.4/screenshots/screen2.png" 267 | ], 268 | "downloadSize" : 10.867 269 | }, 270 | "ruins-town" : { 271 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.4/ruins-town/mod.json", 272 | "download" : "https://github.com/vcmi-mods/ruins-town/archive/refs/heads/vcmi-1.4.zip", 273 | "screenshots" : [ 274 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.4/screenshots/screen1.png", 275 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.4/screenshots/screen2.png", 276 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.4/screenshots/screen3.png", 277 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.4/screenshots/screen4.png", 278 | "https://raw.githubusercontent.com/vcmi-mods/ruins-town/vcmi-1.4/screenshots/screen5.png" 279 | ], 280 | "downloadSize" : 23.308 281 | }, 282 | "h3-themes" : { 283 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-themes/vcmi-1.4/h3-themes/mod.json", 284 | "download" : "https://github.com/vcmi-mods/h3-themes/archive/refs/heads/vcmi-1.4.zip", 285 | "screenshots" : [ 286 | "https://raw.githubusercontent.com/vcmi-mods/h3-themes/main/screenshots/screen1.png" 287 | ], 288 | "downloadSize" : 27.721 289 | }, 290 | "creatures-hidden-potential" : { 291 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/vcmi-1.4/creatures-hidden-potential/mod.json", 292 | "download" : "https://github.com/vcmi-mods/creatures-hidden-potential/archive/refs/heads/vcmi-1.4.zip", 293 | "screenshots" : [ 294 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen1.png", 295 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png", 296 | "https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png" 297 | ], 298 | "downloadSize" : 3.515 299 | }, 300 | "tartarus-town" : { 301 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/vcmi-1.4/tartarus-town/mod.json", 302 | "download" : "https://github.com/vcmi-mods/tartarus-town/archive/refs/heads/vcmi-1.4.zip", 303 | "screenshots" : [ 304 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen1.png", 305 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen2.png", 306 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen3.png", 307 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen4.png", 308 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png", 309 | "https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png" 310 | ], 311 | "downloadSize" : 16.073 312 | }, 313 | "preserve-town" : { 314 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/preserve-town/vcmi-1.4/preserve/mod.json", 315 | "download" : "https://github.com/vcmi-mods/preserve-town/archive/refs/heads/vcmi-1.4.zip", 316 | "screenshots" : [ 317 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen1.png", 318 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen2.png", 319 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen3.png", 320 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen4.png", 321 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png", 322 | "https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png" 323 | ], 324 | "downloadSize" : 28.149 325 | }, 326 | "abyss-town" : { 327 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/abyss-town/vcmi-1.4/abyss-town/mod.json", 328 | "download" : "https://github.com/vcmi-mods/abyss-town/archive/refs/heads/vcmi-1.4.zip", 329 | "screenshots" : [ 330 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen1.png", 331 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen2.png", 332 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen3.png", 333 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png", 334 | "https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png" 335 | ], 336 | "downloadSize" : 32.783 337 | }, 338 | "retreat-town" : { 339 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/retreat-town/vcmi-1.2/retreat-town/mod.json", 340 | "download" : "https://github.com/vcmi-mods/retreat-town/archive/refs/heads/vcmi-1.3.zip", 341 | "screenshots" : [ 342 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen1.png", 343 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen2.png", 344 | "https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen3.png" 345 | ], 346 | "downloadSize" : 18.849 347 | }, 348 | "cetatea-town" : { 349 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/vcmi-1.4/cetatea/mod.json", 350 | "download" : "https://github.com/vcmi-mods/cetatea-town/archive/refs/heads/vcmi-1.4.zip", 351 | "screenshots" : [ 352 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen1.png", 353 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen2.png", 354 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen3.png", 355 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png", 356 | "https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png" 357 | ], 358 | "downloadSize" : 14.447 359 | }, 360 | "lost-souls" : { 361 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/lost-souls/vcmi-1.4/doomMod/mod.json", 362 | "download" : "https://github.com/vcmi-mods/lost-souls/archive/refs/heads/vcmi-1.4.zip", 363 | "screenshots" : [ 364 | "https://raw.githubusercontent.com/vcmi-mods/lost-souls/main/screenshots/screen1.png" 365 | ], 366 | "downloadSize" : 0.873 367 | }, 368 | "carpet-whisperers" : { 369 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.4/carpet-whisperers/mod.json", 370 | "download" : "https://github.com/vcmi-mods/carpet-whisperers/archive/refs/heads/vcmi-1.4.zip", 371 | "screenshots" : [ 372 | "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/screenshots/screen01.png", 373 | "https://raw.githubusercontent.com/vcmi-mods/carpet-whisperers/vcmi-1.3/screenshots/screen02.png" 374 | ], 375 | "downloadSize" : 3.435 376 | }, 377 | "kurek-creatures" : { 378 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/vcmi-1.4/kurek-creatures/mod.json", 379 | "download" : "https://github.com/vcmi-mods/kurek-creatures/archive/refs/heads/vcmi-1.4.zip", 380 | "screenshots" : [ 381 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen1.png", 382 | "https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen2.png" 383 | ], 384 | "downloadSize" : 3.294 385 | }, 386 | "undead-sphinxes" : { 387 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/vcmi-1.4/undeadSphinxes/mod.json", 388 | "download" : "https://github.com/vcmi-mods/undead-sphinxes/archive/refs/heads/vcmi-1.4.zip", 389 | "screenshots" : [ 390 | "https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/main/screenshots/screen1.png" 391 | ], 392 | "downloadSize" : 3.464 393 | }, 394 | "andruids-spell-balance" : { 395 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/vcmi-1.4/andruids-spell-balance/mod.json", 396 | "download" : "https://github.com/vcmi-mods/andruids-spell-balance/archive/refs/heads/vcmi-1.4.zip", 397 | "screenshots" : [ 398 | "https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png" 399 | ], 400 | "downloadSize" : 0.8 401 | }, 402 | "new-old-spells-plus" : { 403 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/vcmi-1.4/newOldSpellsPlus/mod.json", 404 | "download" : "https://github.com/vcmi-mods/new-old-spells-plus/archive/refs/heads/vcmi-1.4.zip", 405 | "screenshots" : [ 406 | "https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png" 407 | ], 408 | "downloadSize" : 2.1 409 | }, 410 | "portraits-packs" : { 411 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/vcmi-1.4/Portaits%20packs/mod.json", 412 | "download" : "https://github.com/vcmi-mods/portraits-packs/archive/refs/heads/vcmi-1.4.zip", 413 | "screenshots" : [ 414 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen1.png", 415 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen2.png", 416 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png", 417 | "https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png" 418 | ], 419 | "downloadSize" : 12.116 420 | }, 421 | "heroes-iii-orchestra" : { 422 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/heroes-iii-orchestra/vcmi-1.4/Heroes%20III%20Orchestra/mod.json", 423 | "download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/vcmi-1.4.zip", 424 | "screenshots" : [], 425 | "downloadSize" : 10.243 426 | }, 427 | "russian-translation" : { 428 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/russian-translation/mod.json", 429 | "download" : "https://github.com/vcmi-mods/mega-pack-rus/archive/refs/heads/vcmi-1.4.zip", 430 | "screenshots" : [ 431 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-1.png", 432 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-2.png", 433 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-3.png", 434 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-4.png", 435 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-5.png", 436 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-6.png", 437 | "https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/vcmi-1.4/screenshots/sc-7.png" 438 | ], 439 | "downloadSize" : 37.48 440 | }, 441 | "new-interface-mod" : { 442 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/vcmi-1.4/New%20Interface%20Mod/mod.json", 443 | "download" : "https://github.com/vcmi-mods/new-interface-mod/archive/refs/heads/vcmi-1.4.zip", 444 | "screenshots" : [ 445 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen1.png", 446 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen2.png", 447 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen3.png", 448 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen4.png", 449 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen5.png", 450 | "https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen6.png" 451 | ], 452 | "downloadSize" : 41.628 453 | }, 454 | "hi-rez-menu" : { 455 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/vcmi-1.4/new-menu/mod.json", 456 | "download" : "https://github.com/vcmi-mods/hi-rez-menu/archive/refs/heads/vcmi-1.4.zip", 457 | "screenshots" : [ 458 | "https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png" 459 | ], 460 | "downloadSize" : 8.119 461 | }, 462 | "greenhouse-town" : { 463 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/vcmi-1.4/Greenhouse/mod.json", 464 | "download" : "https://github.com/vcmi-mods/greenhouse-town/archive/refs/heads/vcmi-1.4.zip", 465 | "screenshots" : [ 466 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen1.png", 467 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen2.png", 468 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png", 469 | "https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png" 470 | ], 471 | "downloadSize" : 14.201 472 | }, 473 | "sand-tower" : { 474 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/sand-tower/vcmi-1.4/sand-tower/mod.json", 475 | "download" : "https://github.com/vcmi-mods/sand-tower/archive/refs/heads/vcmi-1.4.zip", 476 | "screenshots" : [ 477 | "https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/screenshots/screen1.png" 478 | ], 479 | "downloadSize" : 3.67 480 | }, 481 | "autumn-rampart" : { 482 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/vcmi-1.4/autumn-rampart/mod.json", 483 | "download" : "https://github.com/vcmi-mods/autumn-rampart/archive/refs/heads/vcmi-1.4.zip", 484 | "screenshots" : [ 485 | "https://raw.githubusercontent.com/vcmi-mods/autumn-rampart/main/screenshots/screen1.png" 486 | ], 487 | "downloadSize" : 6.002 488 | }, 489 | "another-rampart" : { 490 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/another-rampart/vcmi-1.4/another-rampart/mod.json", 491 | "download" : "https://github.com/vcmi-mods/another-rampart/archive/refs/heads/vcmi-1.4.zip", 492 | "screenshots" : [ 493 | "https://raw.githubusercontent.com/vcmi-mods/another-rampart/main/screenshots/screen1.png" 494 | ], 495 | "downloadSize" : 4.186 496 | }, 497 | "red-castle" : { 498 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/red-castle/vcmi-1.4/red-castle/mod.json", 499 | "download" : "https://github.com/vcmi-mods/red-castle/archive/refs/heads/vcmi-1.4.zip", 500 | "screenshots" : [ 501 | "https://raw.githubusercontent.com/vcmi-mods/red-castle/main/screenshots/screen1.png" 502 | ], 503 | "downloadSize" : 3.201 504 | }, 505 | "lotrd-townscreens" : { 506 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/lotrd-townscreens/vcmi-1.4/lotrd-townscreens/mod.json", 507 | "download" : "https://github.com/vcmi-mods/lotrd-townscreens/archive/refs/heads/vcmi-1.4.zip", 508 | "downloadSize" : 13.252 509 | }, 510 | "ghost-necropolis" : { 511 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/vcmi-1.4/ghost-necropolis/mod.json", 512 | "download" : "https://github.com/vcmi-mods/ghost-necropolis/archive/refs/heads/vcmi-1.4.zip", 513 | "screenshots" : [ 514 | "https://raw.githubusercontent.com/vcmi-mods/ghost-necropolis/main/screenshots/screen1.png" 515 | ], 516 | "downloadSize" : 20.313 517 | }, 518 | "quartz" : { 519 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/quartz/vcmi-1.4/quartz/mod.json", 520 | "download" : "https://github.com/vcmi-mods/quartz/archive/refs/heads/vcmi-1.4.zip", 521 | "screenshots" : [ 522 | "https://raw.githubusercontent.com/vcmi-mods/quartz/main/screenshots/screen1.png" 523 | ], 524 | "downloadSize" : 16.802 525 | }, 526 | "snow-in-Tower" : { 527 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/snow-in-tower/vcmi-1.4/snow-in-Tower/mod.json", 528 | "download" : "https://github.com/vcmi-mods/snow-in-Tower/archive/refs/heads/vcmi-1.4.zip", 529 | "screenshots" : [ 530 | "https://raw.githubusercontent.com/vcmi-mods/snow-in-Tower/main/screenshots/screen1.png" 531 | ], 532 | "downloadSize" : 9.998 533 | }, 534 | "snow-castle" : { 535 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/snow-castle/vcmi-1.4/snow-castle/mod.json", 536 | "download" : "https://github.com/vcmi-mods/snow-castle/archive/refs/heads/vcmi-1.4.zip", 537 | "screenshots" : [ 538 | "https://raw.githubusercontent.com/vcmi-mods/snow-castle/main/screenshots/screen1.png" 539 | ], 540 | "downloadSize" : 5.946 541 | }, 542 | "boost-ai" : { 543 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/boost-ai/vcmi-1.4/mod.json", 544 | "download" : "https://github.com/vcmi-mods/boost-ai/archive/refs/heads/vcmi-1.4.zip", 545 | "downloadSize" : 0.008 546 | }, 547 | "an-expansion" : { 548 | "mod" : "https://raw.githubusercontent.com/vdhan/an-expansion/master/mod.json", 549 | "download" : "https://github.com/vdhan/an-expansion/archive/refs/heads/master.zip", 550 | "downloadSize" : 0.779 551 | }, 552 | "refugee-town" : { 553 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/refugee-town/vcmi-1.4/refugee-town/mod.json", 554 | "download" : "https://github.com/vcmi-mods/refugee-town/archive/refs/heads/vcmi-1.4.zip", 555 | "screenshots" : [ 556 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen1.png", 557 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen2.png", 558 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen3.png", 559 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen4.png", 560 | "https://raw.githubusercontent.com/vcmi-mods/refugee-town/main/screenshots/screen5.png" 561 | ], 562 | "downloadSize" : 31.014 563 | }, 564 | "asphalt-terrain" : { 565 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.4/asphalt-terrain/mod.json", 566 | "download" : "https://github.com/vcmi-mods/asphalt-terrain/archive/refs/heads/vcmi-1.4.zip", 567 | "screenshots" : [ 568 | "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen01.png", 569 | "https://raw.githubusercontent.com/vcmi-mods/asphalt-terrain/vcmi-1.2/screenshots/screen02.png" 570 | ], 571 | "downloadSize" : 9.104 572 | }, 573 | "newtown-terrains" : { 574 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/newtown-terrains/mod.json", 575 | "download" : "https://github.com/vcmi-mods/newtown-terrains/archive/refs/heads/vcmi-1.4.zip", 576 | "screenshots" : [ 577 | "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen10.png", 578 | "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen11.png", 579 | "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen12.png", 580 | "https://raw.githubusercontent.com/vcmi-mods/newtown-terrains/vcmi-1.4/screenshots/screen13.png" 581 | ], 582 | "downloadSize" : 22.412 583 | }, 584 | "forge2k" : { 585 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.4/Forge2k/mod.json", 586 | "download" : "https://github.com/vcmi-mods/forge2k/archive/refs/heads/vcmi-1.4.zip", 587 | "screenshots" : [ 588 | "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.4/screenshots/screen01.png", 589 | "https://raw.githubusercontent.com/vcmi-mods/forge2k/vcmi-1.4/screenshots/screen02.png" 590 | ], 591 | "downloadSize" : 21.766 592 | }, 593 | "ab-bad-ending-assets" : { 594 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/AB Bad Ending Assets/mod.json", 595 | "download" : "https://github.com/vcmi-mods/ab-bad-ending-assets/archive/refs/heads/vcmi-1.4.zip", 596 | "screenshots" : [ 597 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen01.png", 598 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-assets/vcmi-1.4/screenshots/screen02.png" 599 | ], 600 | "downloadSize" : 17.923 601 | }, 602 | "ab-bad-ending-maps" : { 603 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/AB Bad Ending Maps/mod.json", 604 | "download" : "https://github.com/vcmi-mods/ab-bad-ending-maps/archive/refs/heads/vcmi-1.4.zip", 605 | "screenshots" : [ 606 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen01.png", 607 | "https://raw.githubusercontent.com/vcmi-mods/ab-bad-ending-maps/vcmi-1.4/screenshots/screen02.png" 608 | ], 609 | "downloadSize" : 1.342 610 | }, 611 | "warzyw-templates" : { 612 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/warzyw-templates/vcmi-1.4/warzyw-templates/mod.json", 613 | "download" : "https://github.com/vcmi-mods/warzyw-templates/archive/refs/heads/vcmi-1.4.zip", 614 | "downloadSize" : 0.04 615 | }, 616 | "wyrmsun-boats" : { 617 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.4/wyrmsun-boats/mod.json", 618 | "download" : "https://github.com/vcmi-mods/wyrmsun-boats/archive/refs/heads/vcmi-1.4.zip", 619 | "screenshots" : [ 620 | "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.4/screenshots/screen1.png", 621 | "https://raw.githubusercontent.com/vcmi-mods/wyrmsun-boats/vcmi-1.4/screenshots/screen2.png" 622 | ], 623 | "downloadSize" : 1.794 624 | }, 625 | "ensrick-portraits" : { 626 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/vcmi-1.4/ensrick-portraits/mod.json", 627 | "download" : "https://github.com/vcmi-mods/ensrick-portraits/archive/refs/heads/vcmi-1.4.zip", 628 | "screenshots" : [ 629 | "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/main/screenshots/screen01.png", 630 | "https://raw.githubusercontent.com/vcmi-mods/ensrick-portraits/main/screenshots/screen02.png" 631 | ], 632 | "downloadSize" : 12.268 633 | }, 634 | "morns-battlefields" : { 635 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.4/morns-battlefields/mod.json", 636 | "download" : "https://github.com/vcmi-mods/morns-battlefields/archive/refs/heads/vcmi-1.4.zip", 637 | "screenshots" : [ 638 | "https://raw.githubusercontent.com/vcmi-mods/morns-battlefields/vcmi-1.4/screenshots/01.png" 639 | ], 640 | "downloadSize" : 23.788 641 | }, 642 | "towns-new-views" : { 643 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.4/towns-new-views/mod.json", 644 | "download" : "https://github.com/vcmi-mods/towns-new-views/archive/refs/heads/vcmi-1.4.zip", 645 | "screenshots" : [ 646 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen1.png", 647 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen2.png", 648 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen3.png", 649 | "https://raw.githubusercontent.com/vcmi-mods/towns-new-views/vcmi-1.2/screenshots/screen4.png" 650 | ], 651 | "downloadSize" : 3.257 652 | }, 653 | "invisible-man" : { 654 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/invisible-man/vcmi-1.4/invisible-man/mod.json", 655 | "download" : "https://github.com/vcmi-mods/invisible-man/archive/refs/heads/vcmi-1.4.zip", 656 | "screenshots" : [ 657 | "https://raw.githubusercontent.com/vcmi-mods/invisible-man/vcmi-1.3/screenshots/screen01.png" 658 | ], 659 | "downloadSize" : 1.078 660 | }, 661 | "campaings-pack" : { 662 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.4/campaings-pack/mod.json", 663 | "download" : "https://github.com/vcmi-mods/campaings-pack/archive/refs/heads/vcmi-1.4.zip", 664 | "screenshots" : [ 665 | "https://raw.githubusercontent.com/vcmi-mods/campaings-pack/vcmi-1.3/screenshots/screen01.png" 666 | ], 667 | "downloadSize" : 11.223 668 | }, 669 | "dydzios-map-pack" : { 670 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/dydzios-map-pack/vcmi-1.4/dydzios-map-pack/mod.json", 671 | "download" : "https://github.com/vcmi-mods/dydzios-map-pack/archive/refs/heads/vcmi-1.4.zip", 672 | "downloadSize" : 49.291 673 | }, 674 | "h3-campaigns-remade" : { 675 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.4/h3-campaigns-remade/mod.json", 676 | "download" : "https://github.com/vcmi-mods/h3-campaigns-remade/archive/refs/heads/vcmi-1.4.zip", 677 | "screenshots" : [ 678 | "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen01.png", 679 | "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen02.png", 680 | "https://raw.githubusercontent.com/vcmi-mods/h3-campaigns-remade/vcmi-1.3/screenshots/screen03.png" 681 | ], 682 | "downloadSize" : 5.915 683 | }, 684 | "zefix" : { 685 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/zefix/vcmi-1.4/ZEfix/mod.json", 686 | "download" : "https://github.com/vcmi-mods/zefix/archive/refs/heads/vcmi-1.4.zip", 687 | "downloadSize" : 0.002 688 | }, 689 | "test-map-spells-mod" : { 690 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.4/test-map-spells-mod/mod.json", 691 | "download" : "https://github.com/vcmi-mods/test-map-spells-mod/archive/refs/heads/vcmi-1.4.zip", 692 | "screenshots" : [ 693 | "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen01.png", 694 | "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen02.png", 695 | "https://raw.githubusercontent.com/vcmi-mods/test-map-spells-mod/vcmi-1.3/screenshots/screen03.png" 696 | ], 697 | "downloadSize" : 2.119 698 | }, 699 | "third-upgrades" : { 700 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.4/third-upgrades/mod.json", 701 | "download" : "https://github.com/vcmi-mods/third-upgrades/archive/refs/heads/vcmi-1.4.zip", 702 | "screenshots" : [ 703 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.4/screenshots/screen01.png", 704 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.4/screenshots/screen02.png", 705 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.4/screenshots/screen03.png", 706 | "https://raw.githubusercontent.com/vcmi-mods/third-upgrades/vcmi-1.4/screenshots/screen04.png" 707 | ], 708 | "downloadSize" : 22.345 709 | }, 710 | "pah3-singleplayer-tournament" : { 711 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/pah3-singleplayer-tournament/vcmi-1.3/pah3-singleplayer-tournament/mod.json", 712 | "download" : "https://github.com/vcmi-mods/pah3-singleplayer-tournament/archive/refs/heads/vcmi-1.3.zip", 713 | "downloadSize" : 10.305 714 | }, 715 | "mighty-heroes-iii" : { 716 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/mighty-heroes-iii/mod.json", 717 | "download" : "https://github.com/vcmi-mods/mighty-heroes-iii/archive/refs/heads/vcmi-1.4.zip", 718 | "screenshots" : [ 719 | "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/01.png", 720 | "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/02.png", 721 | "https://raw.githubusercontent.com/vcmi-mods/mighty-heroes-iii/vcmi-1.4/screenshots/03.png" 722 | ], 723 | "downloadSize" : 14.355 724 | }, 725 | "erathian-font" : { 726 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/erathian-font/vcmi-1.4/erathian-font/mod.json", 727 | "download" : "https://github.com/vcmi-mods/erathian-font/archive/refs/heads/vcmi-1.4.zip", 728 | "downloadSize" : 0.159 729 | }, 730 | "kartenarchiv" : { 731 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/kartenarchiv-mappack/vcmi-1.4/kartenarchiv/mod.json", 732 | "download" : "https://github.com/vcmi-mods/kartenarchiv-mappack/archive/refs/heads/vcmi-1.4.zip", 733 | "downloadSize" : 43.43 734 | }, 735 | "vampires-only-gameplay-enhancements" : { 736 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/vampires-only-gameplay-enhancements/vcmi-1.4/vampiresOnlyGameplayEnhancements/mod.json", 737 | "download" : "https://github.com/vcmi-mods/vampires-only-gameplay-enhancements/archive/refs/heads/vcmi-1.4.zip", 738 | "downloadSize" : 3.198 739 | }, 740 | "farriery-town" : { 741 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/farriery-town/mod.json", 742 | "download" : "https://github.com/vcmi-mods/farriery-town/archive/refs/heads/vcmi-1.4.zip", 743 | "screenshots" : [ 744 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/buildings.png", 745 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/Dragon Utopia.png", 746 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/Farriery-town-and-lineup.png", 747 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/lineup.png", 748 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/Spoiled Land.png", 749 | "https://raw.githubusercontent.com/vcmi-mods/farriery-town/vcmi-1.4/Screenshots/screen06.png" 750 | ], 751 | "downloadSize" : 34.725 752 | }, 753 | "ai-loading-screens" : { 754 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/ai-loading-screens/mod.json", 755 | "download" : "https://github.com/vcmi-mods/ai-loading-screens/archive/refs/heads/vcmi-1.4.zip", 756 | "screenshots" : [ 757 | "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/screenshots/screen01.png", 758 | "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/screenshots/screen02.png", 759 | "https://raw.githubusercontent.com/vcmi-mods/ai-loading-screens/vcmi-1.4/screenshots/screen03.png" 760 | ], 761 | "downloadSize" : 13.429 762 | }, 763 | "h3Evo" : { 764 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/mod.json", 765 | "download" : "https://github.com/vcmi-mods/H3Evo/archive/refs/heads/main.zip", 766 | "screenshots" : [ 767 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/Adventure Map.png", 768 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/Instalation 1 - Needed WoG Submods.png", 769 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/Instalation 2 - Needed ToW Submods.png", 770 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/Instalation 3 - Needed Andruids Expansion Submods.png", 771 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Build Screen.png", 772 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Overview.png", 773 | "https://raw.githubusercontent.com/vcmi-mods/H3Evo/main/Screenshots/ToW alternate creatures - Tower Recruting Screen.png" 774 | ], 775 | "downloadSize" : 7.604 776 | }, 777 | "small-era-mods" : { 778 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/small-era-mods/vcmi-1.4/small-era-mods/mod.json", 779 | "download" : "https://github.com/vcmi-mods/small-era-mods/archive/refs/heads/vcmi-1.4.zip", 780 | "downloadSize" : 15.073 781 | }, 782 | "flugel-creature" : { 783 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/flugel/mod.json", 784 | "download" : "https://github.com/vcmi-mods/flugel-creature/archive/refs/heads/vcmi-1.4.zip", 785 | "screenshots" : [ 786 | "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/screenshots/Screen1.png", 787 | "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/screenshots/Screen2.png", 788 | "https://raw.githubusercontent.com/vcmi-mods/flugel-creature/vcmi-1.4/screenshots/Screen3.png" 789 | ], 790 | "downloadSize" : 49.438 791 | }, 792 | "extreme-ai" : { 793 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/extreme-ai/vcmi-1.4/extreme-ai/mod.json", 794 | "download" : "https://github.com/vcmi-mods/extreme-ai/archive/refs/heads/vcmi-1.4.zip", 795 | "downloadSize" : 0.002 796 | }, 797 | "object-pack" : { 798 | "mod" : "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.4/object-pack/mod.json", 799 | "download" : "https://github.com/vcmi-mods/object-pack/archive/refs/heads/vcmi-1.4.zip", 800 | "screenshots" : [ 801 | "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.4/screenshots/screen1.png", 802 | "https://raw.githubusercontent.com/vcmi-mods/object-pack/vcmi-1.4/screenshots/screen2.png" 803 | ], 804 | "downloadSize" : 0.57 805 | } 806 | } 807 | --------------------------------------------------------------------------------