-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathchangelog.txt
1634 lines (1338 loc) · 57 KB
/
changelog.txt
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
4.66 => 4.67
2024-09-11
Balance:
Unit: Core Core (Admiral AeroShip)
Build Cost:
Energy cost increased by +60% (from 12,500,000 to 20,000,000)
Metal cost increased by +94.8% (from 1,150,000 to 2,240,000)
Build Time:
Increased by +60% (from 17,000,000 to 27,200,000)
Max Damage:
Increased by + 127% (from 3,500,000 to 7,950,000)
Weapons:
Ultimate Beam:
Damage to default units increased by +60% (from 15,000 to 24,000)
Mounted Antimatter Accelerator:
Damage to default units increased by +60% (from 15,000 to 24,000)
Tehlazerofdewm:
Damage to default units increased by +60% (from 2,500 to 4,000)
4.65 => 4.66
2024-09-10
Balance:
• Add T2 / T3 Rapid Mortar for Rumad
• Add Ultimate Flak for Rumad
• Rumad T4 Vehicle Plasma :
- Decrease Range, Damage and Increase Reload for plasma battery.
- Decrease Speed 1.4 => 1.0
- Same for Hero Vizir and Hellion T4 Kbot
4.64 => 4.65
2024-07-25
Balance:
• TSAR like armtabi, corflu, gok_cain, tllvanya:
- increase overall cost from ~36million to ~46million
- shorten missile load time 240sec to 90sec
- weapon range is infinite
- damage is "huge" now
• Rumad Parasite: set build distance with los -> 7500
• Talon Planet Killer:
- Increase overall cost from ~31million -> ~36 million,
- Nerf range from 10000 -> 3500
- HP increase from 650k to 1m450k
- Buff DPS from 25000 -> 200000
- Buff los 1000 -> 2000
4.63 => 4.64
2024-07-25
Balance:
- Rumad Parasite:
• Revert metal cost to 38387000m from 32166000m,
• Increase LOS 8000 -> 10000,
4.62 => 4.63
2024-07-24
Balance:
- Rumad Parasite:
• Decrease metal cost 38387000m -> 32166000m,
• Increase LOS 1500 -> 8000,
• Increase capture speed 100000 -> 500000
4.61 => 4.62
2024-07-19
Balance:
- Rumad Parasite : Decrease Range 5k=>4k. Increase BuildTime 65M=>80M
- Talon Silver : Increase cost by 5%. Decrease HP by 5%
Improvment :
- Add New T4 Air Transport for GOK
4.60 => 4.61
2024-05-11
Balance:
- Totally NEW custom Gaussian damage (NANO BOOST)
- Nanos can now boost to 500% !!!
4.59 => 4.60
2024-04-14
Balance:
- Nano boost damage based on now on the Gaussian factor (max single damage chance 55% HP)
- Nanos can now boost to 450% !!! (300% before, 180% originally in past)
4.58 => 4.59
2024-04-06
Fix/Balance:
- Fix nano boost damage
- Tweak nano boosts: Nanos can now BUILD boost to 300% (before 180%), REPAIR 200% (before 0%), RECLAIM 180% (before 0%)
- Tweak nano boosts: Less penalty 5.3%hp / sec to 3.8%hp / sec
Improvment :
- Add T7 Core Unit
4.57 => 4.58
2024-03-01
Balance :
- GOK Slanesh: builddistance 566 to 666, buildtime 2250000 to 1950000, workertime 20666 to 66666
4.56 => 4.57
2024-02-26
Balance :
- GOK Slanesh can now Repair, Rezzurect, Reclaim. Worker Speed = 20666, Build Distance = 566
4.55 => 4.56
2024-02-24
Balance :
- Decrease T4 Jam range 6K=>4K
- Increase time for morph all commander between T3=>T4 (More time for Rumad faction)
- Increase timemorph for T2=>T3 Rumad Geo
- Add Ultimate weapon for Rumad
- Increase damage for Azarot. MainBeam +25%
Improvment :
- Tll T1 copter : Decrease size model
Fix :
- Rumad T5 Cons can be killed by air
- Sattelites (PlanetKiller and ThirdEye can be killed by air)
- Oasis Missiles : Range is respected
4.54 => 4.55
2023-12-28
Balance :
- Decrease T5 Shield Regen 3K/S => 1.6K/S
- Decrease T4 Shield Regen 0.3K/S => 0.25K/S
- Decrease T3 Shield Regen 0.15K/S => 0.125K/S
- Decrease Mobile T4 Shield Regen 0.25K/S => 0.125K/S
- All Starburst can target only Surface units
4.53 => 4.54
2023-12-02
Improvment :
- Add T5 Zeppelin with new electro weapon
Balance :
- Mongol / Antarion : Decrease range 1300=>1200. Decrease Damage 1400=>1200 / shot
- Triton : Range 1400=>1200. Damage 360=>600
- T1/T2 Rumad Medium Tank : Nerf some stats
4.52 => 4.53
2023-11-19
Balance :
- Mongol & Hellion Rumad : Decrease HP by 8%. Decrease Accuracy for lon,g range plasma.
- Add New T2 Missile veh for RUMAD
- Arm Tankanator : Reduce speed 1.2=>1.1. Decrease range 1300=>1200
Improvment :
- Add new weapon for Olympus.
- End of Halloween event
4.51 => 4.52
2023-09-22
Balance :
- ArmStratus buff (better dmg/s and better HP 35K=>42K)
- Exo & Skrog morph with level 5 instead 4
Improvment :
- Rework Orco
- Delete Furie Unit
- Add T2 & T3 Static Antinuke for Rumad. Add mobile into Vehicle Lab
- Exo T4 Arm : Change model & Balance. Morph from Orco or Furie
- Add T1 Long Range Missile Turret for Gok
- Add New Model for T5 Gok Lab
- Add New T4 Fighter for GOK : Za'Kul
- Add New T4 Morph for Gok Satan : Slanesh
- Split T3 Kbot/Veh Rumad (with adding Antarion for Rumad Veh)
Fix :
- Rumad T3 Kbot Lab
- Fix T5 Aeroship Dust. Add MountedWeaponAccelerator on.
4.50 => 4.51
2023-08-04
Balance :
- Increase cost for all Commanders
- Commanders unlock tech for Geo & Nano Morph
- Rework All Shield for T2/T3 Talon & Gok Commanders
- Rework All Shield for T4 Arm / Core / Tll Commanders and T4 King Rumad
4.49 => 4.50
2023-07-26
Balance :
- All MountedWeaponAccelerator fix to 1500 range. (All T5, and independance)
- Many T6 Titan Weapon decrease range 1700=>1600
- Boost T1 plasma Kbot (speed, + 10%, Hp + 10%)
4.48 => 4.49
2023-07-12
Balance :
- Delete Silver Morph for T4 Talon
- delete MainWeapon for independence Talon
- Decrease BuidPower for all T3 Air Rez (1500=>1000)
- Increase cost for all T3 Geo except for Core
- Add Limit Restriction Units (200) to all Ak Pewee Class
- T1 Air Bomber : Balance damage between all faction. Need 5 bombers to destroy a Geo. Increase damage for arm / core to keep destroy this target in example.
- Increase buildtime for all commander. Goal is to add more time to capture them.
- All Gok Quadrupod except crab arty : Delete All-Terrain Feature
- Some adjustement for all pewee class. Cost fixed at 50M min. Talon Sniper cost 85M=>45M and Energy cost 1400 => 2500. All units <50Metal are targeted by Juno
Fix :
- Mines Tech2+ are buildable
Improvment :
- Add T4 Lab and T4 Units for Rumad
4.47 => 4.48
2023-05-27
Balance :
- All T1 Plasma Tower : Increase damage by 36% : 80dmg/s => 125dmg/s (Not enough used)
- All T2 Plasma Tower : Increase damage by 20% : 160dmg/s => 200dmg/s
- Orchid was already to 200dmg/s. So, decreasez energy & metal cost
- Rumad Triton T1 at 175dmg/s but range at 1000
- Mobile Tachyon Arm & Talon : Decrease HP by 20%
- Fury : decreasse HP 245K => 205. Increase Main weapon range 600=>950. Decrease Damage 1.6K/S => 1.2K/S
- Krog : Increase Range for Main Weapon 590=>700. Decrease HP -10K
- Orca : Increase Range for Main Weapon 575=>650. Decrease HP -10K
- Mercenary : Decrease LOS
Improvment :
- Razorback : BeamLaser comes back.
- T2 Core Sniper : Decrease Model size
- T2 Core Sumo : Increase Model size
4.46 => 4.47
2023-04-23
Balance :
- AntiNuke T2/T3 becomes AntiMissiles. They can now intercept Tac Missiles. (If you have good range, you can try to saturate AntiNuke)
- Bombers damage vs commander are increase by 100% (total 50% for defaut damage vs 25% before)
- Uniformize damage modifier for fix armored units : 0.10=>0.20
- Obelisk Shield Talon : Reduce metalcost 4.6K => 3.6K
- All Mobile Jam : Increase energycost ~2KE=>6KE. Decrease energy/s for jamming 100=>50
4.45 => 4.46
2023-03-24
Balance :
- Decrease range for TLL Leopard Mortal T2 Vehicle
- Decrease Damage for Tremor 1000=>750/s
- Increase damage for all T1 torpedo
- Increase damage for Gok light tank T1 by 10%
- Increase range for Olympus T4 Arm 1800=>2000
- TSAR Gok : Remplace beam Weapon by classic plasma ammunition (same than Arm/TLL/Core)
Improvment :
- Add T4 Missile Turret Talon
- Add DepthLuancher for Gok & Talon
Fix :
- T4 Spider Constructor ARM Movement class
4.44 => 4.45
2023-03-02
Improvment :
- Delete Priority Air Class Armor. Fighter lost the 100% more damage vs bombers and transporters.
- Add Gok Spy
- Rework T2 & T3 Kbot Talon model
Next work :
- Gok Commando
- Gok TSAR Rework
4.43 => 4.44
2023-02-24
Balance LongRangePplasmaTower :
- Decrease all damage between 25% and 33%
- All vulc/buzz have same range than bertha/intimidator for same tech level (T3 bertha gain 500 more range, T4 Buzz lost 2K range)
- Mobile units have 4000 range (lost 500 range) and 20% less damage than bertha
- Energy / shot have been balanced too. Same cost beween mobile and static. Less energy for Buzz/vulc, and more for Bertha
- Decrease T4 Buzz Metal cost by 33%
- EMP Bertha : Decrease range 6750 => 6000. Decrease reload 15s=>10s.
Improvment :
- Add T4 Talon AA Kbot
- Delete EMP Bertha T1 for TLL
- Rework Talon Amphibious Opal Mech T3
- Add Jump to Dutchman Talon hover
- Rework Bat & Dutchman Talon & T3 Amphibious Opal (remplace heavy plasma by rapid laser)
- Rework Avatar Arm LRPT Model
4.42 => 4.43
2023-02-14
Balance :
- Gok Mask : Decrease cost. Delete capture feature. Can create other mask
- Gok Disciple : Decrease Repair 50=>25 hp/s and cost
- Talon Sniper ! Decrease speed 1.25=>1.15
Improvment :
- Add new sound for lightning Gok Hero (thank to Silver)
- decrease model size for Flame Tower TLL
- Hydre TLL T2 & T3 : Change models
- Ham T1 Arm : Rework & Fix model
4.41 => 4.42
2023-02-06
Balance :
- Meteors : Decrease range by 5%
- Delete special damage vs ship & experimental ship.
- Delete special damage vs commander for all plasma except LRPT
- Gok Coconuts : Decrease Hp 10.5K=>10.1K. Increase Metal 1.9K => 2.2KM. Decrease range 1050=>1000
Improvment :
- Add T3 Artillery Turret for Core
- Remove Sattelite
- Add T3 Gok Rapid Hover in T3 Hover Lab
- Add new visual effects for Gok Bombers
4.4 => 4.41
2023-01-19
Balance :
- Add Turret for hellbiker gok scout
- TLL Leopard T2 : Decrease range 1850 => 1800
Improvment :
- Add T3 Sattelite for Arm (Constructor, MDS, Radar & Precision Strike)
- Add T4 Sattelite for Core (Constructor coming, Pyro Launcher)
- Add T4 Sattelite for Talon (Constructor coming, Beam Strike)
- Add Autocloak and Hold Fire for all stealth and invisible units
- Hailstorm T4 TLL becomes T2
4.39 => 4.4
2023-01-19
Balance :
- Gator (Light Core Tank) : Add 3 Energy for shot
- Pokie : Decrease cost. Decrease mainweapon range 1500=>1400 & damage 5000=>4000
Improvment :
- Rework Core Devastator, Dust, Valiant
- Rework All Laser Gok. transform into Beam
- Rework TLL T2 Storage visual
- Decrease LLT model size by 20%
- Increase model size by 15% for Hope, Barbarus, Valiant
4.38 => 4.39
2023-01-11
Balance :
- Talon Grenat : Change Starburst for Raven straburst.
- Reworl All-Terrain T4 Spider Core. Decrease cost by 10KM. Increase Main Gun Range. Decrease Speed.
Improvment :
- Delete Samael titan and remplace by Tyranosaurus Titan. Samel will be reworked.
- Rework all Class Categories : minor - small - medium - large - huge - major
4.37 => 4.38
2023-01-03
- Bye Xmas Features and Happy new Year !
Balance :
- All T1 AA Turret : Increase damage by 20%
- Catapult T3 Core : Increase Stats and cost
Improvment :
- Rework All TLL Lightning / Plasma Lightning
- Rework TLL Irritator, Mosaurus, Zeppelin, Barbarus, Hyperion
- Add T3 Core Turtoise into T3 Lab Kbot (Morph into Adamantoise)
- Delete Howie Core
4.36 => 4.37
2022-12-30
- Xmas Mex : T5 Mex (by Morph) & Titan (on T5 Builder) are available
Balance :
- Add Thermite to rocket for Saurus, bumbleeblee, Pterodactyle, Leopard. Same damage + Termite damage (Metal cost + 5%).
Improvment :
- Rework T5 Broadside Cruser Arm
4.35 => 4.36
2022-12-17
Balance :
- T4 Cut Gok : Decrease speed 2.7=>2.5
Improvment :
- Add T3 Air Transport for GOK
- TLL Gorgon becomes a Turtle. More HP but less speed. Weapon EMP deleted
- Tll Plasma Deflector T1 & T2 : change Model
- Add T4 AA TLL & Core
- Add Paratrooper Gok (Stealth Op)
- Repentance become T4 Shielded Unit by morphing from Abaddon
- Add T4 TLL Albertosaurus (Morphing Mosaurus or in T4 Sea Lab)
4.34 => 4.35
2022-12-04
Balance :
- Increase Stun time for paratroopers 8=>12s
- Talon Grenat : Decrease HP 330K=>310K
Improvment :
- Rework all Commanders Menu Panel.
- Repentance become T4 Shielded Unit by morphing from Abaddon
- Add T3 Fox Arm & Gorilla Core in T3 Lab
- Add Kadesh unit for GOKadesh
- Decrease model for Super Krog by 10%
- Add Morph for Turtoise Judgement into T3 Tortoise Turbulence. Turbulence could morph into T4 Adamantoise.
4.33 => 4.34
2022-11-28
Balance :
- Grenat Talon : Increase Metalcost 84KM => 89KM & Energycost 1.1ME => 1.2ME.
- Archon Gok : Increase damage 1800/s => 2250. Decrease HP 150K=>130K.
Improvment :
- Delete many morph except Deflector Shield, Nano, Commander and Geo.
- Now to morph, unit have to reach lvl required & Xp. (Special morph for Talon, TLL and Gok are coming).
- Add T4 Shield vehicle for Talon.
- Increase Hope and Valiant Model by 20%.
4.32 => 4.33
2022-11-12
Balance :
- Fix all Missile from ground AA : Velocity start at 600 until 1200.
- Independence Talon : Increase Metalcost 515K=>565K
Improvment :
- Add T4 Shield Beetle for Arm
- Add T4 AA Tower for Arm
- Add Corpse for talon Independence
- Gok Juno : Change model
Fix :
- T5 Aeroship collision Box (They took no damage vs beam weapon)
- T2 Artillery Nunchuck Talon
- Collision Box for T5 Gold Talon
4.31 => 4.32
2022-10-22
Major Balance :
- Shields starts at 5% instaed 30%
Balance :
- Balance all T4 Lab buildtime (1M)
- Gok T2 Invisible Mex : Increase buildtime to 18K
- Gok T3 Beam Def : Increase buildtime to 145K
- Delete Tesla TLL Tower. Remplace it by Flamer.
- Reduce time for T2=>T3 Arm Geo morphing. Reduce buildtime 250K=>125K
- T2 Gok Amon became a T3 LRPT High Trahjectory
- Gok Abyss : Decrease HP 22K=>20K
Improvment :
- Add Rez Sub for Gok
- Add AntiSub Hover T2 for Gok
- Ultimate Core Fusion : Increase X/Z pixel to 25*25 (same as Arm)
- Add T2 Gok Sumo (Junglenaut)
- Add Rocket T2 Gok Quadrupod
Fix :
- Talon T3 Kbot Cons can be targetable
- Talon Sirius (Ex Thanos) µIncrease damage from 200 => 2000
4.30 => 4.31
2022-09-24
Balance :
- Add 1K HP for all T3 Construction units
- Expanse (T3 talon Hover) : Decrease stats and cost
- Decrese covarage range of anties by around -10% for T2, -20% for T4
Improvment :
- Add TSAR Weapon for Gok
- Add T3 Vehicle / Hover + naval series lab for Gok
- Add T3 AA hover, T3 Beam Hover, T3 Amphibious Tank for Gok
- Add T4 Nano naval for Gok
- Add T3 Construction Bot for Gok (remplace hover)
- New Model for ICBM Gok T2 & T3
4.29 => 4.30
2022-09-09
Balance :
- Revert changes for all AA
- Mobile Tackyon : Increase cost 1.2KM=>1.4K. Decrease speed 1.2=>1.1
- Increase Nuke limit to 15 (from 12)
- Core Adv Crawling Bomb is now All-Terrain
4.28 => 4.29
2022-09-09
Gok : Fighter Rebalance (So they are not clones of Talon)
T1 Fighter : Angel
- HP 315 => 300 & Speed 294 => 315
- Metal 82 => 88 & Energy 2430 => 2222
- Range 500 => 480 & Reload 1.00 => 0.50
- Damage (Priority Air) 160 => 120 (Unclassed Air 1/2 value)
- Corrected Icon
T2 Fighter : Succubus
- HP 630 => 600 & Speed 375 => 400
- Metal 120 => 222 & Energy 11800 => 8888
- Range 540 => 490 & Reload .80 => .40
- Damage (Priority Air) 240 => 140 (Unclassed Air 1/2 value)
- Corrected Icon
T3 Fighter : Wraith
- HP 2435 => 2400 & Speed 456 => 477
- Metal 690 => 666 & Energy 62850 => 66666
- Range 600 => 500 & Reload .25 => .20
- Damage (Priority Air) 600 => 700 (Unclassed Air 1/2 value)
Core T1 Fighter
- Damage (Priority Air) 160 => 150
- Damage (Unclassed Air) 120 => 75
Com Build Rework:
- The 1st row of Build options are all Energy Generation
- The 2nd row of Build options are Mex, 2 MMs, and 2 Storage Units
- The 3rd row of Build options are Radar, 3 Labs, Tower/Camera or T4 Lab
- The 4th row of Build options are Wall, Turrets, and Misc/Sea
- The Remaining rows are sea related
- T3 Com Build power 900 => 1200
- T4 Com Build power 1200 => 2400
- Corrected Scales of T4 Coms for Core TLL and Talon
- Corrected Scale of T3 Com for Talon
4.25 => 4.28
2022-08-25
Balance :
- Gok Blackheart - remove it's all terrain ability
- Decrease Energy cost for Flak
improvment :
- Add T4 Sea GOK
- Delete T5 Air (Talon & Gok)
- Add Sattelite for Talon & Core
4.24 => 4.25
2022-08-19
Balance :
- Gorilla Core ; Decrease speed 1.8=>1.65
- Zeus Arm T2 : Hp increase : 3005 => 3450. Decrease Reload : 2=>1.25
- FatBoy Arm T2 : Increase range 700 => 875
- Mortar Core T2 : Increase range 850 => 950
- Vengence arm T2 : Increase Range 1250 => 1300. Delete Blue Laser. Add Mini Reflect Shield.
- Black Pollen Cut Launcher : Range 2400 => 2800
- Anti-Christ : HP 11500 => 13100 & BuildPower 600 => 800
- Zealot : Increase damage 222/s => 333/s
- Talon Wolf T2 : Increase range 520 => 550
- All T3 Artillery Units : +100 range
- Turtoise Artillery. Decrease range 1750=>1350. Decerase cost 3.8km => 2.8km. Increase HP 10K=>11K.
Improvment:
- Desactive Sattelite Lab. Except for Core. Become T4 Lab with only 1 satellite.
- Add T4 satellite for core. Pyro Invaders.
- Change Krow Core model. ~ Same Balance.
- Add new AOE Ammunition for Olympus (T4 Arm)
- Add T4 Mobile Shield for Core
- Add icons for some t4 units
4.23 => 4.24
2022-07-18
Balance :
- Armed Moho T2 Core / TLL : Increase HP 3500 => ~5800
- Buff ArmKrypto HP +25%, Armor +18% (when closed)
- Increase crusealt for t5 Air.
- Increase range for Meteor Gok by 5%
- T3 Tachyon Vehicle Arm : Increase Hp by 25%
Improvment:
- Add T2 Armored Mex for Talon
- Add T3 rezer Gok on Air Lab
4.22 => 4.23
2022-06-28
Balance :
- Samael Titan : Decrease speed 1.0=>0.8. Morph increased 0.20 => 0.25
- Super Krogoth : Decrease Xp to morph 0.25=>0.20
- All T1 Kbot Talon are damaged by Juno (except constructor, Rezzer & crawling bomb)
- Paratrooping unit : increase Stun time 6s=>8s. Decrease Hp left : 50%=>40%
Improvment:
- Add T3 Carry Gok with ICBM
- Add T4 AA for Gok
- Add T3 Gok Jammer
- Add T1 Scout Kbot and Vehicle for Gok. Remplace Hover Cut to have better balance on sea map.
- Add T2 cloak Moho for GOK
- Add T2 Armored Moho for TLL
Fix :
- SuperKrog Animation
4.21 => 4.22
2022-05-30
Balance :
- Increase T1 Dragon's Eyes (Perimeter Camera) LOS by 50% (arm, core, gok)
- Increase T1 watching Tower LOS by 20% (talon, tll)
- Remove Cloak from Gok Disciple, Acceleration from 0.15 to 0.5, Autoheal 25 to 50, Speed +5%, buildtime -14%
Improvment:
- Add T2 cloak Mex for Gok
- Add Wreckage for T5 destroyer ships
- Add gadget to disable water units on non water maps.
4.20 => 4.21
2022-05-15
Balance :
- T5 Air (Gok Bomber and Talon Gunship) : Delete SURFACE Class. They can't be targeted by no AA Weapon.
- Topaz (Talon scout vehicle) is damaged by Juno now
- Independance (Pizza) : decrease stats & cost by 50%
Improvement:
- Add Secret Unit anti-Pizza
- Add T4 Gok Predator (Sniper Kbot)
- Mobile Unit with Plasma Reflector Gok gain the gold shield (Deflect all projectiles)
- ArmExo : Delete blue Absorb Shield and gain green Reflector
4.19 => 4.20
2022-04-19
Balance :
- Gok titan : Increase Hp by 200KE
- Increase XP for Dreadnought to morph into colossus : 0.10=>0.15
Improvement:
- Add T3 AA Mobile
4.18 => 4.19
2022-04-07
Improvement:
- Add T5 TLL Jammer
- Add Targeting Facilities for Gok
4.17 => 4.18
2022-03-18
Balance :
- TllEMP and other EMP mines : When explodes, don't EMP other mines
- T1 Veh Arm Janus : Increase range 380=>420
Improvement:
- Add LUAI for thrust air Gok (Fighters/Bombers)
Fix :
- Script for TLL MEx
- Release 4.17 for DRD.
4.16 => 4.17
2022-03-10
Balance :
- Talon T5 Gunship : decrease HP 245K=>155K. Decrease Gatling range 1400=>1000 and damage 5K=>2.5K. Decrease Speed 3.8=>2.8
- Jug Arm : Decrease speed 3=>2.8
- T1 Medium Tank. Decrease speed by 5%, HP by 50. Increase Metal by 4%
Improvement:
- Add New Model for T3 Mex Talon
- Add T2 Mex Cloackable & Stealth for Arm (No Amphibious)
- Delete special damage vs experimental units (T3-T4-T5-T6). Weapon will now inflict max damage * 0.8 to all units (default damage = 0.8 * special damage except some units). This way to add special feature (sniper or flamer protection..)
- T5 Tzenth Bomber and Gold Gunship Talon : Armor = air. Can be targeted by ground units.
Fix :
- Gok Silo Limit added and fixed to 12
4.14 => 4.16
2022-02-01
Balance :
- Gok T5 Bomber can be target by Ground weapon. Change Armor class and become a MAJOR (dmg from Air weapon divide by 4)
- Jug Arm : Decrease stats and cost
Improvement:
- Add T5 Destroyer AreoShip for Gok
- Add Hero for Gok
- Add Satellite for GOK
Fix :
- Black Hydre script
4.13 => 4.14
2022-12-20
Balance :
- T3 Arty TLL Kbot : Increase HP
- Talos T3 : Decrease MEtal 28KM=>26KM & Decrease HP 133K=>121K
- Tankanator : Increase ReloadTime : 6S=>8S (dmg 400/s=>300/S)
- Increase Metalcost / Energycost for Pyro, Panther, Xeon by 10%
- T2 Arm Vengence : decrease HP 18K=>15K. Increase Buildtime 50K=>70K
Improvement:
- Add Air LAb Morph for T1 / T2 Gok Lab
- Add T3 Arty Kbot
- Split T1/T2 Gok Lab into Tank and Kbot : New units added.
- Add T2 Arty Kbot for GOK
- T3 Minotaur : Change Model. Same Balance. Add feature to destroy T2 teeth.
- Add T1 Vehicle Gok MinesLayer
Fix :
- Heap & Corpse for some units gerated errors in infolog. Thank to Abma
- Gok Vehicle Lab. Units couldn't leave.
4.12 => 4.13
2022-12-03
Balance :
- Disciple T1 Melee : Add Invisible (-5E/S and -20E/S while moving)
- Decrease MEtal cost for all T3 Gunship by 50%. Increase EnergyCost by 100%. Decrease HP by 20%.
- Add Hover Movment for T1 Melee Cut Gok
- Gorg Core T3 : Decrease HP 345K=>255K. Decrease Metalcost 30K=>26KM & Energy 475KE => 400KE.
- Increase Time Reclaim by 100% for all Teeth / Fortification. Reclaim give same Metal than Metal cost
- All Meteor : Increase range to have same than rapid lrpt
Improvement:
- Delete T3 Vehicle Talon Beam. Remplace by Amphibious Azul
- Delete Arty Crab T3 Talon. Add it for Gok faction
- Move T3 Arty Gok Vehicle into T2 Lab. Decrease cost / Stats / Model by 20%
- Add T2/T3 Gok Gunship
- Add T3 Gok Plat (Naval Aircraft Lab)
- Add T1/T2 Plasma Tank Gok
- Add T1 Gok Launcher (Cut Melee Shell)
4.11 => 4.12
2021-12-27
Balance :
- Juggernaut T3 Arm : Decrease speed 3.15=>3.0
- Increase range for all T3 Gunship +25. Goal is to take less damage from explosion
Improvement:
- Add wreckage for all LVL1-2-3-4-5 Bomber / LVL2-3-4 Gunship / LVL2-3-4 Transport
Fix :
- T3 Vehicle Factory yardmap Talon. Abbadon not more stucked
- T3 Kbot Factory Talon, Talos and T3 AA CollisionVolume. Talos and AA should benot more stucked
4.10 => 4.11
2021-12-22
Balance :
- Morph into T2=>T3 Arm Geo : decrease time 90=>60s
- Increase Teeth MaxSlope 64°=>72°, T2 Fortification 24°=>36°
Improvement:
- Add T3 TALON / TLL GEO
- Add Experimental Fortification Teeth for All T3 cons and T3/T4 Commander
- T3 Experimental Fortification can be built into water with maxdepth at 95
- Add Melee T4 Gok unit
- Add Bomber T5 Gok unit
- Add Gunship T5 Talon
Fix :
- Mygalo T4 Arm Spider Collision Box
- Nanoboost for all Gok nano
4.09 => 4.10
2021-12-08
Balance :
- Colossus T4 TLL. Decrease HP 530K=>510K
- Ground Rezzers : Increase Timebuild by 30%
- T1 teeth cost 11M=>12M & 200E=>150E & Buildtime 250=>300. HP => 2500
- Sea T1 Teeth cost 20=>15M & 450=>200E & Buildtime 900=>450. HP => 2500
- T2 Fortification cost 29=>45M & 950E=>750E & Buildtime 900=>1000. HP => 15000 (Breakable vs T4 units and T3 Abaddon)
- Gok Disciple : Increase damage 222=>333
- Gok Satan : Increase Speed 1.6=>1.75
- Gok AntiChrist : Increase Speed 1.75=>2.0
- Fat Dog Talon : Change weapon effect. Decrease AOE by 200%, increase damage by 200%. Decrease range 650=>500
Improvement:
- Dreadnought T3 TLL. Delete AA weapon. Add miniburst. Increase model by 8%.
- Add T3 Underwater Fusion for all T3/T4 Commanders
- Add T3 Gok Geo
- Add T4 Dragon Teeth for all faction
Fix :
- Add proper crushResistance for all fortification and crushStrength for all movement class (in attempt to T4 fortification)
4.07 => 4.09
2021-11-27
Balance :
- T1 EMP Core Air : decrease Timeparalyse 6s=>2s. Decrease daamge 360=>300
- T1 Bug scout Tll : decrease Timeparalyse 6s=>2s. Decrease damage 360=>300
- All T2/T3 energy storage HP fixed
Improvement:
- Add T3 Naval Gok units
- Add T3 Gok Geo / Juno
Fix :
- T4 TacNuke Sub : Tactical Weapon can shoot
4.06 => 4.07 (released)
2021-11-10
Fix:
- Fix various gadgets and widgets.
4.05 => 4.06 (released)
2021-11-09
Improvement:
- Fix missing ARM Anti-Nuke & Aircraft Carrier
4.04 => 4.05 (released)
2021-11-07
Balance :
- Add Priority for UNDERWATER Units for all Sub, Depthcharge & Torpedo launcher
- Decrease HP for all torpedo T1 (1800=>~1250)
- Increase HP for all torpedo T1 (1500=>~2500)
- Amphibious T2 TLL Kbot become a swimming Kbot. remplace missile by lightning
- Satan : Boost speed 1.5=>1.6. decrease Metalcost 21K=>18K
Improvment :
- Add Initial Queue Gadget. Thank to Silver.
- Add Rapid Tactical Nuke T2 for Gok
- Add T2 Sea Gok
- T3 Arm Air Transport : Change Model. Add Missile AA turret.
Fix :
- Immortal Gok Script
- Armorbital ammuition to 50
- Gok Air Lab
- Armor for some Air Gok Units
- Armjugg Walk function COB (division by 0)
4.03 => 4.04
2021-09-23
Balance :
- All Nuke Max Ammunition set at 3
- All AntiNuke Max Ammunition set at 8
- Fix T4 Nuke damage on commander at 10k. Increase buildtime 2M=>5M
- Satan : Decrease Speed 1.75 => 1.5. Decrease HP 46K=>42K. Increase cost 17KM=>21KM
- Move T5 Radar into T4 constructors
Improvment :
- Add T5 Gok Level structures except Tsar
- Decrease all Nuke / Antinuke models by 20%
- Torpedo Bomber : All bomber with 2 bursts or 1 adv burst (same balance)
4.02 => 4.03
2021-09-08
Balance :
- Titan TLL :Decrease range from secondary plasma weapon. Decrease damage for main gun (-10%)
Improvment :
- Add T4 Shielded Talon unit
- TLL T4 Nuke : Change Model
Fix:
- All starburst TLL have track feature (can't kill Air)
- Fix armor category for t4 arm transport
4.01 => 4.02
2021-09-04
Balance :
- Delete Ammo for Tsar after made it. Decrease cost by 10%
- Decrease Hp for all T2/T3 AntiNuke by 50%
- Mythril : Decrease Gatling damage 6K/S => 4.5K. Increase Metalcost and Hp.
Improvment :
- Add Wreckage for T1 Arm / Core / TLL Mini Fusion
- Add T3/T4 Gok units
4.00 => 4.01
2021-09-29
Balance :
- Reduce HP for paratrooping unit 75%=>50%
- Reduce buildtime for t3 Flak
- Reduce Energy Cost by 50% for all T2 / and reduce metal cost by 10% for all T3 Factories
- Rebalance all cost for fusion / MM. Decrease energycost/metalcost for adv T1/T2/T3/T4
- T2 Talon Sprinkler : Decrease cost
Improvment :
- Add T3 Gok units
- Delete T5 Meteor for TLL
- Change T4 Cons for Talon (Delete Pod to remplace by Hover)
Fix :
- armorbital (zeus luancher T4) : Fix range. Now can shoot at 8K.
3.98 => 4.00
2021-09-13
Add New GOK Faction
3.97 > 3.98
2021-09-12
Balance :
- Ares (T1 TLL) : Increase reloadtime : 1 => 1.1. Increase energycost +100E
- All T1 T2 bombers : increase ReloadTilme 6=>10s. Decrease AOE 128 for t1 and 196 for t2
Improvment :
- Windtrap TLL (+adv) : Change Model
Fix :
- Armgate close/open when active/desactive shield. Get 75% armor w<hen closed.
3.96 > 3.97
2021-09-04
Balance :
- All Sub Angle fixed at 90° in front
- Hover Laser Core T2 : Increase Metal by 10%
- T2 Talon Carrier : Delete turret weapon
- T3 Talon Carrier : Delete torpedo and Flak. Add Starburst
- T2 Judgement Turtoise Core : Decrease range 800=>775. Decrease mainweapon damage 500/s=>450/s
- Decrease stockpiletime for t2 anti 100=>60 - t3 anti 60=>50 - mobile t2 90=>80 - t4 anti 90=>75
- Increase stockpiletime for all core tac nuke 75=>90
Improvment :
- Add T3 EMP Invisible Bomber for Talon
- Add Rez Sub for Talon
- Change model for talon adv tide & T3 Carrier
Fix :
- Storage and Behemoth : add underwater category to be targeted by sub weapon
- Fix DamageModifier for some units
3.95 > 3.96
2021-08-23
Balance :
- Cataclysm Core T4 : Decrease stats and cost by 33%
- Vasculatis (T1 cruiser missile Talon ship) : Increase range for starburst
- Talon Frigate T3 Sub : Remplace Tac Nuke by EMP Nuke
- T3 Talon Carrier : Decrease stats and cost. Delete Main Turret
Improvment :
- Add T4 Antinuke Carrier for factions
- Delete ExoArm T4 Shield from Lab (you can have it by morph)
- Tempest (T2 Arm hover) : Change Model and stats
- Add T4 Arm Air Transport
- Add T3 Core Missile Ship
- Add 4 bursts for Howie. Decrease damage by rocket to balance
- Decrease Modelsize for talon T3 Carrier
- Core T2 Shieldg Kbot : Change model into turtoise. Add it to turtoise lab
3.94 > 3.95
2021-08-12
Balance :
- All Antinuke have 0 munition after made. Decrease timebuild for Carrier and Structure by 50%.
- ICBM T2 : Increase Ammo cost 1KM => 1.25KM ; 135KE => 150KE
- ICBM T3 : Increase Ammo cost 1.85KM => 2.5KM ; 265KE => 300KE. Increase AOE 1280 => 1560
- Reduce speed for T2 Cruser -25% and Destroyer T1 -25%
- Panther : decrease damage / shot 300=>260. decrease range 300=>280
- Scorpion (T2 arm amphi) : Delete Cloak and stealth. remplace plasma gun by annihilator beam. Increase Metalcost +30% and decrease HP 9K=>6.2K
- Decrease all t1/t2 submarine speed
- All Bomber : all bombs inflict damage at 5dmg vs submarine. Vs commander -66%=>-75%
Improvment :
- Add T4 SeaLab, T4 Hover Cons, T4 Flagship for all factions
- Add Naval Series Long Range Missile (Anti SAt) for all factions
- Move All T3 Tactical Sub into T4 SeaLab
- Tll Sat & Arm T3 Sea construction : New model
- T4 Tac Sub Core and T3 Arm Tac Sub: Change model
- Change Lightning Arm effect. All units have same effect than Zeus.
- Many T2 Arm / Core hover : change model
Fix :
- Some units couldn't shoot in water like talon wolf, tankanotor. If you see other units, tell me.
- Terraforming (allowed only for t2/t3/t4 commander and t4/t5 cons) - allowed with !mo_terraforming 1
3.93 > 3.94
2021-07-27
Balance :
- All TSAR : Increase Energy / Metal cost, Timebuild and reload Time and cost by 100%
- PlanetKiller Talon : Increase Energy by 120% and Metal cost by 80%. Decrease range 72K=>12K and increase Aoe and damage (5K=>25K)
- T5 Plasma Deflector : Decrease Power -15%)
- Gorg T3 Core : Decrease Hp 385K=>345K
- All engineer : set buildpower same than t1 Cons
- Decrease HP for T4 MEX (18K=>15K)
- All Mobile Cons : Decrease Reclaim and repair Speed by 50% 90
Improvment :
- Rework TLL Sat Cons Model
- Rework T2 Fast Model
- Rework T3 Juggernault Arm. New name = Juggo. Decrease model size, stats & cost. Add jump Feature
3.92 > 3.93
2021-07-16
Balance :
- Thor T3 Tank Arm : Decrease Metal Cost (15KM=>14KM)
Improvment :
- T3 Gunship Air : Increase modelsize
- Add T3 Air Sea Lab for all faction
- Pluton gun Arm (Dog T3 fox, T3 cruser, Rex T3 Amphibious) : Decrease Reload and damage / S. Same Balance
3.91 > 3.92
2021-07-06
Balance :
- Add T3 arm Geo into T3 Cons panel menu
- Decrease speed for tll t2 roaster 1.2=>1.0
- Liche (atomic bomber) : Decrease Cost (3.5KM => 3KM) and Reload 15s=>3s. Add cost amunition (max : 2, 6KE, 300M). You can now choose 2 targets.
Improvment :