-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathchangelog.txt
1927 lines (1927 loc) · 89 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
---------------------------------------------------------------------------------------------------
Version: 2.3.9
Date: ????
Changes:
---------------------------------------------------------------------------------------------------
Version: 2.3.8
Date: 2025-03-04
Info:
- Moon Discovery Cerys and the Cerys description in Factoriopedia have been updated with things-to-know on arrival.
Modding:
- More Picker Dollies compatibility: Fixed that player-constructable radiative towers could be moved separate from their heating effect.
---------------------------------------------------------------------------------------------------
Version: 2.3.7
Date: 2025-03-03
Balancing:
- Adjusted the nitrogen-rich mineral patch sizing.
---------------------------------------------------------------------------------------------------
Version: 2.3.6
Date: 2025-03-03
Changes:
- Bumped minimum Factorio version by one version.
---------------------------------------------------------------------------------------------------
Version: 2.3.5
Date: 2025-03-03
Graphics:
- Ice decoratives on Cerys are now destroyed by heat.
---------------------------------------------------------------------------------------------------
Version: 2.3.4
Date: 2025-03-02
Modding:
- Added a simple compatibility patch for Plutonium Energy. PE recipes that could be considered complex duplicates of Cerys recipes are hidden from the tech tree.
---------------------------------------------------------------------------------------------------
Version: 2.3.3
Date: 2025-03-02
Changes:
- Fixed missing Factoriopedia info for gamma radiation.
---------------------------------------------------------------------------------------------------
Version: 2.3.2
Date: 2025-03-02
Modding:
- AAI Industry compatibility: Stone is once again obtainable from nuclear scrap recycling.
- Distant Misfires compatibility: Cerys asteroids once again have a collision mask if this mod is installed, allowing them to be shot down.
Optimizations:
- Performance improvements.
---------------------------------------------------------------------------------------------------
Version: 2.3.1
Date: 2025-03-02
Changes:
- Changes to nuclear scrap recycling results: centrifuges (+6%), steam turbines (+6%).
---------------------------------------------------------------------------------------------------
Version: 2.3.0
Date: 2025-03-01
Changes:
- Nuclear scrap recycling no longer provides stone bricks.
- If the Cerys surface somehow becomes deleted, the Cerys tech tree is reset.
- Ribbonworld Cerys maps are now even thinner.
Balancing:
- Changes to nuclear scrap recycling results: heat pipes (+83%), advanced circuits (+10%), centrifuges (-15%), steam turbines (-15%), stone bricks (-100% as mentioned above).
- More iron gear wheels (+9%) from Fulgoran ruins
- Methane ice mining speed reduced by 20%.
Bugfixes:
- The cryogenic science pack technology is now correctly listed as a prerequisite for the radiative heaters technology.
- Fixed that on Hardcore Cerys ribbonworld the Fulgoran reactor could not be defrosted.
- Fixed that on super-ribbonworlds lithium brine spots could not be defrosted.
Graphics:
- The vanilla centrifuge now has a blue tint when crafting 'mixed-oxide waste centrifuging'.
Info:
- Added a performance warning when a player constructs their 250th charging rod on Cerys.
Optimizations:
- Performance improvements to surface cooling.
---------------------------------------------------------------------------------------------------
Version: 2.2.3
Date: 2025-02-28
Bugfixes:
- Fixed a crash when pasting charging rod settings in some circumstances.
---------------------------------------------------------------------------------------------------
Version: 2.2.0
Date: 2025-02-28
Changes:
- Reworked the dynamic lighting calculation of solar panel brightness on Cerys.
- 'Radiative heaters' renamed to 'Radiative towers'.
Bugfixes:
- Fixed pre-2.0 saves having some unthawable ice on the border of Cerys in 2.0.
- Removed 'neighbour bonus' notes for radiative towers in Factoriopedia.
Balancing:
- Adjusted the amount of light oil produced by methane ice dissociation (+25%).
- Adjusted the amount of sulfuric acid needed (-20%) and ammonia produced (-20%) by nitrogen-rich mineral processing.
Graphics:
- New heat graphic for player-constructable radiative towers.
---------------------------------------------------------------------------------------------------
Version: 2.1.16
Date: 2025-02-26
Balancing:
- Coal synthesis can no longer be performed on Cerys.
---------------------------------------------------------------------------------------------------
Version: 2.1.15
Date: 2025-02-26
Balancing:
- Holmium plate productivity research on Cerys is now affected by force research productivity bonuses.
---------------------------------------------------------------------------------------------------
Version: 2.1.14
Date: 2025-02-26
Changes:
- Player-constructable radiative heaters can now only be crafted on Cerys.
---------------------------------------------------------------------------------------------------
Version: 2.1.13
Date: 2025-02-26
Changes:
- Additional dynamic lighting fix to the night-day transition.
---------------------------------------------------------------------------------------------------
Version: 2.1.12
Date: 2025-02-26
Changes:
- Added second 'Breaking change' entry to the 2.0 changelog, now we know about it. (Namely: Concrete sitting on water will unfortunately explode when the save loads.)
---------------------------------------------------------------------------------------------------
Version: 2.1.11
Date: 2025-02-26
Changes:
- Radiative tower visualizations are more transparent and no longer show until the tower is ready to heat.
---------------------------------------------------------------------------------------------------
Version: 2.1.10
Date: 2025-02-26
Changes:
- Cryogenic science is now required to research player-constructable radiative heaters.
- Small tweaks to other research requirements.
---------------------------------------------------------------------------------------------------
Version: 2.1.9
Date: 2025-02-26
Changes:
- Fixed a crash.
---------------------------------------------------------------------------------------------------
Version: 2.1.7
Date: 2025-02-26
Graphics:
- Improvements to the dynamic lighting transition.
---------------------------------------------------------------------------------------------------
Version: 2.1.6
Date: 2025-02-26
Bugfixes:
- Fixed that ghost concrete could be placed in the empty space around Cerys.
- Fixed issue in which solar panels built outside of Cerys by players who previously visited Cerys could affect the solar power brightness calculation on Cerys.
---------------------------------------------------------------------------------------------------
Version: 2.1.5
Date: 2025-02-25
Changes:
- Ice platform can now be placed over Cerys water.
---------------------------------------------------------------------------------------------------
Version: 2.1.4
Date: 2025-02-25
Changes:
- Radiative heaters now show a visualization of their heating range.
Balancing:
- +1 range for player-constructable radiative heaters.
---------------------------------------------------------------------------------------------------
Version: 2.1.3
Date: 2025-02-25
Changes:
- Crushers are no longer forced to spawn on water.
---------------------------------------------------------------------------------------------------
Version: 2.1.2
Date: 2025-02-25
Changes:
- The construction robot recycling ban on Cerys now comes with an error message.
---------------------------------------------------------------------------------------------------
Version: 2.1.1
Date: 2025-02-25
Changes:
- Fixed ice decoratives on Cerys failing to spawn.
Balancing:
- Adjusted the 2.0 buff to heat pipes in scrap recycling down to +71%.
---------------------------------------------------------------------------------------------------
Version: 2.1.0
Date: 2025-02-25
Bugfixes:
- Fixed issue in which player radiative heaters were buildable before unlocking the technology.
- Fixed existing Cerysian science packs being deleted when loading pre-2.0.0 saves.
- Fixed Discover Fulgoran Cryogenics recipe being always unlocked for players that were previously playing on Technology Compatibility Mode.
Modding:
- Added setting to control whether player-constructable radiative heaters are available.
---------------------------------------------------------------------------------------------------
Version: 2.0.0
Date: 2025-02-23
Info:
- Version 2.0! Headline features: Smaller moon surface, dynamic lighting, reduced gameplay grind, player-constructable radiative heaters.
- Two breaking changes: 1) Cerysian science packs now require repair parts instead of ammonia. 2) Concrete sitting on water will explode when the save loads, as this is how Cerys water now works.
Changes:
- Concrete can now only be placed over Cerys water if the water is frozen.
- Offshore pumps explode when their ice freezes over (leaving a ghost).
- Asteroids on Cerys no longer prevent building placement.
- Moved the repair part and scaffold items to the Intermediate Products tab.
- Improvements to resource and iceberg map generation.
- Nuclear waste solution has been renamed Mixed-oxide waste solution.
- The Mixed-oxide waste reprocessing technology no longer unlocks Coal synthesis.
- Tweaks to the recipe for Cerys labs and the reactor scaffold.
- Recycling of Uranium-238 on Cerys is now secretly unlocked by a late-game tech rather than being banned forever.
Balancing:
- Changed to nuclear scrap recycling: pipes (+36%), heat pipes (+100%), stone bricks (-50%).
- Fulgoran ruins provide more gears (+25%) and fewer concrete (-41%).
- Ammonia produced by nitrogen-rich mineral processing reduced (-50%).
- Heating towers now heat up and cool down faster (+100%) and have a max temperature of 150 (from 200).
- Tweaks to Fulgoran repair costs: parts for cryogenic plants (-25%), parts for crushers (-25%), processing units for crushers (+50%).
- Increased likelihood of metallic asteroids on Cerys being medium size instead of small.
- Changes to resource mining speeds: Methane ice crystals (+123%), nitrogen-rich minerals (-50%).
- Crushers have increased energy consumption (+60%).
- Changes to crafting speeds: ancient structure repair parts (-20%), methane ice dissociation (-16%), nitrogen-rich mineral processing (+300%).
- Various tech tree tweaks. In particular, for each new type of science pack that becomes necessary, at least one technology using that pack has a low unit requirement to provide a smoother on-ramp.
- Endgame science productivity bonuses no longer apply to Cerys technologies.
- Nuclear fuel reprocessing now produces more U-238 to support self-sustaining mixed-oxide reactors in space.
- Increased the initial tech loudout in 'Start on Cerys' mode.
Bugfixes:
- Fixed the method by which players can date the Fulgoran civilization giving an 'incorrect' value.
Graphics:
- Various graphical improvements.
- New icon for Fulgoran Cryogenics Progress to avoid confusion with science packs.
Modding:
- Full compatibility with Factory Planner. 'Technology compatibility mode' has been removed for now.
- New setting to stop Cerys overwriting certain recycling recipes to their vanilla form.
- Compatibility with Picker Dollies.
- If Fulgora has been hidden or removed, Cerys orbits another planet with lightning.
---------------------------------------------------------------------------------------------------
Version: 1.4.45
Date: 2025-02-20
Changes:
- Overly large ore patches no longer have a chance of spawning in the center of the map.
- Circuit controls on charging rod ghosts can now be configured.
Bugfixes:
- Fixed most remaining bugs with charging rod circuit control pasting.
---------------------------------------------------------------------------------------------------
Version: 1.4.44
Date: 2025-02-17
Balancing:
- Resource spawns adjusted to better reflect their usage.
Graphics:
- Tweaked the color of radiative towers at night.
Info:
- Item description updates.
---------------------------------------------------------------------------------------------------
Version: 1.4.42
Date: 2025-02-17
Changes:
- New upload due to reports of being unable to download the mod.
---------------------------------------------------------------------------------------------------
Version: 1.4.41
Date: 2025-02-17
Balancing:
- Mining speed of nuclear scrap reduced by 12.5%.
---------------------------------------------------------------------------------------------------
Version: 1.4.40
Date: 2025-02-16
Changes:
- Reworked the spawning of decoratives on Cerys.
- Methane icebergs are now faster to mine.
---------------------------------------------------------------------------------------------------
Version: 1.4.39
Date: 2025-02-16
Balancing:
- Increased the Pu-239 produced by reprocessing spent mixed-oxide fuel by ~50%. This makes it easier to create self-sustaining mixed-oxide reactors on space platforms. The U-238 from this process has also been increased by 50%, and the Pu-238 decreased by 33%.
- Reduced the Pu-239 generated by REDACTED by 21%.
---------------------------------------------------------------------------------------------------
Version: 1.4.38
Date: 2025-02-16
Info:
- Removed extra character that prevented changelog from being displayed in-game.
---------------------------------------------------------------------------------------------------
Version: 1.4.37
Date: 2025-02-15
Info:
- Improvements to past changelog entries.
---------------------------------------------------------------------------------------------------
Version: 1.4.36
Date: 2025-02-15
Balancing:
- Methane ice dissociation crafting speed increased by 50%.
---------------------------------------------------------------------------------------------------
Version: 1.4.32
Date: 2025-02-15
Balancing:
- Reduced the number of repair parts needed to repair the Fulgoran crusher (200 -> 80).
---------------------------------------------------------------------------------------------------
Version: 1.4.28
Date: 2025-02-15
Balancing:
- Further increase (+13%) to the surplus iron produced by nitrogen-rich mineral processing.
---------------------------------------------------------------------------------------------------
Version: 1.4.27
Date: 2025-02-14
Balancing:
- Steam turbines produced by nuclear scrap recycling reduced by 20%.
---------------------------------------------------------------------------------------------------
Version: 1.4.26
Date: 2025-02-14
Balancing:
- Methane production from methane ice dissociation dropped by 25%.
---------------------------------------------------------------------------------------------------
Version: 1.4.25
Date: 2025-02-14
Balancing:
- The recipe to upgrade Fulgoran crusher quality now mentions that quality upgrades give the crusher additional module slots.
Info:
- Reordered the cerys-repair row in Factoriopedia.
---------------------------------------------------------------------------------------------------
Version: 1.4.22
Date: 2025-02-13
Balancing:
- Tweaked the crafting time of nuclear scrap recycling (0.5 -> 0.4).
---------------------------------------------------------------------------------------------------
Version: 1.4.21
Date: 2025-02-13
Balancing:
- Slightly decreased the scaling cost of holmium plate productivity (power 3 -> 2.5).
---------------------------------------------------------------------------------------------------
Version: 1.4.20
Date: 2025-02-13
Bugfixes:
- Fixed a crash.
---------------------------------------------------------------------------------------------------
Version: 1.4.18-1.4.19
Date: 2025-02-13
Graphics:
- Ribbonworld Cerys maps now show an elongated Fulgora in the background.
---------------------------------------------------------------------------------------------------
Version: 1.4.17
Date: 2025-02-13
Changes:
- Support for Cerys on ribbonworlds. Existing Cerys surfaces on ribbonworld saves will be deleted when the save is loaded.
- The empty space around Cerys on newly generated maps no longer destroys dropped items. This change is partially for 'realism' and partially to increase the necessity of recyclers.
---------------------------------------------------------------------------------------------------
Version: 1.4.16
Date: 2025-02-13
Balancing:
- Increased the processing time of nuclear scrap recycling.
---------------------------------------------------------------------------------------------------
Version: 1.4.15
Date: 2025-02-12
Balancing:
- Increased the mining time of nuclear scrap.
---------------------------------------------------------------------------------------------------
Version: 1.4.14
Date: 2025-02-12
Bugfixes:
- Fix crash in Hardcore Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.4.13
Date: 2025-02-12
Balancing:
- Asteroid spawn rate increased by 10%.
---------------------------------------------------------------------------------------------------
Version: 1.4.12
Date: 2025-02-12
Balancing:
- Surface-based cooling rate reduced by 20%.
- Fulgoran reactor heat energy capacity reduced by 20%.
---------------------------------------------------------------------------------------------------
Version: 1.4.11
Date: 2025-02-12
Bugfixes:
- Fixed charging rod circuit control checkboxes becoming disabled when players join in multiplayer.
---------------------------------------------------------------------------------------------------
Version: 1.4.10
Date: 2025-02-12
Info:
- Internal neutron projectile entities are now hidden in Factoriopedia.
---------------------------------------------------------------------------------------------------
Version: 1.4.9
Date: 2025-02-12
Graphics:
- Fixed radiative towers being brighter than intended.
---------------------------------------------------------------------------------------------------
Version: 1.4.8
Date: 2025-02-11
Balancing:
- Further decrease to the energy consumption of Fulgoran cryogenic plants.
---------------------------------------------------------------------------------------------------
Version: 1.4.7
Date: 2025-02-11
Balancing:
- Small tweak to methane ice dissociation.
---------------------------------------------------------------------------------------------------
Version: 1.4.6
Date: 2025-02-11
Balancing:
- Methane quantity produced from methane ice dissociation increased.
---------------------------------------------------------------------------------------------------
Version: 1.4.5
Date: 2025-02-11
Locale:
- Japanese update.
---------------------------------------------------------------------------------------------------
Version: 1.4.4
Date: 2025-02-11
Info:
- Changelog fix.
---------------------------------------------------------------------------------------------------
Version: 1.4.3
Date: 2025-02-11
Bugfixes:
- Fixed a crash when copy-pasting entity settings before visiting Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.4.2
Date: 2025-02-11
Balancing:
- Decreased the research cost of the plutonium weaponry technology from 4000 packs to 3000 packs.
---------------------------------------------------------------------------------------------------
Version: 1.4.1
Date: 2025-02-11
Changes:
- Added settings copy-paste functionality for charging rod circuit controls.
---------------------------------------------------------------------------------------------------
Version: 1.4.0
Date: 2025-02-10
Changes:
- Radiative towers on Cerys now belong to the player force rather than the neutral force, making their solid fuel consumption appear in production statistics.
- The charging rod circuit control GUI now initializes correctly.
- Adjusted the flickering light on the radiative tower.
Modding:
- Muluna compatibility: Burner inserters are no longer forbidden on Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.3.14
Date: 2025-02-10
Modding:
- Muluna compatibility: 'Carbon-lubricated electric engine unit' is no longer craftable on Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.3.13
Date: 2025-02-10
Graphics:
- New graphics for methane ice.
---------------------------------------------------------------------------------------------------
Version: 1.3.12
Date: 2025-02-10
Changes:
- Changes to lighting on Cerys: Nights are somewhat darker. Radiative towers glow with a softer light which is tinted slightly red in Factorio 2.0.23 and onwards. Solar wind is slightly transparent.
---------------------------------------------------------------------------------------------------
Version: 1.3.11
Date: 2025-02-09
Bugfixes:
- Fixed a crash involving text renderings.
---------------------------------------------------------------------------------------------------
Version: 1.3.10
Date: 2025-02-09
Bugfixes:
- Plutonium-239 generation is now fully represented in the item production statistics.
---------------------------------------------------------------------------------------------------
Version: 1.3.9
Date: 2025-02-09
Changes:
- Charging rod polarity can now be controlled by circuits.
---------------------------------------------------------------------------------------------------
Version: 1.3.8
Date: 2025-02-08
Modding:
- Support for Roc's Hardcore Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.3.7
Date: 2025-02-08
Balancing:
- Significantly reduced energy draw of the Fulgoran cryogenic plant, making it easier to solve bottlenecks by expanding the number of plants.
- Increased the crafting time of ancient structure repair parts.
- Slightly increased sulfuric acid required for nitrogen-rich mineral processing.
Bugfixes:
- Fixed a crash when overwriting existing charging rods with a blueprint.
- Fixed auxiliary charging rod light entities obstructing players from walking between charging rods.
---------------------------------------------------------------------------------------------------
Version: 1.3.6
Date: 2025-02-08
Bugfixes:
- Fixed another compatibility issue with Any Planet Start.
---------------------------------------------------------------------------------------------------
Version: 1.3.4
Date: 2025-02-08
Bugfixes:
- Fixed Kovarex enrichment process not being removed as a prerequisite of Cerys when using Any Planet Start.
---------------------------------------------------------------------------------------------------
Version: 1.3.3
Date: 2025-02-07
Bugfixes:
- Remove library usage of custom event which is capable of crashing.
---------------------------------------------------------------------------------------------------
Version: 1.3.2
Date: 2025-02-06
Bugfixes:
- Fixed a crash when placing the reactor scaffold.
Balancing:
- Reduced the variance in solar wind particle speed.
---------------------------------------------------------------------------------------------------
Version: 1.3.0
Date: 2025-02-05
Balancing:
- Significant balance change: much less sulfuric acid is now needed in the iron->iron loop involving nitrogen-rich minerals. The 'puzzle' of needing productivity modules to make this recipe effective has been removed.
Changes:
- As with the reactor, the Fulgoran crusher no longer requires quality components to repair.
- Fulgoran crushers can now be upgraded in quality, providing more module slots. The normal quality crusher has been nerfed: zero module slots and higher energy consumption.
Bugfixes:
- Fixed crash when playing Cerys in French.
---------------------------------------------------------------------------------------------------
Version: 1.2.0
Date: 2025-02-04
Changes:
- Repairing the reactor no longer requires quality components.
- The scaffolded nuclear reactor no longer has module slots.
- Repairing Fulgoran crushers now requires processing units instead of advanced circuits.
Balancing:
- The amount of iron obtained from nuclear scrap recycling has been reduced to encourage players to find more productive ways of generating it.
- Reduced mining time of methane icebergs.
Bugfixes:
- Items in the input inventory of a Fulgoran wreck are no longer lost when the wreck is repaired.
Info:
- Crafting time of dummy Plutonium-239 recipe shown in Factoriopedia reduced to 0.1.
---------------------------------------------------------------------------------------------------
Version: 1.1.6
Date: 2025-02-04
Locale:
- French locale update.
---------------------------------------------------------------------------------------------------
Version: 1.1.4
Date: 2025-02-04
Bugfixes:
- Fixed bug when placing the Fulgoran reactor scaffold.
---------------------------------------------------------------------------------------------------
Version: 1.1.3
Date: 2025-02-04
Bugfixes:
- Fixed crash when placing a blueprint from a blueprint book.
---------------------------------------------------------------------------------------------------
Version: 1.1.2
Date: 2025-02-04
Bugfixes:
- Fixed Factoriopedia entry for the damage effects of the neutron bomb.
Info:
- Description update to Cerysian Science Pack tech.
---------------------------------------------------------------------------------------------------
Version: 1.1.1
Date: 2025-02-04
Bugfixes:
- Small fixes to the Cerysian Science Pack tech.
---------------------------------------------------------------------------------------------------
Version: 1.1.0
Date: 2025-02-04
Changes:
- Moon Discovery Cerys and Cerysian Science Pack are now marked as essential technologies. This convention seems to have taken hold amongst planet mods.
- More efficient cleanup of out-of-bounds solar wind particles.
Bugfixes:
- Most of the bugs in which charging rod settings failed to paste correctly have been fixed. The remaining bugs will probably need the base game to be patched.
- Fixed graphical bug in which charging rod lights failed to appear.
Balancing:
- Significantly increased the lifetime of solar wind particles.
- Slightly reduced the strength of charging rod deflection.
- Range increase on the hydrogen bomb rolling wave.
---------------------------------------------------------------------------------------------------
Version: 1.0.50
Date: 2025-02-04
Changes:
- Reduced occurrence of huge nuclear scrap patches.
---------------------------------------------------------------------------------------------------
Version: 1.0.49
Date: 2025-02-01
Bugfixes:
- Concrete spawning under map entities is now coterminous.
Changes:
- Fulgoran crushers have a more contrasting map color and are more common.
---------------------------------------------------------------------------------------------------
Version: 1.0.48
Date: 2025-01-30
Modding:
- Compatibility with modded burner generator equipment.
---------------------------------------------------------------------------------------------------
Version: 1.0.47
Date: 2025-01-30
Graphics:
- New icon and description for the charging rod technology.
- Slowed the speed of the animated charging rod lights.
- Adjusted the orbit graphic slightly.
Locale:
- Chinese updated.
---------------------------------------------------------------------------------------------------
Version: 1.0.46
Date: 2025-01-28
Bugfixes:
- Fixed crash on 2.0.33 due to missing explosion graphic in base game.
Balancing:
- Crafting time of excavation recipe reduced.
---------------------------------------------------------------------------------------------------
Version: 1.0.45
Date: 2025-01-27
Balancing:
- Science cost of Moon Discovery Cerys reduced.
---------------------------------------------------------------------------------------------------
Version: 1.0.44
Date: 2025-01-27
Changes:
- Slight reduction to solid fuel obtained from nuclear scrap recycling.
Bugfixes:
- Fixed radiative towers destroying the original solid fuel heating progress when defrosting.
---------------------------------------------------------------------------------------------------
Version: 1.0.43
Date: 2025-01-27
Changes:
- Tweaks to neutron bomb neutrons.
- Primary blast radius of neutron bombs reduced.
- Tweaks to hydrogen bomb sounds.
---------------------------------------------------------------------------------------------------
Version: 1.0.42
Date: 2025-01-27
Changes:
- Fewer crushers spawn on the map.
---------------------------------------------------------------------------------------------------
Version: 1.0.41
Date: 2025-01-26
Changes:
- The second cryogenic plant defrosted no longer has a dropped repair cost (but the first defrosted plant still does.)
---------------------------------------------------------------------------------------------------
Version: 1.0.40
Date: 2025-01-26
Bugfixes:
- Prevent placing concrete on Cerys empty space.
---------------------------------------------------------------------------------------------------
Version: 1.0.39
Date: 2025-01-26
Graphics:
- Graphical updates for the Fulgoran cryogenic plant.
---------------------------------------------------------------------------------------------------
Version: 1.0.38
Date: 2025-01-26
Changes:
- Fixed the lab and science pack being unintentionally defined in data-final-fixes.
---------------------------------------------------------------------------------------------------
Version: 1.0.37
Date: 2025-01-25
Changes:
- Checkbox setting added to start new games on Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.0.36
Date: 2025-01-25
Changes:
- Fixed the size of the charging rod as displayed in the statistics screen.
---------------------------------------------------------------------------------------------------
Version: 1.0.35
Date: 2025-01-25
Changes:
- Moved technology-related prototype definitions from data-final-fixes back to data where they belong. Now that 1.0 has released, we can hopefully iron out compatibility issues over time.
---------------------------------------------------------------------------------------------------
Version: 1.0.34
Date: 2025-01-25
Balancing:
- Neutrons from neutron bombs move faster, spread wider and are more numerous. The central explosion also deals more damage.
---------------------------------------------------------------------------------------------------
Version: 1.0.33
Date: 2025-01-24
Changes:
- Added mod setting to disable quality-sensitive mechanics on Cerys.
- Reduced the speed at which the Fulgoran nuclear reactor consumes mixed-oxide fuel.
- Slightly decreased the ambient rate at which the Fulgoran nuclear reactor cools.
Balancing:
- Dropped the recipes needed for Fulgoran reactor repair from 15 to 12.
Bugfixes:
- Fixed quality indicators not being shown in the floating GUI for the Fulgoran crusher repair.
---------------------------------------------------------------------------------------------------
Version: 1.0.32
Date: 2025-01-24
Changes:
- Increased the lifetime of solar wind particles.
---------------------------------------------------------------------------------------------------
Version: 1.0.31
Date: 2025-01-23
Changes:
- More mod compatibilities.
---------------------------------------------------------------------------------------------------
Version: 1.0.30
Date: 2025-01-23
Changes:
- Improved cross-mod compatibility of surface conditions.
- Burner generators are no longer buildable on Cerys.
---------------------------------------------------------------------------------------------------
Version: 1.0.29
Date: 2025-01-23
Changes:
- Japanese locale update.
---------------------------------------------------------------------------------------------------
Version: 1.0.28
Date: 2025-01-22
Changes:
- Added migration to preserve research progress on cargo drops. Players loading older saves with this tech researched will have it preserved from 1.0.28.
---------------------------------------------------------------------------------------------------
Version: 1.0.27
Date: 2025-01-22
Changes:
- The mixed-oxide reactor technology now unlocks the lithium plate recipe.
---------------------------------------------------------------------------------------------------
Version: 1.0.26
Date: 2025-01-22
Modding:
- More mod compatibilities.
---------------------------------------------------------------------------------------------------
Version: 1.0.25
Date: 2025-01-22
Modding:
- Compatibility with mods that mess with the default charging rod in the data stage.
---------------------------------------------------------------------------------------------------
Version: 1.0.24
Date: 2025-01-22
Graphics:
- 4K orbit graphic.
---------------------------------------------------------------------------------------------------
Version: 1.0.23
Date: 2025-01-22
Changes:
- Support for PlanetsLib 1.1.31.
---------------------------------------------------------------------------------------------------
Version: 1.0.22
Date: 2025-01-22
Changes:
- Support for PlanetsLib 1.1.30.
---------------------------------------------------------------------------------------------------
Version: 1.0.21
Date: 2025-01-21
Changes:
- Removed mod setting to control the repair cost of the Fulgoran reactor.
Locale:
- Chinese locale updated (recently).
Balancing:
- Crafting time of processing units from nitric acid reduced.
- Methane ice required for dissociation increased.
---------------------------------------------------------------------------------------------------
Version: 1.0.20
Date: 2025-01-21
Changes:
- Added Kovarex enrichment process as a prerequisite for discovering Cerys.
- Slightly increased the number of lithium brine spawns.
---------------------------------------------------------------------------------------------------
Version: 1.0.19
Date: 2025-01-21
Changes:
- Increased the temperature of steam produced by mixed-oxide cell reprocessing.
Bugfixes:
- Production of nitric acid now allows productivity modules.
- Fixed that items placed into frozen Fulgoran crushers were not retained when the crusher thaws.
---------------------------------------------------------------------------------------------------
Version: 1.0.18
Date: 2025-01-21
Modding:
- Further compatibility fixes, especially for 5-dim.
---------------------------------------------------------------------------------------------------
Version: 1.0.17
Date: 2025-01-21
Bugfixes:
- Fixed that cryogenic plant quality upgrade recipes were not functioning.
---------------------------------------------------------------------------------------------------
Version: 1.0.16
Date: 2025-01-21
Changes:
- Compatibility fix for crafting science packs with Muluna installed.
---------------------------------------------------------------------------------------------------
Version: 1.0.15
Date: 2025-01-21
Info:
- Changelog fix.
---------------------------------------------------------------------------------------------------
Version: 1.0.14
Date: 2025-01-21
Bugfixes:
- Fixed a startup crash.
---------------------------------------------------------------------------------------------------
Version: 1.0.13
Date: 2025-01-21
Graphics:
- Graphical fix for the neutron bomb icon.
---------------------------------------------------------------------------------------------------
Version: 1.0.12
Date: 2025-01-20
Graphics:
- Adjusted the color and sound of the new nuclear reactors.
---------------------------------------------------------------------------------------------------
Version: 1.0.11
Date: 2025-01-20
Graphics:
- Gamma radiation particles are now green and slightly larger.
---------------------------------------------------------------------------------------------------
Version: 1.0.10
Date: 2025-01-20
Balancing:
- Reduced the crafting time of processing units in the Fulgoran cryogenic plant.
---------------------------------------------------------------------------------------------------
Version: 1.0.9
Date: 2025-01-20
Balancing:
- Dropped the number of reactor repair recipes needed from 20 to 15.
---------------------------------------------------------------------------------------------------
Version: 1.0.8
Date: 2025-01-20
Balancing:
- Energy consumption of the Fulgoran cryogenic plant reduced.
---------------------------------------------------------------------------------------------------
Version: 1.0.7
Date: 2025-01-20
Balancing:
- Slightly increased the base ore yield from nitrogen-rich minerals processing.
Locale:
- Russian updated.
---------------------------------------------------------------------------------------------------
Version: 1.0.6
Date: 2025-01-20
Balancing:
- Adjusted the heat capacity and heat intake of mixed-oxide nuclear reactors.
---------------------------------------------------------------------------------------------------
Version: 1.0.0
Date: 2025-01-20
Features:
- Planet reward: Hydrogen bomb, a powerful upgrade of the Atomic bomb.
- Planet reward: Neutron bomb, an artillery shell that releases a scattering cloud of neutrons.
- Planet reward: Mixed-oxide nuclear reactor, usable outside of Cerys.
Graphics:
- Brand new graphics for the charging rod.
Changes:
- Tech tree tweaks.
- Nuclear weaponry can no longer permanently change ground tiles on Cerys.
---------------------------------------------------------------------------------------------------
Version: 0.9.31
Date: 2025-01-19
Balancing:
- Partially reverted the science cost of Cerys cargo drops from 500 to 1500.
Changes:
- Oxygen=0 on Cerys for compatibility with Muluna, etc.
---------------------------------------------------------------------------------------------------
Version: 0.9.30
Date: 2025-01-19
Balancing:
- Dropped the science cost of Cerys cargo drops from 2000 to 500.
---------------------------------------------------------------------------------------------------
Version: 0.9.29
Date: 2025-01-19
Changes:
- Replaced the outdated in-game mod description.
---------------------------------------------------------------------------------------------------
Version: 0.9.28
Date: 2025-01-19
Info:
- space_travel_required flag added.
---------------------------------------------------------------------------------------------------
Version: 0.9.27
Date: 2025-01-19
Modding:
- Added Planet Hopper as an optional dependency. Although there is no specific compatibility, players may like to use Planet hoppers to pause gameplay on Cerys and resume later.
---------------------------------------------------------------------------------------------------
Version: 0.9.26
Date: 2025-01-18
Bugfixes:
- Reinstated the tile cerys-empty-space. Although this tile does not have the desired properties, migrating it to empty-space was problematic because some bases relied on voiding items by dropping onto empty space with an inserter. cerys-empty-space is left as a legacy tile, whilst new saves will use cerys-empty-space-2.
---------------------------------------------------------------------------------------------------
Version: 0.9.25
Date: 2025-01-18
Changes:
- Space platform foundation can now be crafted on Cerys (but still cannot be placed.)
---------------------------------------------------------------------------------------------------
Version: 0.9.24
Date: 2025-01-18
Changes:
- Improved feedback from the recipe Upgrade Fulgoran cryogenic plant quality. When the recipe is selected with the wrong quality, the quality of the recipe will be adjusted automatically.
---------------------------------------------------------------------------------------------------
Version: 0.9.23
Date: 2025-01-18
Balancing:
- Fulgoran cryogenic plants can now once again process nuclear waste solution, but the mixed-oxide fuel cell reprocessing loop has been nerfed to compensate.
Modding:
- Fulgoran cryogenic plants can now be placed in the map editor.
---------------------------------------------------------------------------------------------------
Version: 0.9.22
Date: 2025-01-18
Changes:
- Defrosting water puddles no longer destroy offshore pumps.
Balancing:
- Adjusted the recipe for processing units from nitric acid to use the same amount of nitric acid as sulfuric acid used in the vanilla recipe.
Bugfixes:
- On new saves, fixed that space platform foundations could be placed around Cerys, which caused problems with asteroid gameplay and other areas. Since Factorio cannot handle migrating tiles that contain covering tiles which would now collide, old saves are migrated to have Cerys surrounded by the empty-space tile.
---------------------------------------------------------------------------------------------------
Version: 0.9.21
Date: 2025-01-18
Changes:
- Re-removed the limitation on requesting a maximum of 200 ice tiles to transition at once, since this will be unrelated to the reported bug. This fixes ice melting in an unusual order.
---------------------------------------------------------------------------------------------------
Version: 0.9.20
Date: 2025-01-18
Changes:
- Revert melting ice changes due to reports of bugs I can't reproduce.
---------------------------------------------------------------------------------------------------
Version: 0.9.19
Date: 2025-01-17
Bugfixes:
- Fixed that it was impossible to drop solid fuel into radiative towers (using 'z'.)
- Fixed that ice could melt in an unusual order if lots of ice was melting at once.
Optimizations:
- Performance improvement to melting ice.
---------------------------------------------------------------------------------------------------
Version: 0.9.18
Date: 2025-01-17
Balancing:
- Heat loss rate of heat pipes and boilers on Cerys reduced.
---------------------------------------------------------------------------------------------------
Version: 0.9.17
Date: 2025-01-16
Locale:
- Japanese added.
- Russian and Ukrainian updated.
---------------------------------------------------------------------------------------------------
Version: 0.9.16
Date: 2025-01-16
Changes:
- Changelog fix.
---------------------------------------------------------------------------------------------------
Version: 0.9.15
Date: 2025-01-15
Changes:
- Changelog fix.
---------------------------------------------------------------------------------------------------
Version: 0.9.14
Date: 2025-01-15
Optimizations:
- Further performance improvement to solar wind.
- Added a setting to control the spawn rate of solar wind particles, if all else fails on slower PCs. Note this performance concern is only relevant if a player is looking at the Cerys surface. Solar wind is already heavily optimized if Cerys is running with nobody looking at it.
---------------------------------------------------------------------------------------------------
Version: 0.9.13
Date: 2025-01-15
Bugfixes:
- Prevent circular dep with Cerys Lunaponics.
---------------------------------------------------------------------------------------------------
Version: 0.9.12
Date: 2025-01-15
Modding:
- Optional dependency added: Wooden Cerys: Lunaponics.
---------------------------------------------------------------------------------------------------
Version: 0.9.11
Date: 2025-01-15
Balancing:
- Nerfed mixed-oxide fuel cell reprocessing slightly.
---------------------------------------------------------------------------------------------------
Version: 0.9.10
Date: 2025-01-14
Balancing:
- Mixed oxide fuel cell reprocessing and crafting can both no longer be performed in Fulgoran cryogenic plants, as the number of module slots meant the loop was too positive.
---------------------------------------------------------------------------------------------------
Version: 0.9.9
Date: 2025-01-14
Changes:
- Added Cerys ore sliders in map gen settings.
---------------------------------------------------------------------------------------------------
Version: 0.9.8
Date: 2025-01-13
Locale:
- Charging rod locale fix.
---------------------------------------------------------------------------------------------------
Version: 0.9.7
Date: 2025-01-13
Bugfixes:
- Fixed that lithium brine sometimes spawned inside tower-heated areas, breaking the reactor gameplay. Old saves with this issue are automatically fixed when 0.9.7 is installed.
- Fixed that it was possible on Cerys to build non-Cerys reactors and labs dropped by space platforms.
Info:
- Updated image for the mod portal.
---------------------------------------------------------------------------------------------------
Version: 0.9.6
Date: 2025-01-13
Balancing:
- Increased energy consumption of the Fulgoran cryogenic plant to match the Foundry.
Bugfixes:
- Fixed the locale entries for charging rods.
Graphics:
- Improvements to the pipe graphics for the Fulgoran cryogenic plant.
- Fixed tile transitions between Cerys rock and empty space.
---------------------------------------------------------------------------------------------------
Version: 0.9.5
Date: 2025-01-12
Changes:
- More assorted compatibility fixes.
---------------------------------------------------------------------------------------------------
Version: 0.9.4
Date: 2025-01-12
Modding:
- Assorted compatibility fixes.
---------------------------------------------------------------------------------------------------
Version: 0.9.3
Date: 2025-01-12
Graphics:
- Icon improvements.
Balancing:
- Slight increase to entity cooling rates on Cerys.
- Slight decrease in plutonium generation rate.
Changes:
- Lubricant synthesis can now only be performed in Fulgoran cryogenic plants. Since this recipe now uses only vanilla items, this ensures gameplay with vanilla items is completely unchanged on other planets.
Locale:
- Updated Chinese localization.
---------------------------------------------------------------------------------------------------
Version: 0.9.2
Date: 2025-01-11
Bugfixes:
- Fixed the collision box of large methane icebergs.
Changes:
- Further performance improvement to solar wind: particle images are now displayed as renderings rather than entities, reducing UPS usage to ~50%. The number of solar wind particles has been increased by 33%.
Graphics:
- Further improvements to Cerys icons.
---------------------------------------------------------------------------------------------------
Version: 0.9.1
Date: 2025-01-11
Modding: