-
Notifications
You must be signed in to change notification settings - Fork 12
/
github.json
1197 lines (1197 loc) · 46.9 KB
/
github.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"vcmi-extras":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-extras/vcmi-1.1/mod.json",
"download": "https://github.com/vcmi-mods/vcmi-extras/archive/refs/heads/vcmi-1.1.zip"
},
"hota": {
"mod" : "https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/hota/mod.json",
"download": "https://github.com/vcmi-mods/horn-of-the-abyss/archive/refs/heads/vcmi-1.1.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/01.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/02.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/03.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/04.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/05.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/06.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/07.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/08.png",
"https://raw.githubusercontent.com/vcmi-mods/horn-of-the-abyss/vcmi-1.1/screenshots/09.png"
]
},
"forge":
{
"mod" : "https://raw.githubusercontent.com/vcmi-mods/forge/vcmi-1.1/mod.json",
"download" : "https://github.com/vcmi-mods/forge/archive/refs/heads/vcmi-1.1.zip"
},
"tides-of-war":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/tides-of-war/master/mod.json",
"download": "https://github.com/vcmi-mods/tides-of-war/archive/refs/heads/master.zip"
},
"wake-of-gods":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/wake-of-gods/master/mod.json",
"download": "https://github.com/vcmi-mods/wake-of-gods/archive/refs/heads/master.zip"
},
"Korean TrueType Fonts":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/master/Korean%20TrueType%20Fonts/mod.json",
"download": "https://github.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/archive/refs/heads/master.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/master/sc1.png",
"https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-korean-truetype-fonts/master/sc2.png"
]
},
"ai trace":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/adventure-ai-trace/upstream/mod.json",
"download" : "https://github.com/vcmi-mods/adventure-ai-trace/archive/refs/heads/upstream.zip"
},
"mac demo support":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/mac-demo-support/master/mod.json",
"download" : "https://github.com/vcmi-mods/mac-demo-support/archive/refs/heads/master.zip"
},
"ai testing maps":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/ai-testing-maps/master/mod.json",
"download" : "https://github.com/vcmi-mods/ai-testing-maps/archive/refs/heads/master.zip"
},
"campaign-heroes":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/campaign-heroes/master/mod.json",
"download" : "https://github.com/vcmi-mods/campaign-heroes/archive/refs/heads/master.zip"
},
"axolotl-creatures-pack":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/axolotl-creatures-pack/main/mod.json",
"download" : "https://github.com/vcmi-mods/axolotl-creatures-pack/archive/refs/heads/main.zip"
},
"german-translation":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/german-translation/master/mod.json",
"download" : "https://github.com/vcmi-mods/german-translation/archive/refs/heads/master.zip"
},
"vcmi-mod-ce-ukr":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/vcmi-mod-ce-ukr/vcmi-1.1/ce-ukr/mod.json",
"download" : "https://github.com/vcmi-mods/vcmi-mod-ce-ukr/archive/refs/heads/vcmi-1.1.zip"
},
"h3-for-vcmi-englisation":
{
"mod": "https://raw.githubusercontent.com/vcmi-mods/h3-for-vcmi-englisation/vcmi-1.1/H3forVCMIenglisation/mod.json",
"download" : "https://github.com/vcmi-mods/h3-for-vcmi-englisation/archive/refs/heads/vcmi-1.1.zip"
},
"tarnum":
{
"name" : "Tarnum is back (Original Factions)",
"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 :)",
"author" : "marif, Hobbit (Death Knight), HotA Team (Overlord speciality icons)",
"contact" : "http://forum.vcmi.eu/viewtopic.php?t=798",
"version" : "1.1.0",
"modType" : "Heroes",
"changelog" :
{
"1.0.0" : [ "Initial release" ],
"1.0.1" : [ "Bug fixes" ],
"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" ],
"1.0.3" : [ "Bug fixes" ],
"1.0.4" : [ "Updated mod file to VCMI version 0.96" ],
"1.0.5" : [ "Graphic fixes", "New specialty format" ],
"1.1.0" : [ "Few new Tarnums were added :)" ]
},
"download" : "https://github.com/vcmi-mods/tarnum/archive/refs/heads/main.zip"
},
"neutral-heroes":
{
"version" : "1.03",
"author" : "avatar, Nephretes, Witchking, draeganfire, MK. Portraits are taken from various sources from the net.",
"contact" : "http://www.vault.acidcave.net/download.php?id=553",
"description" : "Mod creates neutral heroes class called Drifter. Drifter can be hired in Tavers, but can't chosen as starting heroes.",
"modType" : "Heroes",
"name" : "Neutral Heroes",
"changelog" :
{
"1.0" : ["Initial release"],
"1.01" : ["fixes"],
"1.02" : ["Add female hero sprites"],
"1.03" : ["Add two HotA heroes"]
},
"download" : "https://github.com/vcmi-mods/neutral-heroes/archive/refs/heads/main.zip"
},
"highlands-town":
{
"name" : "Highlands Town",
"description" : "New town made by Turbanellos. New townscreen.",
"author" : "FF Team, mod : Turbanellos",
"contact" : "http://forum.vcmi.eu/index.php",
"version" : "1.07",
"modType" : "Town",
"conflicts" :
[
"bastille"
],
"changelog" :
{
"1.07" : ["Partial grail building support"],
"1.06" : ["Partial special buildings support"],
"1.05" : ["new interface and new abilities, new lvl 6 creatures!"],
"1.02" : [ "Added new commander", "Cosmetic fixes" ],
"1.01" : [ "Bug fixes" ],
"1.00" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/highlands-town/archive/refs/heads/main.zip"
},
"courtyard":
{
"name" : "Courtyard town",
"author" : "Trith, special thanks to: avatar, Kammer, Andruids, Hobbicus and MDT team",
"contact" : "NONE",
"description" : "New faction.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.02",
"changelog" :
{
"1.02" : [ "Tweaks" ],
"1.01" : [ "Special buildings support" ],
"1.00" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/courtyard/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/courtyard/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/courtyard/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/courtyard/main/screenshots/screen3.png"
]
},
"tok":
{
"name" : "The Other Kingdom",
"author" : "Fiorin",
"contact" : "http://fior.in/",
"description" : "New neutral creatures, new classes, heroes and graphics improvements made by Fiorin",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Creatures",
"version" : "0.1",
"changelog" :
{
"0.1" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/tok/archive/refs/heads/main.zip"
},
"magic-fader":
{
"name" : "Magic Fader",
"author" : "avatar. Graphic: HotA Team (rejected material).",
"contact" : "NONE",
"description" : "New secondary skill: Magic Fader. Partially blocks casting spells by enemy hero.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Skills",
"version" : "1.02",
"changelog" :
{
"1.0.0" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/magic-fader/archive/refs/heads/main.zip"
},
"grove":
{
"name" : "Grove town",
"author" : "New Grove Team & Trith, mod : Kuririn & Pointer, fixes: avatar, Alyx182008",
"contact" : "NONE",
"description" : "New town made by New Grove Team & Trith.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.16",
"changelog" :
{
"1.16" : [ "Tweaks" ],
"1.10" : [ "Special buildings support" ],
"1.00" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/grove/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/grove/main/screenshots/screen5.png"
]
},
"combine-grail":
{
"name" : "Combine Grail",
"author" : "avatar, Trith, Hobbit",
"contact" : "NONE",
"description" : "Grail as combined artifact. Find 5 new artifacts to combine Grail of them instead of digging.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Mechanic",
"version" : "1.2",
"changelog" :
{
"1.2" : [ "Tweaks" ],
"1.1" : [ "Graphical fixes" ],
"1.0" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/combine-grail/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/combine-grail/main/screenshots/screen1.png"
]
},
"fairy-town":
{
"name" : "Fairy town",
"author" : "Ben Yan, New fairy Team, mod : Kuririn, zeryss, Draeganfire, avatar",
"contact" : "NONE",
"description" : "New town made by New fairy Team, updated by Turbanellos in 2022.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.5",
"changelog" :
{
"1.5" : [ "Totally reworked town" ],
"1.0" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/fairy-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/fairy-town/main/screenshots/screen1.png"
]
},
"haven-town":
{
"name" : "Haven town",
"author" : "Ganymed, Necronix, Deo. VCMI port acidchalk.Updated by Ben Yan(Turbanellos) in March 2022.",
"contact" : "NONE",
"description" : "New town made by Turbanellos.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.10",
"changelog" :
{
"1.10" : [ "Great Updates" ],
"1.04" : [ "Special buildings support" ],
"1.03" : [ "Another fixes" ],
"1.02" : [ "Some missing buildings" ],
"1.01" : [ "New hero specialty format", "Bugfixes" ],
"1.0" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/haven-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/haven-town/main/screenshots/screen1.png"
]
},
"reworked-commanders":
{
"name" : "Reworked commanders",
"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.",
"contact" : "NONE",
"description" : "Reworked commanders for original factions. Loosely based on abilities and design of WoG commanders. Read Reworked_Commanders_VCMI_Manual.pdf for more infos",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Creatures",
"version" : "1.11",
"changelog" :
{
"1.11" : [ "Tweaks" ],
"1.1" : [ "Balance changes" ],
"1.0" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"conflicts":
[
"wog.commanders",
"wake-of-gods.commanders"
],
"download" : "https://github.com/vcmi-mods/reworked-commanders/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/reworked-commanders/main/screenshots/screen3.png"
]
},
"cathedral-town":
{
"name" : "Cathedral town",
"author" : "Ben Yan",
"contact" : "NONE",
"description" : "Cathedral Town is a mod which recreated by Ben Yan.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.0.2",
"changelog" :
{
"1.0.2" : [ "Grail building support" ],
"1.0.1" : [ "Special buildings support" ],
"1.0.0" : [ "Initial release" ]
},
"compatibility":
{
"min" : "1.0.0"
},
"download" : "https://github.com/vcmi-mods/cathedral-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/cathedral-town/main/screenshots/screen4.png"
]
},
"ruins-town":
{
"name" : "Ruins town",
"author" : "Fiorin",
"contact" : "https://fior.in",
"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",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.2.3",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"1.2.3" : [ "Lots od changes and fixes" ],
"0.95" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/ruins-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen5.png",
"https://raw.githubusercontent.com/vcmi-mods/ruins-town/main/screenshots/screen6.png"
]
},
"h3-themes":
{
"name" : "H3 themes",
"author" : "New World Computing, HotA Team. Port: avatar",
"contact" : "NONE",
"description" : "Game screens from all HoMM3 parts: RoE, AB, SoD, HotA",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Themes",
"version" : "1.1",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"1.1" : [ "Added one more screen" ],
"1.0" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/h3-themes/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/h3-themes/main/screenshots/screen1.png"
]
},
"creatures-hidden-potential":
{
"name" : "Creatures Hidden Potential",
"author" : "Andruids",
"contact" : "[email protected]",
"description" : "Mod adding various bonuses for creatures, to make use of their unused animations, with as slight impact to game's balance as possible.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Creatures",
"version" : "0.4",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"0.4" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/creatures-hidden-potential/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/creatures-hidden-potential/main/screenshots/screen3.png"
]
},
"asylum-town":
{
"name" : "Asylum town",
"author" : "FF Team, mod by Turbanellos",
"contact" : "https://forum.vcmi.eu/t/preserve-new-and-asylum-town/1061",
"description" : "New town made by Turbanellos, The Forgotten Fields. Asylum Town is a new force with mental attack.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.06",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"1.06" : [ "Reworks and tweaks" ],
"1.00" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/asylum-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen5.png",
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen6.png",
"https://raw.githubusercontent.com/vcmi-mods/asylum-town/main/screenshots/screen7.png"
]
},
"death-valley-town":
{
"name" : "Death Valley",
"author" : "VCMI ROFL and Turbanellos(Ben Yan)",
"contact" : "https://forum.vcmi.eu/t/death-valley-1-1-0-version/5648",
"description" : "New necro town",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.10",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"1.00" : [ "Initial release" ],
"1.10" : [" changes for town screen, map objects, seige screen, creatures"]
},
"download" : "https://github.com/vcmi-mods/death-valley-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/death-valley-town/main/screenshots/screen5.png"
]
},
"tartarus-town":
{
"name" : "Tartarus town",
"author" : "FF Team, mod : Turbanellos",
"contact" : "https://forum.vcmi.eu/t/new-town-tartarus-ice-demons/5623",
"description" : "New town made by Turbanellos(Ben YAN), Tartarus is a new town for ice demons. Released in January 2022.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.02",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"1.02" : [ "New lvl6 creatures graphic" ],
"1.01" : [ "Fixes, added Arrow Towers icons" ],
"1.00" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/tartarus-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen5.png",
"https://raw.githubusercontent.com/vcmi-mods/tartarus-town/main/screenshots/screen6.png"
]
},
"preserve-town":
{
"name" : "Preserve town",
"author" : "FF Team, mod : Turbanellos",
"contact" : "https://forum.vcmi.eu/t/preserve-new-and-asylum-town/1061",
"description" : "New town made by Turbanellos, The Forgotten Fields, avatar, acidchalk",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "1.1.6",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
"1.1.6" : [ "Partial special building support" ],
"1.1.5" : [ "New abilities and animations" ],
"1.1.2" : [ "Small bug fixes", "New puzzle by acidchalk" ],
"1.1.1" : [ "Upgaded graphic", "Hero males and female sprites on the battlefields", "Bug fixes" ],
"1.1.0" : [ "Bug fixes" ],
"1.0.0" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/preserve-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen5.png",
"https://raw.githubusercontent.com/vcmi-mods/preserve-town/main/screenshots/screen6.png"
]
},
"new-pavilion":
{
"name" : "Pavilion town",
"author" : "Bastion New Town Group, edeksumo, New Pawulon Team, Acid Cave community",
"contact" : "[email protected]",
"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.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "2.7",
"compatibility" :
{
"min" : "1.0.0"
},
"changelog" :
{
},
"download" : "https://github.com/vcmi-mods/new-pavilion/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/new-pavilion/main/screenshots/screen5.png"
]
},
"abyss-town":
{
"name" : "Abyss town",
"author" : "Axolotl (graphics), mitlandy, Tooandorisu, Warmonger, misiokles, Troggly, Dydzio, Anonymous, StasPV",
"contact" : "https://forum.vcmi.eu/t/abyss-town-revived/1010",
"description" : "New town with ocean climax.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "0.8",
"changelog" :
{
"0.80" : [ "Various fixes" ],
"0.70" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/abyss-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/abyss-town/main/screenshots/screen5.png"
]
},
"retreat-town":
{
"name" : "Retreat town",
"author" : "XEricSin, Zeryss, acidchalk, avatar",
"contact" : "http://heroescommunity.com/viewthread.php3?TID=42498",
"description" : "Retreat town with chinese climax",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "0.5.1",
"changelog" :
{
"0.5.1" : [ "Special buildings support" ],
"0.5.0" : [ "Re-worked mod to match ERA original version" ]
},
"download" : "https://github.com/vcmi-mods/retreat-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/retreat-town/main/screenshots/screen3.png"
]
},
"cetatea-town":
{
"name" : "Cetatea town",
"author" : "LizardWarrior, József Csanádi, Planet Avril, avatar, acidchalk",
"contact" : "http://heroescommunity.com/viewthread.php3?TID=39546",
"description" : "New town in Romanian Style",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "2.12",
"changelog" :
{
"2.12" : [ "Special buildings support" ],
"2.11" : [ "New hero specialty format", "New hero portraits" ]
},
"download" : "https://github.com/vcmi-mods/cetatea-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/cetatea-town/main/screenshots/screen5.png"
]
},
"lost-souls":
{
"name" : "Lost souls",
"author" : "speehgee",
"contact" : "http://forum.vcmi.eu/viewforum.php?f=15",
"description" : "Mod adds one new neutral creature - Lost Soul",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Creatures",
"version" : "0.1.1",
"changelog" :
{
"0.1" : ["Initial release"],
"0.1.1" : ["fixed advAmount value", "new calculated AI/Fight values"]
},
"download" : "https://github.com/vcmi-mods/lost-souls/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/lost-souls/main/screenshots/screen1.png"
]
},
"kurek-creatures":
{
"name" : "Kurek creatures",
"author" : "Kurek",
"contact" : "http://www.forum.acidcave.net/profile.php?UID=4121",
"description" : "Mod adds two new neutral creatures: Cherub and Marid",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Creatures",
"version" : "1.00",
"changelog" :
{
"1.00" : ["Initial release"]
},
"download" : "https://github.com/vcmi-mods/kurek-creatures/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/kurek-creatures/main/screenshots/screen2.png"
]
},
"undead-sphinxes":
{
"name" : "Undead Sphinxes",
"author" : "witchking, fiorin, Trith, avatar, Andruids, fred79",
"contact" : "http://forum.vcmi.eu",
"description" : "Two new neutral creatures: Ashen Sphinx and Entombed Sphinx.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Creatures",
"version" : "1.00",
"changelog" :
{
"1.0" : ["Initial release"]
},
"download" : "https://github.com/vcmi-mods/undead-sphinxes/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/undead-sphinxes/main/screenshots/screen1.png"
]
},
"andruids-spell-balance":
{
"name" : "New Magic Balance",
"author" : "Andruids",
"contact" : "http://heroescommunity.com/viewthread.php3?TID=30659&PID=1466087#focus",
"description" : "Modifications of Heroes 3 spells system (see screen1.png)",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Spells",
"version" : "0.8",
"changelog" :
{
"0.8" : ["Initial release"]
},
"download" : "https://github.com/vcmi-mods/andruids-spell-balance/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/andruids-spell-balance/main/screenshots/screen1.png"
]
},
"new-old-spells-plus":
{
"name" : "New Old Spells+",
"author" : "Warmonger, avatar, Kuririn, Andruids",
"contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12",
"description" : "9 spells from other Homm games",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Spells",
"version" : "0.9.5",
"changelog" :
{
"0.8" : ["Initial release"],
"0.9" : ["Added spell Fear (abandoned H3 spell)"],
"0.9.1" : ["Small improvements"],
"0.9.5" : ["Graphical lifting, some balancing improvements and adapting to the new spell format"]
},
"download" : "https://github.com/vcmi-mods/new-old-spells-plus/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/new-old-spells-plus/main/screenshots/screen1.png"
]
},
"andruids-expansion":
{
"name" : "Andruids Expansion mod",
"author" : "Andruids, M&M Community",
"contact" : "[email protected]",
"description" : "Various modifications expanding Heroes III mechanics and elements (http://heroescommunity.com/viewthread.php3?TID=45286)",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Expansion",
"version" : "0.7.6",
"changelog" :
{
"0.7.6" : ["Proper mod folder names"],
"0.7.5" : ["Initial release"]
},
"download" : "https://github.com/vcmi-mods/andruids-expansion/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen5.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen6.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen7.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen8.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen9.png",
"https://raw.githubusercontent.com/vcmi-mods/andruids-expansion/main/screenshots/screen10.png"
]
},
"portraits-packs":
{
"name" : "Portraits packs",
"author" : "Dtnmang, Nitroflower, Striker, Vallex",
"contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12",
"description" : "Portaits packs for standard HoMM3 heroes ported from ERA2 mods by avatar",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Graphical",
"version" : "1.1",
"changelog" :
{
"1.0" : ["Initial release"],
"1.1" : [ "Added StableDiffusion AI portraits pack" ]
},
"download" : "https://github.com/vcmi-mods/portraits-packs/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/portraits-packs/main/screenshots/screen4.png"
]
},
"heroes-iii-orchestra":
{
"name" : "Heroes III Orchestra",
"author" : "Heroes III Orchestra",
"contact" : "https://www.youtube.com/c/HeroesOrchestra",
"description" : "Orchestral tracks of Heroes III towns and combat, arranged by Heroes Orchestra",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Music",
"version" : "1.0",
"changelog" :
{
"1.0" : ["Initial release"]
},
"download" : "https://github.com/vcmi-mods/heroes-iii-orchestra/archive/refs/heads/main.zip",
"screenshots":
[
]
},
"mega-pack-rus":
{
"name" : "MegaPack Rus",
"author" : "ZoTaC, Dmitry - mygms.ru",
"contact" : "https://forum.df2.ru/index.php?showtopic=35881",
"description" : "Исправляет кривости графики русских локализаций SoD и Complete от Буки",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Translation",
"version" : "1.2",
"changelog" :
{
"1.0" : ["Initial release"],
"1.2" : [ "Update" ]
},
"download" : "https://github.com/vcmi-mods/mega-pack-rus/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-1.png",
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-2.png",
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-3.png",
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-4.png",
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-5.png",
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-6.png",
"https://raw.githubusercontent.com/vcmi-mods/mega-pack-rus/main/screenshots/sc-7.png"
]
},
"new-interface-mod":
{
"name" : "New-style Interface",
"author" : "FCst1 and NI team. Mod - Kuririn",
"contact" : "https://www.youtube.com/watch?v=BMz2CFtGuEw",
"description" : "Mod changes many of standard H3 interface graphics (not works for all resolutions).",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Interface",
"version" : "1.0",
"changelog" :
{
"1.0" : ["Initial release"]
},
"download" : "https://github.com/vcmi-mods/new-interface-mod/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen4.png",
"https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen5.png",
"https://raw.githubusercontent.com/vcmi-mods/new-interface-mod/main/screenshots/screen6.png"
]
},
"hi-rez-menu":
{
"name" : "High-res Menu",
"author" : "Dru",
"contact" : "https://forum.vcmi.eu/c/international-board/content-creation/12",
"description" : "High resolution main menu pack created by Dru for VCMI",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Interface",
"version" : "1.1",
"changelog" :
{
"1.0" : ["Initial release"],
"1.1" : ["Fixes"]
},
"download" : "https://github.com/vcmi-mods/hi-rez-menu/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/hi-rez-menu/main/screenshots/screen1.png"
]
},
"greenhouse-town":
{
"name" : "Greenhouse",
"author" : "Mad Hatter Workshop",
"contact" : "https://www.youtube.com/@MadHatterDomain",
"description" : "Greenhouse - Town of Vegetables and Fruits.",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Town",
"version" : "0.1.5",
"changelog" :
{
"0.1.5" : [ "Fixes" ],
"0.1.0" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/greenhouse-town/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen1.png",
"https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen2.png",
"https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen3.png",
"https://raw.githubusercontent.com/vcmi-mods/greenhouse-town/main/screenshots/screen4.png"
]
},
"sand-tower":
{
"name" : "Sand Tower",
"author" : "totkotoriy, J. M. Sower",
"contact" : "http://forum.vcmi.eu/viewtopic.php?p=11046&sid=c709e37f1a8d8b91d286928e90cf4a8a#11046",
"description" : "Mod changes Tower's internal look into more sandy",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Graphical town modifications",
"version" : "1.1",
"changelog" :
{
"1.1" : [ "Fixes" ],
"1.0" : [ "Initial release" ]
},
"download" : "https://github.com/vcmi-mods/sand-tower/archive/refs/heads/main.zip",
"screenshots":
[
"https://raw.githubusercontent.com/vcmi-mods/sand-tower/main/screenshots/screen1.png"
]
},
"autumn-rampart":
{
"name" : "Autumn Rampart",
"author" : "Irhak alias Kreegan",
"contact" : "http://www.forum.acidcave.net/profile.php?UID=1646",
"description" : "Alternative, darker Rampart",
"licenseName" : "Creative Commons Attribution-ShareAlike",
"licenseURL" : "http://creativecommons.org/licenses/by-sa/4.0/deed",
"modType" : "Graphical town modifications",
"version" : "0.92",
"changelog" :
{
"0.92" : [ "Fixed problem with map editor" ],
"0.91" : [ "Adds Fountain of Fortune def", "Small fixes" ],
"0.9" : [ "Initial release" ]