-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmods.json
More file actions
8329 lines (8329 loc) · 272 KB
/
Copy pathmods.json
File metadata and controls
8329 lines (8329 loc) · 272 KB
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
[
{
"repo": "sk7725/betamindy",
"name": "BetaMindy",
"author": "sk7725",
"lastUpdated": "2022-08-06T10:23:30Z",
"stars": 248,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "My first Java mod, has the same amount of chaotic energy of sk7725/Commandblocks."
},
{
"repo": "aureusstratus/exogenesis",
"name": "Exogenesis",
"author": "AureusStratus",
"lastUpdated": "2022-09-05T10:27:20Z",
"stars": 189,
"minGameVersion": "137",
"hasScripts": false,
"hasJava": false,
"description": "A mod that adds in a butt load of content"
},
{
"repo": "xeloboyo/factoriodustry",
"name": "FactoryDustry - TexturePack",
"author": "Xelo",
"lastUpdated": "2022-05-10T05:23:03Z",
"stars": 174,
"minGameVersion": "105",
"hasScripts": true,
"hasJava": false,
"description": "Brings back some of that early mindustry charm, can be multiplayered with vanilla\nContributors: VozDuh"
},
{
"repo": "yuria-shikibe/newhorizonmod",
"name": "New Horizon",
"author": "Yuria",
"lastUpdated": "2022-09-03T12:37:43Z",
"stars": 167,
"minGameVersion": "138",
"hasScripts": false,
"hasJava": true,
"description": "Warning: Unfinished For V7"
},
{
"repo": "slava0135/revision",
"name": "reVision",
"author": "Slava0135",
"lastUpdated": "2022-08-25T07:54:20Z",
"stars": 119,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "The other way around"
},
{
"repo": "bluewolf3682/exotic-mod",
"name": "Exotic Mod",
"author": "BlueWolf",
"lastUpdated": "2022-09-05T19:22:34Z",
"stars": 118,
"minGameVersion": "131",
"hasScripts": false,
"hasJava": false,
"description": "WARNING: Not supported on low-end devices.\n\nThe official HJSON 7.0 example mod. Both a reference point and also playable. Developed in Canada.\nMoving to 7.0 release build 130.\n\nDiscord: https://discord.gg/M3hm5z6nm6\n\nA lot of work goes into Exotic, so if you want to show some support or like the content give the mod a star on GitHub!"
},
{
"repo": "liplum/cyberio",
"name": "Cyber IO",
"author": "[#42a5f5]Liplum[]",
"lastUpdated": "2022-08-25T12:22:42Z",
"stars": 83,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "[#e53935]The Cybernetics on Mindustry v7.[]\n\nCurrent version is v4.1, while v5 is still in development.\n\nLanguage Supports: English, Chinese(简体/正體中文), Japanese(日本語), Russian(Русский) and Ukrainian (українська).\n\nTo learn more about Cyber IO, please check the repository on GitHub by hitting the button below.\n\nGitHub: [#42a5f5]github.com/liplum/CyberIO[]"
},
{
"repo": "qmelz/hackustry",
"name": "Hackustry",
"author": "QmelZ",
"lastUpdated": "2022-05-12T05:23:40Z",
"stars": 77,
"minGameVersion": "126",
"hasScripts": true,
"hasJava": false,
"description": "Hackustry v4"
},
{
"repo": "sk7725/timecontrol",
"name": "Time Control",
"author": "sk7725",
"lastUpdated": "2022-08-19T23:46:56Z",
"stars": 73,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Speeds up or slows down Mindustry.\nPress & hold 'x1' to fold the buttons.\nSome buttons can be pressed twice.\n\nDisclaimer: not intended for multiplayer use!"
},
{
"repo": "z0mbiesrock/diamond-ore",
"name": "Diamond Ore Mod",
"author": "z0mbiesrock",
"lastUpdated": "2021-08-05T13:27:09Z",
"stars": 72,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "Adds the Diamond resource.\n\nThis mod also adds more than just diamonds. It also adds enhanced versions of vanilla production blocks, as well as units, technology, and more."
},
{
"repo": "what42pizza/mindustry-production-mod",
"name": "Mindustry-Production-Mod",
"author": "What42Pizza",
"lastUpdated": "2022-09-01T02:40:02Z",
"stars": 67,
"minGameVersion": "126.3",
"hasScripts": false,
"hasJava": false,
"description": "This mod gives you iron, steel, aluminum, oil processing, and alternative ways of generating materials like titanium and thorium."
},
{
"repo": "slotterleet/goldmod",
"name": "Gold Mod",
"author": "The Slaylord",
"lastUpdated": "2021-08-31T16:28:01Z",
"stars": 65,
"minGameVersion": "126",
"hasScripts": true,
"hasJava": false,
"description": "This mod adds ''new'' items, blocks, turrets, units and zones to the game.\n\n> Discord: https://discord.gg/kCvJKyb\n> GitHub: https://github.com/TheSlaylord/GoldMod"
},
{
"repo": "deltanedas/pictologic",
"name": "PicToLogic",
"author": "deltanedas, Router and another guy",
"lastUpdated": "2022-09-05T13:15:19Z",
"stars": 64,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Adds a dialog for turning images into processor schematics.\nRequires deltanedas/ui-lib."
},
{
"repo": "eschatologue/unlimited-armament-works",
"name": "Unlimited Armament Works",
"author": "Eschatologue",
"lastUpdated": "2022-09-05T06:43:06Z",
"stars": 62,
"minGameVersion": "136.1",
"hasScripts": false,
"hasJava": true,
"description": " A port and sequel to Heavy Armament Industries, written in java.\n All development will be implemented here as Heavy Armament Industries has been discontinued and removed from the Mod browser.\n\n Unlimited Armament Works adds loads of new content, that expands upon vanilla Mindustry, adding more turrets, units, factories, and its own power system, steam Engines! and much more.\n\n A lot of work and improvements goes into UAW, if you want to show some support or like the content, please give the mod a star on GitHub, Thank you!"
},
{
"repo": "deltanedas/ui-lib",
"name": "UI Lib",
"author": "deltanedas",
"lastUpdated": "2022-07-16T02:37:54Z",
"stars": 59,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Library for other mods that unifies and simplifies UI creation."
},
{
"repo": "sharlottes/informatis",
"name": "Informatis",
"author": "Sharlotte",
"lastUpdated": "2022-08-24T13:11:44Z",
"stars": 58,
"minGameVersion": "137",
"hasScripts": false,
"hasJava": true,
"description": "The mod displays more information in-game, such as unit/building, wave, core, tile, item/unit total info etc"
},
{
"repo": "deltanedas/rtfm",
"name": "RTFM",
"author": "deltanedas",
"lastUpdated": "2022-05-07T15:52:23Z",
"stars": 56,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Mod that adds a manual page library. RTFM in the About menu.\nComes with documentation of vanilla'a Logic system.\nOptionally requires deltanedas/ui-lib for extra buttons.\npt_BR translations by King-BR"
},
{
"repo": "deltanedas/routorio-old",
"name": "routorio",
"author": "DeltaNedas",
"lastUpdated": "2022-05-14T15:45:33Z",
"stars": 54,
"minGameVersion": "131",
"hasScripts": true,
"hasJava": false,
"description": "Reality-shattering router expansion mod.\nOptionally requires DeltaNedas/rtfm for manual pages.\n10/10 IGN\n - Router\nUkranian translation by Prostaчок_ua\nAlso try out Slava1035/reVision!"
},
{
"repo": "meepoffaith/prog-mats-java",
"name": "Progression Ministry",
"author": "MEEP of Faith (And a bunch of contributors. Load the game with Progression Ministry enabled to view them!)",
"lastUpdated": "2022-09-02T17:46:35Z",
"stars": 53,
"minGameVersion": "138",
"hasScripts": false,
"hasJava": true,
"description": "This mod is mostly just turrets. It's just me creating random ideas that pop into my head."
},
{
"repo": "petruchiorus/lead_ind",
"name": "Lead Industries",
"author": "PetruCHIOrus",
"lastUpdated": "2021-01-17T18:21:16Z",
"stars": 48,
"minGameVersion": "122",
"hasScripts": true,
"hasJava": false,
"description": "No description provided."
},
{
"repo": "sharlottes/sharustry",
"name": "Sharustry",
"author": "Sharlottes",
"lastUpdated": "2022-08-24T02:49:18Z",
"stars": 47,
"minGameVersion": "137",
"hasScripts": false,
"hasJava": true,
"description": "my first Java Mod. multi craft-generator, multi turret, multi drill and few thing more! \nnot completely finished/released yet. but i'm sure it's still enough for you to be interested in this mod, this contents, this ideas! \n\nThanks for helping: sk7725: owner of betaMindy \nmeep: owner of Progressed Materials \nmal&ssim: donated great sprites"
},
{
"repo": "sharlottes/examplemod",
"name": "Example Mod",
"author": "Sharlotte",
"lastUpdated": "2021-08-21T09:35:11Z",
"stars": 44,
"minGameVersion": "130",
"hasScripts": true,
"hasJava": false,
"description": "Various blocks, some units, and the block scan pages, etc.... there's a variety of content! \\n download and star Sharustry, the second mod please!"
},
{
"repo": "aerongreva/aeromindustry",
"name": "AeroMindustry",
"author": "AeronGreva",
"lastUpdated": "2022-06-26T19:44:10Z",
"stars": 44,
"minGameVersion": "121",
"hasScripts": true,
"hasJava": false,
"description": "A small mod that adds a couple of new materials, machinery, turrets, and even a new map!\nDoes not modify Vanilla content, for the sake of compatibility with other mods."
},
{
"repo": "3snake3/sapphirium",
"name": "Sapphirium",
"author": "Snake",
"lastUpdated": "2022-08-25T04:43:14Z",
"stars": 41,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": true,
"description": "Adds several new factions that include their own unique content. Uses some java classes."
},
{
"repo": "abomb4/super-cheat",
"name": "(v6) Invincible Cheat 无敌作弊",
"author": "滞人",
"lastUpdated": "2022-02-11T01:17:46Z",
"stars": 37,
"minGameVersion": "122",
"hasScripts": true,
"hasJava": false,
"description": "This is a cheat mod, abuse will reduce your game experience, be careful for using this.\nGitHub: https://github.com/abomb4/super-cheat\nemail: abomb4@163.com\nWellcome to feedback!\n如果 Android 玩家发现物品描述都是英文,去游戏设置 -> 语言 -> 切换成任意其他语言(如繁体中文)-> 重启 -> 切回简体中文即可。\n\nFeatures:\n- Adjustable Overdrive Projector (speedup, or slow down)\n- Team Changer\n- DPS Tester Unit and Walls\n- Invincible Core and Invincible build plane\n- Cheat Items (power source, liquid source, item source with 36x faster)\n- Invincible Wall, Invincible Force Projector\n- Several strange projectors\n- Chronosphere Unloader and Pusher\n- Unit Factory that can build unit for enemys\n\n这是个作弊 mod,会降低游戏体验,请谨慎使用。\n主要特性:\n- 可调整的超速投影(更快,也可以更慢)\n- 队伍更换器\n- DPS 测试单位与测试墙\n- 无敌核心,无敌建造机\n- 作弊物品(电源、水源、物品源超快版)\n- 无敌围墙,无敌力场\n- 一大堆神奇力场\n- 时空提取器、时空推送器\n- 单位工厂(可以给敌人出兵)\n\nЭто читерный мод, злоупотребление испортит интерес к игре, острожней с этим.\nВозможности:\n- Настраиваемый сверхприводный проектор (ускорение или замедление)\n- Блоки, меняющие команду, за которую играют те или иные единицы (или вы сами)\n- Измеритель урона в секунду\n- Непобедимое ядро и его строительная боевая единица\n- Cheat Items (power source, liquid source, item source with 36x faster)\n- Неразрушаемые стены, силовой проектор с бесконечной прочностью\n- Несколько полезных проекторов\n- Дистанционный загрузчик и разгрузчик\n- Универсальный завод боевых единиц, также может производить их для врагов"
},
{
"repo": "fresh791/fading-revelations",
"name": "Fading Revelations",
"author": "\nDevelopers\n- Json/Hjson : Fresh791\n- Balancing : Fresh791\n- Bug Fixes : Fresh791\n\nTranslators\n- English : Fresh791\n- German : Fresh791\n- Spanish : Fresh791 / HairyNugget\n- Ukrainian : Prosta4ok_ua\n\nContributors\n- Schematics: Dragonboi / Zombee\n- Sprites : Fresh791 \n- Lore: iori / Fresh791\n\nAnd more people!\nCheck the Discord!",
"lastUpdated": "2022-09-02T14:11:58Z",
"stars": 37,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "\nA huge, fun & balanced content extension.\n\n\nFeatures\nA custom map and many blocks, \nunits, items, liquids, schematics\n& ammo types.\n\n\nLanguages\n- English\n- German\n- Spanish\n- Ukrainian\n\n\nCheck Discord / GitHub \nfor more information!"
},
{
"repo": "gdeft/portal",
"name": "Portal",
"author": "Gdeft",
"lastUpdated": "2021-10-10T19:36:16Z",
"stars": 35,
"minGameVersion": "108",
"hasScripts": false,
"hasJava": true,
"description": "Simulates the world of Aperture Science Enrichment Center in Mindustry."
},
{
"repo": "goobrr/esoterum",
"name": "Esoterum",
"author": "Goober, Meep, Python, Eldoofus",
"lastUpdated": "2022-01-27T14:34:01Z",
"stars": 35,
"minGameVersion": "132",
"hasScripts": false,
"hasJava": true,
"description": "adds a redstone-like wire-based logic system, tailored for making circuits."
},
{
"repo": "deltanedas/dev-mode",
"name": "Developer Mode",
"author": "deltanedas",
"lastUpdated": "2022-06-29T13:03:00Z",
"stars": 35,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Lets you type into the console.\nPress F8 to open."
},
{
"repo": "xzxadixzx/scheme-size",
"name": "Scheme Size",
"author": "xzxADIxzx",
"lastUpdated": "2022-09-05T14:39:30Z",
"stars": 34,
"minGameVersion": "136.1",
"hasScripts": false,
"hasJava": true,
"description": "A mod that increase the schematic size limit to 512 blocks!\nVanilla Only!"
},
{
"repo": "nickname73/gravillaso",
"name": "GRavillaso",
"author": "NickName73 (NiTiS-Dev)",
"lastUpdated": "2022-05-27T09:34:09Z",
"stars": 33,
"minGameVersion": "135",
"hasScripts": false,
"hasJava": true,
"description": "GRavillaso Mod based to improve basic content & add new things"
},
{
"repo": "younggam/multi-lib",
"name": "Multi Lib",
"author": "younggam",
"lastUpdated": "2022-07-05T12:59:34Z",
"stars": 33,
"minGameVersion": "112.1",
"hasScripts": true,
"hasJava": false,
"description": "multi\nlibrary mod for multi crafter.\nSupport over Mindustry 6.0 version.\nInstruction is in multi-lib-example"
},
{
"repo": "meepoffaith/missing-category-units",
"name": "Missing Category Units",
"author": "Scripting: MEEP of Faith\nSpriting: A5TR0spud\nIndonesian Translation: WilloIzCitron",
"lastUpdated": "2022-05-30T17:32:48Z",
"stars": 32,
"minGameVersion": "131",
"hasScripts": true,
"hasJava": false,
"description": " Adds units for missing categories of units,\n Blue Air, Purple Naval.\n The fourth slot in the unit factories have blue units.\n \n Note: Android 7 and below will not be able to run this mod.\""
},
{
"repo": "gdeft/substructure",
"name": "Substructure",
"author": "Gdeft",
"lastUpdated": "2021-01-07T15:01:12Z",
"stars": 30,
"minGameVersion": "121",
"hasScripts": true,
"hasJava": false,
"description": "JavaScript only mindustry mod."
},
{
"repo": "flintyx/diversetech",
"name": "DiverseTech",
"author": "Flin",
"lastUpdated": "2021-12-10T20:17:23Z",
"stars": 30,
"minGameVersion": "130",
"hasScripts": true,
"hasJava": false,
"description": "Innovate & Research new Technologies that will blow up your mind!\n\nThanks to:\nRayanZ22 (translating),\nTheMalaysianDude (Azimuth sprite)"
},
{
"repo": "goobrr/amogus",
"name": "amogus",
"author": "Goober",
"lastUpdated": "2022-01-25T09:00:29Z",
"stars": 30,
"minGameVersion": "125",
"hasScripts": true,
"hasJava": false,
"description": "amogus"
},
{
"repo": "pixecoz/mindustryschematics",
"name": "Schematics Pack",
"author": "pixecoz",
"lastUpdated": "2022-07-28T10:58:37Z",
"stars": 29,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "ENG:\n⚠WARN: WHEN YOU INSTALL THIS MOD, ALL MOD SCHEMATICS WILL BE LOADED TO YOUR GAME SAVE. This means that even after removing the mod, the schemes will not be deleted. You have been warned. Aslo you can download normal pack as before on GitHub releases.\n\nMod adds schematics and map for schematics. Contains schematics for many resources, energy, units, and more.\n\nWith this pack you can learn different tricks in the schemes, and improve your skill in schemes.\n\nThanks to all those who make the schemes, because without you the mod would not exist!\n\n\n\nRUS:\n⚠ВНИМАНИЕ: КОГДА ТЫ УСТАНОВИШЬ ЭТОТ МОД, ВСЕ СХЕМЫ ИЗ МОДА ЗАГРУЗЯТСЯ В ТВОЁ ИГРОВОЕ СОХРАНЕНИЕ. Это значит, что даже после удаления мода, схемы не удалятся. Вы были предупреждены. Также вы можете скачать обычный пакет, как и раньше, на GitHub релизах.\n\nМод добавляет схемы и карту для схем. Содержит схемы для многих ресурсов, энергии, юнитов и многого другого.\n\nС помощью этого пака вы сможете изучить разные фишки в схемах и улучшить свое мастерство в схемах.\n\nСпасибо всем, кто делает схемы, ведь без вас мода бы не было!\n\n\nSpecial thanks to: Qwaka."
},
{
"repo": "xamionex/opore-mod",
"name": "Opore-Mod",
"author": "amione#0663",
"lastUpdated": "2022-08-24T04:17:54Z",
"stars": 29,
"minGameVersion": "105",
"hasScripts": false,
"hasJava": false,
"description": "Adds multiple vaults, drills, duos, spectres, walls, forges, extractors, conveyors, liquids, mech units, mech pads. This is actually my first mod, hope you like it because i had alot of issues while making this.\r\nNOTE: Update 30+: Some items will be broken because they cannot be done any other way\r\n\r\nCredits\r\n\r\n> Coding - amione#0663, SimonWoodburyForget\r\n\r\n> Map making - amione#0663, Félix Córvus#3546, Pusheen#3121\r\n\r\n> Descriptions and names - amione#0663, LordPotaynut\r\n\r\n> Sprites - anuke, amione#0663, MemFaceGo\r\n\r\n> Report bugs on steam - https://steamcommunity.com/workshop/filedetails/discussion/1903525208/1640926712946564500/\r\n> Report bugs (or request features) on github - https://github.com/xamionex/Opore-Mod/issues/new/choose\r\n\r\n> Helped in making of mod on discord - simon#8156, Violet#5020, Nope.avi#4037, HNU Founder.lua#5046\r\n\r\n> People that reported bugs in early builds on discord - wewemaster#8854, omegaDM#0155, Mwister Cinnabar owo#2702\r\n\r\n> People that reported bugs in early builds on steam - Tibault, 月之殇, the_red_soul, LordPotaynut, Dockedreaper61"
},
{
"repo": "xeloboyo/pvp-notifs",
"name": "PvP notifs",
"author": "Xelo",
"lastUpdated": "2021-10-18T16:02:03Z",
"stars": 28,
"minGameVersion": "117",
"hasScripts": true,
"hasJava": false,
"description": "Alerts you to enemy tech progression and unit production"
},
{
"repo": "xstabux/omaloon-mod-public",
"name": "Omaloon-Mod",
"author": "StaBU",
"lastUpdated": "2022-09-05T16:09:25Z",
"stars": 26,
"minGameVersion": "137",
"hasScripts": false,
"hasJava": true,
"description": "My first mod. Adds mostly unique content."
},
{
"repo": "p101q/uni",
"name": "UNI",
"author": "code: Qwaka\nsprites: plolq",
"lastUpdated": "2021-08-19T12:15:37Z",
"stars": 25,
"minGameVersion": "126",
"hasScripts": true,
"hasJava": false,
"description": "Dagger ate description =(\nDont launch this mod on v7.0, otherwise he will eat you too >=)"
},
{
"repo": "realshizi/oxynoe",
"name": "Oxynoe",
"author": "oxynoe",
"lastUpdated": "2022-08-24T20:25:59Z",
"stars": 25,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "oxynoe :>"
},
{
"repo": "w1-beyek/rl_mindustry",
"name": "Real Life Mod",
"author": "Hellfire_NL (Content), \nSakuraLilly (Art, content),\nDeserate (Content), \nVerty (Testing)",
"lastUpdated": "2021-01-26T19:08:34Z",
"stars": 24,
"minGameVersion": "105",
"hasScripts": false,
"hasJava": false,
"description": "This mod contains all kinds of new resources, forges, materials and liquids.\nIt is still under development so feedback on the workshop is welcome"
},
{
"repo": "happygingerwolf/inverted-machines",
"name": "Inverted Machines",
"author": "GingerWolf and MEEPofFaith",
"lastUpdated": "2021-09-26T15:21:08Z",
"stars": 24,
"minGameVersion": "130.1",
"hasScripts": false,
"hasJava": false,
"description": "Adds inverted versions of crafters."
},
{
"repo": "gennaowl/upgraded-factories",
"name": "Upgraded Factories",
"author": "genNAowl",
"lastUpdated": "2022-02-02T05:10:24Z",
"stars": 24,
"minGameVersion": "105",
"hasScripts": false,
"hasJava": true,
"description": "Adds upgraded versions of existing factories."
},
{
"repo": "flintyx/animalia",
"name": "Animalia",
"author": "Flin",
"lastUpdated": "2022-04-25T21:33:14Z",
"stars": 24,
"minGameVersion": "130",
"hasScripts": true,
"hasJava": false,
"description": "A mod that contains unique biological forms, blocks, machines and mechanics to discover the world of the Animalia Kingdom!"
},
{
"repo": "abomb4/dimension-shard",
"name": "Dimension Shard",
"author": "滞人",
"lastUpdated": "2022-06-18T13:24:22Z",
"stars": 24,
"minGameVersion": "126",
"hasScripts": true,
"hasJava": false,
"description": "(This mod is UNFINISHED)\n\nThere must be a war in a higher dimension. We found some kind of shards in a wreckage.\nThese shard look illusory and contain power beyond the dimension we are in.\nThe reasonable use of it seems to be able to manipulate time and space...\nWe named it \"Dimension Shard.\"\n\n(English translated by Google Translate)\n\nGithub: https://github.com/abomb4/dimension-shard\nQQ: 779147200\nemail: abomb4@163.com"
},
{
"repo": "mindustry-antigrief/installer",
"name": "Foo's Client Installer",
"author": "foo, buthed010203",
"lastUpdated": "2022-07-19T17:52:54Z",
"stars": 24,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "Simple mod to install Foo's client. Foo's client features hundreds of quality of life improvements to the mindustry experience while making as few compromises as possible."
},
{
"repo": "deltanedas/unit-factory",
"name": "Unit Factory",
"author": "deltanedas",
"lastUpdated": "2022-05-07T15:28:53Z",
"stars": 23,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Spawn any enemy in sandbox or on multiplayer, with /js (if supported).\nRequires deltanedas/ui-lib."
},
{
"repo": "meepoffaith/testing-utilities-java",
"name": "Testing Utilities",
"author": "MEEP of Faith",
"lastUpdated": "2022-09-03T01:22:47Z",
"stars": 23,
"minGameVersion": "138",
"hasScripts": false,
"hasJava": true,
"description": "Utilities for testing stuff in sandbox. (Load the game with this mod enabled for more info.)"
},
{
"repo": "aureusstratus/advancements",
"name": "Advancements",
"author": "AureusStratus",
"lastUpdated": "2022-04-03T00:43:31Z",
"stars": 22,
"minGameVersion": "134.1",
"hasScripts": false,
"hasJava": false,
"description": "A mod that expands apon vanilla"
},
{
"repo": "mindustryinside/mindustryclassicified",
"name": "Mindustry Classicified",
"author": "BasedUser, Félix Córvus",
"lastUpdated": "2022-04-23T10:11:06Z",
"stars": 22,
"minGameVersion": "105",
"hasScripts": true,
"hasJava": false,
"description": "Reverts sprites to as early as b40."
},
{
"repo": "therealivyx/moredefences",
"name": "MoreDefences Classic",
"author": "IvyX",
"lastUpdated": "2022-07-06T15:41:13Z",
"stars": 22,
"minGameVersion": "134",
"hasScripts": true,
"hasJava": false,
"description": "THIS MOD WILL SOON BECOME OUTDATED! Check #annoucements in this mod's discord server for more details.\n\nA mod made by IvyX and 7rodo that adds new turrets and walls to defend your core.\nDoes not work on iOS.\nDiscord server invite: https://discord.gg/eEtw5GF2dk."
},
{
"repo": "ferlern/extended-ui",
"name": "extended UI",
"author": "wizer",
"lastUpdated": "2022-08-12T12:13:28Z",
"stars": 21,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "UNSTABLE DEVELOPMENT VERSION. Extend your ui with some useful things.\n\nYou can easily disable any of the mod features in the settings -> graphics -> extended UI.\n\nIf u have any bugs or ideas create an issue on github or contact me in discord: WiZeR1233#9336"
},
{
"repo": "blackdeluxecat/mi2-utilities-java",
"name": "MI2-Utilities Java",
"author": "BlackDeluxeCat",
"lastUpdated": "2022-08-30T16:42:23Z",
"stars": 21,
"minGameVersion": "138",
"hasScripts": false,
"hasJava": true,
"description": "# MI2-Utilities Java\n一个原版辅助工具,有爱自取。\n\n安装方法:\n\n- 方法1 在游戏里使用“从github导入”,填BlackDeluxeCat/MI2-Utilities-Java\n- 方法2 进入本mod最新(Lateset)Release,下载文件列表中的MI2-Utilities Java.jar,在游戏里使用“导入文件”,导入所下载的jar。\n- 方法3 若已安装老版本,在游戏里点击mod详情页,重新安装。(仅限移动端)\n\n中文讨论群:875035496\n\n无力为其他语言做本地化,接受pr。\n\n## 特性列表(0.9.5)\n\n### ui\n\n#### 主界面\n- 快捷功能:一键规划重建、透视物流\n- AI辅助控制:挖矿、建造规划、维修、瞄准、拿取物品、跟随镜头。\n- 自动变速器:合乎逻辑的降速,避免低帧影响建筑工作。\n- 该窗口的选项弹窗包含MI2U的大部分选项。\n\n#### 核心信息\n- 原版核心信息+,资源变化折线图\n- 单位计数器\n- 电量条与电网分析\n- 可切换查看其他队伍\n\n#### 小地图\n- 基于原版地图渲染器\n- 可缩放至全图\n- 玩家单位显示名称\n- 点击移动视角\n- 天眼查查找全图地形/建筑\n\n#### 地图信息\n- 大部分地图规则\n- 波次预览工具,强制跳波\n- 详细的波次血量条\n\n#### 逻辑辅助\n- 整理与快捷复制变量名,可使用分隔符\n- 查找与替换变量名\n- 代码块剪切与复制\n\n#### Emoji\n- 一个emoji查阅工具\n\n### Mindow2\n本mod的可拖拽窗口。标题栏可进入选项弹窗、帮助页弹窗,具体请查阅各窗口的帮助页。\n拖拽、吸附等均可通过选项保存。\n\n### 杂项\n- 玩家光标平滑显示\n- 渲染单位血条、逻辑控制、寻路线\n- 维修、超速范围的精致渲染\n- 关闭残骸、单位、射弹、建筑渲染\n- 修改部分方块数值条\n- 更好的方块/单位/地形数值面板\n- 屏边移动视角(桌面端)\n- 添加一套地图筛选器,特色是可复合坐标变换\n- 99.5%的改动可以通过选项关闭\n- MI2U选项存储在$Mindustry/mods/MI2U_Settings/目录下"
},
{
"repo": "anuken/wind3",
"name": "wind3",
"author": "Anuke (real)",
"lastUpdated": "2022-03-17T13:24:04Z",
"stars": 20,
"minGameVersion": "105",
"hasScripts": false,
"hasJava": false,
"description": "No description provided."
},
{
"repo": "sk7725/testers",
"name": "Testers",
"author": "sk7725",
"lastUpdated": "2022-06-06T09:25:43Z",
"stars": 20,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Adds various testers for easier mod development.\nThanks to: Gdeft"
},
{
"repo": "eclipsetheoldone/project-eclipse",
"name": "Project Eclipse",
"author": "Eclipse",
"lastUpdated": "2022-01-16T12:59:32Z",
"stars": 19,
"minGameVersion": "135",
"hasScripts": true,
"hasJava": false,
"description": "A cool mod, add various scripted content!\nUsed Multi Lib by 3Snake3 (original by younggam)"
},
{
"repo": "ballgamer56/vanillaextended",
"name": "VanillaExtended",
"author": "Tom Petrou",
"lastUpdated": "2022-08-12T21:00:36Z",
"stars": 19,
"minGameVersion": "105",
"hasScripts": false,
"hasJava": false,
"description": "Mod that added things that should be in the original game and some are just added for convenience sake\n\nFrench translation by Noxenemerus Lunacor"
},
{
"repo": "uujuju1/project-oblivion",
"name": "Project Oblivion",
"author": "Uujuju",
"lastUpdated": "2022-08-19T10:42:38Z",
"stars": 19,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "The technology of the oblivion awaits you..."
},
{
"repo": "unionofsovietsocialistrepublics/spore-biomechs",
"name": "Spore Biomechs",
"author": "Hydroabyss",
"lastUpdated": "2022-08-21T09:23:29Z",
"stars": 19,
"minGameVersion": "127",
"hasScripts": true,
"hasJava": false,
"description": "Somewhere in the abandoned lab, a portal have opened, strange purple units has come to fight along with you."
},
{
"repo": "liplum/multicrafterlib",
"name": "MultiCrafter Lib",
"author": "[#42a5f5]Liplum[]",
"lastUpdated": "2022-08-22T08:04:24Z",
"stars": 19,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "A Mindustry mod library provides a multiple-recipe crafter to produce items, fluids, power or even heat for Json and JavaScript mods.\nPlease check the repository below to learn more.\nWork on both v136 and v137."
},
{
"repo": "sporrus/randommindustry",
"name": "Random Mindustry",
"author": "gorodmi & Mythril",
"lastUpdated": "2022-09-04T10:31:36Z",
"stars": 19,
"minGameVersion": "138",
"hasScripts": false,
"hasJava": true,
"description": "randomizes almost everything\njoin our discord! https://discord.gg/ztC6WJUxZK\n\nEPILEPSY WARNING"
},
{
"repo": "paulieg626/cheat",
"name": "CheatMod",
"author": "paulieg626",
"lastUpdated": "2022-07-29T07:00:21Z",
"stars": 18,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "Добавляет разные штуки для читов\nhttps://vk.com/mindustry_cheat"
},
{
"repo": "eclipsetheoldone/project-scrap",
"name": "Project Scrap",
"author": "Eclipse",
"lastUpdated": "2021-12-02T03:00:27Z",
"stars": 17,
"minGameVersion": "131",
"hasScripts": true,
"hasJava": false,
"description": "Well, its a WIP. It currently adds a few miscellaneous items, units, and its own reconstructers.\n\r\nClick on the releases tab to manually download, or download from the in-game mod browser.\n\r\nIt could be fun, ill leave the judgment of whether or not it is fun to you. If you find any issues, please open a issue.\n\r\nAlso try THCworkshopCN/THC-Industry!\n\r\nDiscord @https://discord.gg/JHu9grmxyK\nRequire 3Snake3/multi-lib if your game doesn't working."
},
{
"repo": "deltanedas/ldb",
"name": "Logic Debugger",
"author": "DeltaNedas",
"lastUpdated": "2022-02-27T02:11:44Z",
"stars": 17,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "Adds clientside logic debugging tools.\nRequires DeltaNedas/override-lib."
},
{
"repo": "smolkeys/bundles",
"name": "Bundles",
"author": "SMOLKEYS",
"lastUpdated": "2022-09-06T04:14:56Z",
"stars": 17,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": false,
"description": "hehe angish go nrrrt"
},
{
"repo": "drullkus/unnerf-core-units",
"name": "Unnerf Core Units",
"author": "Drullkus",
"lastUpdated": "2021-04-22T05:20:45Z",
"stars": 16,
"minGameVersion": "126",
"hasScripts": true,
"hasJava": false,
"description": "Allow the Alpha, Beta, and Gamma units to damage buildings by removing the 1% damage nerf. Will also make units from modded cores not have building damage penalty as well."
},
{
"repo": "zeniku/heavymachinery",
"name": "Heavy Machinery",
"author": "Zen",
"lastUpdated": "2022-03-07T09:56:07Z",
"stars": 16,
"minGameVersion": "123",
"hasScripts": true,
"hasJava": false,
"description": "Adds additional contents\nSuch as units factories and more\nFor further Description Please Read README.md"
},
{
"repo": "theskyfather/minerals",
"name": "Minerals",
"author": "TheSkyFather",
"lastUpdated": "2022-07-04T11:45:18Z",
"stars": 16,
"minGameVersion": "126.2",
"hasScripts": true,
"hasJava": false,
"description": "Explore minerals and mechanisms."
},
{
"repo": "z0mbiesrock/larger-cores",
"name": "Larger Cores",
"author": "z0mbiesrock",
"lastUpdated": "2022-07-06T10:29:29Z",
"stars": 16,
"minGameVersion": "112",
"hasScripts": false,
"hasJava": false,
"description": "Adds T4 and T5 Cores."
},
{
"repo": "driftheque/binary0011",
"name": "Binary0011",
"author": "1237",
"lastUpdated": "2022-09-01T14:00:01Z",
"stars": 16,
"minGameVersion": "137",
"hasScripts": false,
"hasJava": false,
"description": "binary0011 reworked and ported to 7.136.\n\nmade by 1237."
},
{
"repo": "thatonebepis/infinitodustry",
"name": "Infinitodustry",
"author": "Bepis",
"lastUpdated": "2021-05-29T15:24:21Z",
"stars": 15,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "Attempt at prosperity."
},
{
"repo": "thirstyboi/abominations",
"name": "Abominations - TexturePack",
"author": "Thristy",
"lastUpdated": "2021-10-23T12:37:01Z",
"stars": 15,
"minGameVersion": "130",
"hasScripts": true,
"hasJava": false,
"description": "Turns everything into disgusting organic beings"
},
{
"repo": "glennfolker/confictura",
"name": "Confictura",
"author": "GlennFolker",
"lastUpdated": "2022-04-24T08:56:29Z",
"stars": 15,
"minGameVersion": "135",
"hasScripts": false,
"hasJava": true,
"description": "... far beneath the reality."
},
{
"repo": "theangelurd/additional-content",
"name": " Additional Content",
"author": "Tayros/theangelurd",
"lastUpdated": "2022-07-20T19:52:26Z",
"stars": 15,
"minGameVersion": "136",
"hasScripts": true,
"hasJava": false,
"description": "I know the name is very boring but i can't find another name. A mod that adds a great amount of content to the game. Have fun with the mod."
},
{
"repo": "asheskaiser-kr/mindustry-ages",
"name": "Mindustry: Ages",
"author": "AshesKaiser",
"lastUpdated": "2022-09-02T06:54:19Z",
"stars": 15,
"minGameVersion": "136",
"hasScripts": false,
"hasJava": true,
"description": "My first java Mindustry mod"
},
{
"repo": "sk7725/exp-lib",
"name": "EXP Library",
"author": "sk7725",
"lastUpdated": "2020-10-27T03:50:40Z",
"stars": 14,
"minGameVersion": "110",
"hasScripts": true,
"hasJava": false,
"description": "EXP Library for 6.0!"
},
{
"repo": "snakkizxz/coppermod",
"name": "Coppermod",
"author": "Snakki",
"lastUpdated": "2021-10-22T17:05:44Z",
"stars": 14,
"minGameVersion": "115",
"hasScripts": true,
"hasJava": false,
"description": "Немного читов"
},
{
"repo": "eclipsetheoldone/project-tvakot",
"name": "Project Tvakot",
"author": "Eclipse",
"lastUpdated": "2022-03-31T05:49:58Z",
"stars": 14,
"minGameVersion": "135",
"hasScripts": false,
"hasJava": true,
"description": "Trying Kotlin."
},
{
"repo": "code-explorer786/chessdustry",
"name": "ChessDustry",
"author": "code-explorer786",
"lastUpdated": "2022-04-27T14:55:34Z",
"stars": 14,
"minGameVersion": "135",
"hasScripts": false,
"hasJava": true,
"description": "Adds Chess pieces in Mindustry."
},
{
"repo": "just-a-unity-dev/atomdustry",
"name": "Atomdustry",
"author": "eclips_e#0001",
"lastUpdated": "2022-05-04T08:00:10Z",
"stars": 14,
"minGameVersion": "135",
"hasScripts": true,
"hasJava": false,
"description": "Atomdustry\nThe power of the atom in the palm of your hand\""
},
{
"repo": "dagamerfiles/classic-music",
"name": "<Mindustry> Classic Music",
"author": "DaGamerFiles",
"lastUpdated": "2022-05-12T09:25:35Z",
"stars": 14,
"minGameVersion": "105",
"hasScripts": false,
"hasJava": false,
"description": "Play with classic Mindustry music (from v3.3r27, v3.5r40, and v5)! For Mindustry v6."
},
{
"repo": "rlccj/minertools",
"name": "MinerTools",
"author": "miner",
"lastUpdated": "2022-08-10T14:38:23Z",
"stars": 14,
"minGameVersion": "136.1",
"hasScripts": false,
"hasJava": true,
"description": "\n # 功能\n\n ---\n\n ## UI\n 1. MinerToolsTable:\n * 队伍信息:\n * 队伍玩家数量(Tooltip显示基础队伍规则)\n * 队伍单位显示\n * 队伍全局电量(Tooltip显示详细电量情况)\n * 一些有用的按钮:\n * 暂停建造(仅手机)\n * 自动升级传送带\n * 重建方块\n * 快捷投降\n * 换队/跳波器\n * 玩家列表:\n * 所有玩家的名字\n * 可锁定玩家视角(锁定的玩家控制炮塔时,会自动调整视角)\n * 可切换到玩家视角\n * 可一键投票踢出玩家\n * 快捷蓝图\n * 玩家AI:\n * 挖矿AI\n * 跟随AI\n\n 2. 聊天记录:\n * 查询历史聊天记录\n * 可以复制聊天记录(电脑:Ctrl+单击)\n\n 3. 更好的核心资源显示:\n * 单位数量显示\n * 物品每秒变化量显示\n * 玩家预建消耗显示\n * 可自定义的ui列数\n\n 4. 更好的信息面板:\n * 单位,建筑,地板信息一起显示!\n * 单位:\n * 武器冷却状态\n * 建筑:\n * 物品详情\n * 地板:\n * 显示更详尽\n\n ---\n\n ## 画面\n * 建筑:\n * 选中:\n * 异队选中信息\n * 桥带连接详情\n * 建筑血条\n * 异队方块状态\n * 构造方块耗材信息\n * 附近炮塔警戒\n * 物品炮塔子弹类型显示\n * 单位工厂进度条\n\n * 单位:\n * 单位指示器(核心危险警告)\n * 附近单位警戒\n\n * 单位信息条:\n * 血条\n * 立场回复条\n * 单位状态条\n * 荷载条\n\n * 玩家:\n * 荷载拾放提示\n * 玩家范围显示\n\n ---\n\n ## 其他小功能\n * 进入游戏后,显示被ban的单位或方块\n * UIScale的step修改\n * 物品桥带可拿取物品\n * 更多方块信息条:\n * 血条: 血量显示更详细\n * 进度条: 进度显示更详细\n\n ---\n\n # 其他\n Mod的90%功均可在设置中打开或关闭!"
},
{
"repo": "riccj/minertools",
"name": "MinerTools",
"author": "miner",
"lastUpdated": "2022-08-10T14:38:23Z",
"stars": 14,
"minGameVersion": "136.1",
"hasScripts": false,
"hasJava": true,
"description": "\n # 功能\n\n ---\n\n ## UI\n 1. MinerToolsTable:\n * 队伍信息:\n * 队伍玩家数量(Tooltip显示基础队伍规则)\n * 队伍单位显示\n * 队伍全局电量(Tooltip显示详细电量情况)\n * 一些有用的按钮:\n * 暂停建造(仅手机)\n * 自动升级传送带\n * 重建方块\n * 快捷投降\n * 换队/跳波器\n * 玩家列表:\n * 所有玩家的名字\n * 可锁定玩家视角(锁定的玩家控制炮塔时,会自动调整视角)\n * 可切换到玩家视角\n * 可一键投票踢出玩家\n * 快捷蓝图\n * 玩家AI:\n * 挖矿AI\n * 跟随AI\n\n 2. 聊天记录:\n * 查询历史聊天记录\n * 可以复制聊天记录(电脑:Ctrl+单击)\n\n 3. 更好的核心资源显示:\n * 单位数量显示\n * 物品每秒变化量显示\n * 玩家预建消耗显示\n * 可自定义的ui列数\n\n 4. 更好的信息面板:\n * 单位,建筑,地板信息一起显示!\n * 单位:\n * 武器冷却状态\n * 建筑:\n * 物品详情\n * 地板:\n * 显示更详尽\n\n ---\n\n ## 画面\n * 建筑:\n * 选中:\n * 异队选中信息\n * 桥带连接详情\n * 建筑血条\n * 异队方块状态\n * 构造方块耗材信息\n * 附近炮塔警戒\n * 物品炮塔子弹类型显示\n * 单位工厂进度条\n\n * 单位:\n * 单位指示器(核心危险警告)\n * 附近单位警戒\n\n * 单位信息条:\n * 血条\n * 立场回复条\n * 单位状态条\n * 荷载条\n\n * 玩家:\n * 荷载拾放提示\n * 玩家范围显示\n\n ---\n\n ## 其他小功能\n * 进入游戏后,显示被ban的单位或方块\n * UIScale的step修改\n * 物品桥带可拿取物品\n * 更多方块信息条:\n * 血条: 血量显示更详细\n * 进度条: 进度显示更详细\n\n ---\n\n # 其他\n Mod的90%功均可在设置中打开或关闭!"
},
{
"repo": "teamoct/fictional-octo-system",
"name": "fictional-octo-system",
"author": "The Slaylord, Polar4ik, and KoRoach",
"lastUpdated": "2022-08-28T16:51:29Z",
"stars": 14,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "A space-related mod."
},
{
"repo": "slotterleet/fictional-octo-system",
"name": "fictional-octo-system",
"author": "The Slaylord, Polar4ik, and KoRoach",
"lastUpdated": "2022-08-28T16:51:29Z",
"stars": 14,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "A space-related mod."
},
{
"repo": "gdeft/bleach",
"name": "Bleach",
"author": "Gdeft",
"lastUpdated": "2020-12-16T00:19:00Z",
"stars": 13,
"minGameVersion": "120",
"hasScripts": true,
"hasJava": false,
"description": "Bleaches the game, nothing suspicious at all.\nAlso try DeltaNedas/yes!"
},
{
"repo": "antlrr/best-texture-pack",
"name": "The Best Texture Pack",
"author": "Antlrr",
"lastUpdated": "2021-07-26T08:38:05Z",
"stars": 13,
"minGameVersion": "120",
"hasScripts": false,
"hasJava": false,
"description": "pain and suffering"
},
{
"repo": "mindustryinside/autoupdater",
"name": "AutoUpdater",
"author": "Skat",
"lastUpdated": "2021-08-13T16:05:47Z",
"stars": 13,
"minGameVersion": "120",
"hasScripts": false,
"hasJava": true,
"description": "Mindustry auto updater"
},
{
"repo": "goobrr/goobriculture",
"name": "Goobriculture",
"author": "Goober",
"lastUpdated": "2022-01-12T09:47:14Z",
"stars": 13,
"minGameVersion": "134",
"hasScripts": false,
"hasJava": true,