-
Notifications
You must be signed in to change notification settings - Fork 20
/
2.2.7_game_modifiers.txt
2795 lines (2795 loc) · 98.8 KB
/
2.2.7_game_modifiers.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
blank_modifier
pop_political_power
pop_happiness
biological_pop_happiness
pop_housing_usage_base
pop_housing_usage_add
pop_housing_usage_mult
pop_amenities_usage_base
pop_amenities_usage_add
pop_amenities_usage_mult
pop_amenities_usage_no_happiness_base
pop_amenities_usage_no_happiness_add
pop_amenities_usage_no_happiness_mult
pop_decline_speed
pop_growth_from_immigration
pop_growth_speed
pop_growth_speed_reduction
pop_assembly_speed
pop_environment_tolerance
pop_government_ethic_attraction
pop_ethics_shift_speed_mult
pop_citizen_happiness
force_disparity_fire_rate_mult
ship_hull_add
ship_hull_mult
ship_hull_regen_add_perc
ship_hull_regen_add_static
ship_hull_damage_mult
ship_armor_add
ship_armor_mult
ship_armor_reduction
ship_armor_regen_add_perc
ship_armor_regen_add_static
ship_armor_damage_mult
ship_armor_penetration_mult
ship_shield_add
ship_shield_mult
ship_shield_reduction
ship_shield_regen_add_perc
ship_shield_regen_add_static
ship_shield_damage_mult
ship_shield_penetration_mult
ship_weapon_damage
ship_weapon_range_mult
ship_orbital_bombardment_mult
ship_fire_rate_mult
ship_home_territory_fire_rate_mult
ship_piracy_suppression_add
ship_piracy_suppression_mult
ship_hyperlane_range_add
ship_ftl_jumpdrive_range_mult
ship_emergency_ftl_min_days_add
ship_emergency_ftl_min_days_mult
ship_disengage_chance_mult
ship_disengage_chance_reduction
ship_evasion_add
ship_evasion_mult
ship_accuracy_add
ship_accuracy_mult
ship_tracking_add
ship_tracking_mult
ship_base_speed_mult
ship_speed_mult
ship_speed_reduction
ship_landing_time_mult
ship_orbit_upkeep_mult
ship_sensor_range_add
ship_windup_mult
ship_winddown_mult
ship_interstellar_speed_mult
ship_emergency_ftl_mult
ship_anomaly_fail_risk
ship_anomaly_research_speed_mult
ship_anomaly_generation_chance_mult
science_ship_survey_speed
ship_starting_experience_add
ship_experience_gain_mult
army_disengage_chance_mult
army_starting_experience_add
army_health
army_morale
army_damage_mult
army_collateral_damage_mult
army_morale_damage_mult
army_defense_morale_mult
army_defense_damage_mult
army_attack_morale_mult
army_attack_damage_mult
army_attack_health_mult
army_defense_health_mult
army_experience_gain_mult
planet_non_artificial_max_districts_add
planet_max_districts_add
planet_max_districts_mult
planet_max_buildings_add
planet_max_branch_office_buildings_add
planet_pop_assembly_add
planet_pop_assembly_mult
planet_pop_assembly_reduction
planet_amenities_add
planet_amenities_mult
planet_amenities_no_happiness_add
planet_amenities_no_happiness_mult
planet_stability_add
planet_crime_add
planet_crime_mult
planet_crime_no_happiness_add
planet_crime_no_happiness_mult
planet_housing_add
planet_housing_mult
planet_sensor_range_add
planet_colony_development_speed_mult
building_time_mult
planet_building_refund_mult
planet_building_build_speed_mult
planet_decision_enact_speed_mult
planet_clear_blocker_time_mult
planet_migration_all_mult
planet_immigration_pull_add
planet_immigration_pull_mult
planet_emigration_push_add
planet_emigration_push_mult
planet_army_build_speed_mult
planet_army_build_time_mult
country_pop_enslaved_mult
country_border_friction_mult
defensive_war_influence_gain_add
all_technology_research_speed
country_physics_tech_research_speed
country_society_tech_research_speed
country_engineering_tech_research_speed
num_tech_alternatives_add
edict_length_mult
country_ship_upgrade_cost_mult
country_leader_pool_size
country_insult_efficiency
country_trade_attractiveness
colony_start_num_pops_add
country_resource_max_add
terraform_speed_mult
country_election_influence_cost_mult
country_trust_growth
country_trust_cap_add
country_synthetic_trust_cap_add
country_organic_trust_cap_add
country_subject_trust_cap_add
country_subject_power_penalty_mult
max_rivalries
max_embassies
ascension_perks_add
modify_species_cost_mult
country_subject_acceptance_add
subject_integration_influence_cost_mult
country_subject_integration_speed_add
country_integration_cooldown_mult
country_vassal_naval_capacity_contribution_mult
subject_tribute_mult
country_subject_technology_sharing_mult
species_leader_exp_gain
ruler_skill_levels
leader_skill_levels
leader_age
admiral_skill_levels
general_skill_levels
governor_skill_levels
scientist_skill_levels
country_starbase_capacity_add
country_starbase_capacity_mult
country_naval_cap_add
country_naval_cap_mult
terraforming_cost_mult
federation_naval_cap_contribution_mult
country_command_limit_add
country_command_limit_mult
planet_orbital_bombardment_damage
country_resettlement_cost_mult
pop_resettlement_cost_mult
pop_defense_armies_add
pop_demotion_time_mult
faction_approval
country_starbase_influence_cost_mult
country_claim_influence_cost_mult
country_war_exhaustion_mult
empire_size_penalty_mult
empire_size_branch_office_mult
tradition_cost_empire_size_mult
tech_cost_empire_size_mult
leader_cost_empire_size_mult
leader_upkeep_empire_size_mult
megastructure_build_speed_add
megastructure_build_speed_mult
country_government_civic_points_add
country_occupation_armies_add
starbase_shipyard_capacity_add
starbase_shipyard_build_cost_mult
starbase_shipyard_build_time_mult
starbase_shipyard_build_speed_mult
starbase_upgrade_cost_mult
starbase_upgrade_time_mult
starbase_upgrade_speed_mult
starbase_defensive_war_ship_build_speed_mult
starbase_building_capacity_add
starbase_building_build_time_mult
starbase_building_build_speed_mult
starbase_module_capacity_add
starbase_module_build_time_mult
starbase_module_build_speed_mult
starbase_defense_platform_capacity_add
starbase_trade_collection_range_add
starbase_trade_protection_range_add
starbase_trade_protection_add
local_trade_protection_add
planet_hyperlane_range_add
country_trade_fee
trade_value_add
trade_value_mult
piracy_growth_mult
piracy_suppression_mult
max_trade_piracy_add
max_trade_piracy_mult
country_admin_cap_add
branch_office_value_mult
slave_market_cost_mult
shipclass_military_build_cost_mult
shipclass_military_build_speed_mult
shipclass_military_hull_mult
shipclass_military_damage_mult
shipclass_military_evasion_add
shipclass_military_disengage_mult
shipclass_constructor_build_cost_mult
shipclass_constructor_build_speed_mult
shipclass_constructor_hull_mult
shipclass_constructor_damage_mult
shipclass_constructor_evasion_add
shipclass_constructor_disengage_mult
shipclass_colonizer_build_cost_mult
shipclass_colonizer_build_speed_mult
shipclass_colonizer_hull_mult
shipclass_colonizer_damage_mult
shipclass_colonizer_evasion_add
shipclass_colonizer_disengage_mult
shipclass_science_ship_build_cost_mult
shipclass_science_ship_build_speed_mult
shipclass_science_ship_hull_mult
shipclass_science_ship_damage_mult
shipclass_science_ship_evasion_add
shipclass_science_ship_disengage_mult
shipclass_transport_build_cost_mult
shipclass_transport_build_speed_mult
shipclass_transport_hull_mult
shipclass_transport_damage_mult
shipclass_transport_evasion_add
shipclass_transport_disengage_mult
shipclass_mining_station_build_cost_mult
shipclass_mining_station_build_speed_mult
shipclass_mining_station_hull_mult
shipclass_mining_station_damage_mult
shipclass_mining_station_evasion_add
shipclass_mining_station_disengage_mult
shipclass_research_station_build_cost_mult
shipclass_research_station_build_speed_mult
shipclass_research_station_hull_mult
shipclass_research_station_damage_mult
shipclass_research_station_evasion_add
shipclass_research_station_disengage_mult
shipclass_military_station_build_cost_mult
shipclass_military_station_build_speed_mult
shipclass_military_station_hull_mult
shipclass_military_station_damage_mult
shipclass_military_station_evasion_add
shipclass_military_station_disengage_mult
shipclass_observation_station_build_cost_mult
shipclass_observation_station_build_speed_mult
shipclass_observation_station_hull_mult
shipclass_observation_station_damage_mult
shipclass_observation_station_evasion_add
shipclass_observation_station_disengage_mult
shipclass_starbase_build_cost_mult
shipclass_starbase_build_speed_mult
shipclass_starbase_hull_mult
shipclass_starbase_damage_mult
shipclass_starbase_evasion_add
shipclass_starbase_disengage_mult
shipclass_military_special_build_cost_mult
shipclass_military_special_build_speed_mult
shipclass_military_special_hull_mult
shipclass_military_special_damage_mult
shipclass_military_special_evasion_add
shipclass_military_special_disengage_mult
weapon_type_energy_weapon_damage_mult
weapon_type_energy_weapon_fire_rate_mult
weapon_type_energy_speed_mult
weapon_type_kinetic_weapon_damage_mult
weapon_type_kinetic_weapon_fire_rate_mult
weapon_type_kinetic_speed_mult
weapon_type_explosive_weapon_damage_mult
weapon_type_explosive_weapon_fire_rate_mult
weapon_type_explosive_speed_mult
weapon_type_strike_craft_weapon_damage_mult
weapon_type_strike_craft_weapon_fire_rate_mult
weapon_type_strike_craft_speed_mult
weapon_type_point_defense_weapon_damage_mult
weapon_type_point_defense_weapon_fire_rate_mult
weapon_type_point_defense_speed_mult
point_defence_weapon_damage_mult
point_defence_weapon_fire_rate_mult
point_defence_speed_mult
small_weapon_damage_mult
small_weapon_fire_rate_mult
small_speed_mult
medium_weapon_damage_mult
medium_weapon_fire_rate_mult
medium_speed_mult
large_weapon_damage_mult
large_weapon_fire_rate_mult
large_speed_mult
torpedo_weapon_damage_mult
torpedo_weapon_fire_rate_mult
torpedo_speed_mult
extra_large_weapon_damage_mult
extra_large_weapon_fire_rate_mult
extra_large_speed_mult
weapon_role_anti_armor_weapon_damage_mult
weapon_role_anti_armor_weapon_fire_rate_mult
weapon_role_anti_armor_speed_mult
weapon_role_anti_shield_weapon_damage_mult
weapon_role_anti_shield_weapon_fire_rate_mult
weapon_role_anti_shield_speed_mult
weapon_role_artillery_weapon_damage_mult
weapon_role_artillery_weapon_fire_rate_mult
weapon_role_artillery_speed_mult
weapon_role_anti_hull_weapon_damage_mult
weapon_role_anti_hull_weapon_fire_rate_mult
weapon_role_anti_hull_speed_mult
weapon_role_point_defense_weapon_damage_mult
weapon_role_point_defense_weapon_fire_rate_mult
weapon_role_point_defense_speed_mult
country_resource_max_time_add
country_resource_max_energy_add
country_resource_max_minerals_add
country_resource_max_food_add
country_resource_max_physics_research_add
country_resource_max_society_research_add
country_resource_max_engineering_research_add
country_resource_max_influence_add
country_resource_max_unity_add
country_resource_max_alloys_add
country_resource_max_consumer_goods_add
country_resource_max_volatile_motes_add
country_resource_max_exotic_gases_add
country_resource_max_rare_crystals_add
country_resource_max_sr_living_metal_add
country_resource_max_sr_zro_add
country_resource_max_sr_dark_matter_add
country_resource_max_nanites_add
country_time_produces_add
country_time_produces_mult
country_energy_produces_add
country_energy_produces_mult
country_minerals_produces_add
country_minerals_produces_mult
country_food_produces_add
country_food_produces_mult
country_physics_research_produces_add
country_physics_research_produces_mult
country_society_research_produces_add
country_society_research_produces_mult
country_engineering_research_produces_add
country_engineering_research_produces_mult
country_influence_produces_add
country_influence_produces_mult
country_unity_produces_add
country_unity_produces_mult
country_alloys_produces_add
country_alloys_produces_mult
country_consumer_goods_produces_add
country_consumer_goods_produces_mult
country_volatile_motes_produces_add
country_volatile_motes_produces_mult
country_exotic_gases_produces_add
country_exotic_gases_produces_mult
country_rare_crystals_produces_add
country_rare_crystals_produces_mult
country_sr_living_metal_produces_add
country_sr_living_metal_produces_mult
country_sr_zro_produces_add
country_sr_zro_produces_mult
country_sr_dark_matter_produces_add
country_sr_dark_matter_produces_mult
country_nanites_produces_add
country_nanites_produces_mult
country_produces_mult
country_base_time_produces_add
country_base_energy_produces_add
country_base_minerals_produces_add
country_base_food_produces_add
country_base_physics_research_produces_add
country_base_society_research_produces_add
country_base_engineering_research_produces_add
country_base_influence_produces_add
country_base_unity_produces_add
country_base_alloys_produces_add
country_base_consumer_goods_produces_add
country_base_volatile_motes_produces_add
country_base_exotic_gases_produces_add
country_base_rare_crystals_produces_add
country_base_sr_living_metal_produces_add
country_base_sr_zro_produces_add
country_base_sr_dark_matter_produces_add
country_base_nanites_produces_add
edicts_time_cost_mult
edicts_energy_cost_mult
edicts_minerals_cost_mult
edicts_food_cost_mult
edicts_physics_research_cost_mult
edicts_society_research_cost_mult
edicts_engineering_research_cost_mult
edicts_influence_cost_mult
edicts_unity_cost_mult
edicts_alloys_cost_mult
edicts_consumer_goods_cost_mult
edicts_volatile_motes_cost_mult
edicts_exotic_gases_cost_mult
edicts_rare_crystals_cost_mult
edicts_sr_living_metal_cost_mult
edicts_sr_zro_cost_mult
edicts_sr_dark_matter_cost_mult
edicts_nanites_cost_mult
edicts_cost_mult
rare_edicts_time_cost_mult
rare_edicts_energy_cost_mult
rare_edicts_minerals_cost_mult
rare_edicts_food_cost_mult
rare_edicts_physics_research_cost_mult
rare_edicts_society_research_cost_mult
rare_edicts_engineering_research_cost_mult
rare_edicts_influence_cost_mult
rare_edicts_unity_cost_mult
rare_edicts_alloys_cost_mult
rare_edicts_consumer_goods_cost_mult
rare_edicts_volatile_motes_cost_mult
rare_edicts_exotic_gases_cost_mult
rare_edicts_rare_crystals_cost_mult
rare_edicts_sr_living_metal_cost_mult
rare_edicts_sr_zro_cost_mult
rare_edicts_sr_dark_matter_cost_mult
rare_edicts_nanites_cost_mult
rare_edicts_cost_mult
campaigns_time_cost_mult
campaigns_energy_cost_mult
campaigns_minerals_cost_mult
campaigns_food_cost_mult
campaigns_physics_research_cost_mult
campaigns_society_research_cost_mult
campaigns_engineering_research_cost_mult
campaigns_influence_cost_mult
campaigns_unity_cost_mult
campaigns_alloys_cost_mult
campaigns_consumer_goods_cost_mult
campaigns_volatile_motes_cost_mult
campaigns_exotic_gases_cost_mult
campaigns_rare_crystals_cost_mult
campaigns_sr_living_metal_cost_mult
campaigns_sr_zro_cost_mult
campaigns_sr_dark_matter_cost_mult
campaigns_nanites_cost_mult
campaigns_cost_mult
starbase_shipyard_build_time_cost_mult
starbase_shipyard_build_energy_cost_mult
starbase_shipyard_build_minerals_cost_mult
starbase_shipyard_build_food_cost_mult
starbase_shipyard_build_physics_research_cost_mult
starbase_shipyard_build_society_research_cost_mult
starbase_shipyard_build_engineering_research_cost_mult
starbase_shipyard_build_influence_cost_mult
starbase_shipyard_build_unity_cost_mult
starbase_shipyard_build_alloys_cost_mult
starbase_shipyard_build_consumer_goods_cost_mult
starbase_shipyard_build_volatile_motes_cost_mult
starbase_shipyard_build_exotic_gases_cost_mult
starbase_shipyard_build_rare_crystals_cost_mult
starbase_shipyard_build_sr_living_metal_cost_mult
starbase_shipyard_build_sr_zro_cost_mult
starbase_shipyard_build_sr_dark_matter_cost_mult
starbase_shipyard_build_nanites_cost_mult
ship_colonizer_cost_mult
ship_colonizer_time_cost_mult
ship_colonizer_energy_cost_mult
ship_colonizer_minerals_cost_mult
ship_colonizer_food_cost_mult
ship_colonizer_physics_research_cost_mult
ship_colonizer_society_research_cost_mult
ship_colonizer_engineering_research_cost_mult
ship_colonizer_influence_cost_mult
ship_colonizer_unity_cost_mult
ship_colonizer_alloys_cost_mult
ship_colonizer_consumer_goods_cost_mult
ship_colonizer_volatile_motes_cost_mult
ship_colonizer_exotic_gases_cost_mult
ship_colonizer_rare_crystals_cost_mult
ship_colonizer_sr_living_metal_cost_mult
ship_colonizer_sr_zro_cost_mult
ship_colonizer_sr_dark_matter_cost_mult
ship_colonizer_nanites_cost_mult
ship_corvette_cost_mult
ship_corvette_time_cost_mult
ship_corvette_energy_cost_mult
ship_corvette_minerals_cost_mult
ship_corvette_food_cost_mult
ship_corvette_physics_research_cost_mult
ship_corvette_society_research_cost_mult
ship_corvette_engineering_research_cost_mult
ship_corvette_influence_cost_mult
ship_corvette_unity_cost_mult
ship_corvette_alloys_cost_mult
ship_corvette_consumer_goods_cost_mult
ship_corvette_volatile_motes_cost_mult
ship_corvette_exotic_gases_cost_mult
ship_corvette_rare_crystals_cost_mult
ship_corvette_sr_living_metal_cost_mult
ship_corvette_sr_zro_cost_mult
ship_corvette_sr_dark_matter_cost_mult
ship_corvette_nanites_cost_mult
ship_destroyer_cost_mult
ship_destroyer_time_cost_mult
ship_destroyer_energy_cost_mult
ship_destroyer_minerals_cost_mult
ship_destroyer_food_cost_mult
ship_destroyer_physics_research_cost_mult
ship_destroyer_society_research_cost_mult
ship_destroyer_engineering_research_cost_mult
ship_destroyer_influence_cost_mult
ship_destroyer_unity_cost_mult
ship_destroyer_alloys_cost_mult
ship_destroyer_consumer_goods_cost_mult
ship_destroyer_volatile_motes_cost_mult
ship_destroyer_exotic_gases_cost_mult
ship_destroyer_rare_crystals_cost_mult
ship_destroyer_sr_living_metal_cost_mult
ship_destroyer_sr_zro_cost_mult
ship_destroyer_sr_dark_matter_cost_mult
ship_destroyer_nanites_cost_mult
ship_cruiser_cost_mult
ship_cruiser_time_cost_mult
ship_cruiser_energy_cost_mult
ship_cruiser_minerals_cost_mult
ship_cruiser_food_cost_mult
ship_cruiser_physics_research_cost_mult
ship_cruiser_society_research_cost_mult
ship_cruiser_engineering_research_cost_mult
ship_cruiser_influence_cost_mult
ship_cruiser_unity_cost_mult
ship_cruiser_alloys_cost_mult
ship_cruiser_consumer_goods_cost_mult
ship_cruiser_volatile_motes_cost_mult
ship_cruiser_exotic_gases_cost_mult
ship_cruiser_rare_crystals_cost_mult
ship_cruiser_sr_living_metal_cost_mult
ship_cruiser_sr_zro_cost_mult
ship_cruiser_sr_dark_matter_cost_mult
ship_cruiser_nanites_cost_mult
ship_battleship_cost_mult
ship_battleship_time_cost_mult
ship_battleship_energy_cost_mult
ship_battleship_minerals_cost_mult
ship_battleship_food_cost_mult
ship_battleship_physics_research_cost_mult
ship_battleship_society_research_cost_mult
ship_battleship_engineering_research_cost_mult
ship_battleship_influence_cost_mult
ship_battleship_unity_cost_mult
ship_battleship_alloys_cost_mult
ship_battleship_consumer_goods_cost_mult
ship_battleship_volatile_motes_cost_mult
ship_battleship_exotic_gases_cost_mult
ship_battleship_rare_crystals_cost_mult
ship_battleship_sr_living_metal_cost_mult
ship_battleship_sr_zro_cost_mult
ship_battleship_sr_dark_matter_cost_mult
ship_battleship_nanites_cost_mult
ship_military_station_small_cost_mult
ship_military_station_small_time_cost_mult
ship_military_station_small_energy_cost_mult
ship_military_station_small_minerals_cost_mult
ship_military_station_small_food_cost_mult
ship_military_station_small_physics_research_cost_mult
ship_military_station_small_society_research_cost_mult
ship_military_station_small_engineering_research_cost_mult
ship_military_station_small_influence_cost_mult
ship_military_station_small_unity_cost_mult
ship_military_station_small_alloys_cost_mult
ship_military_station_small_consumer_goods_cost_mult
ship_military_station_small_volatile_motes_cost_mult
ship_military_station_small_exotic_gases_cost_mult
ship_military_station_small_rare_crystals_cost_mult
ship_military_station_small_sr_living_metal_cost_mult
ship_military_station_small_sr_zro_cost_mult
ship_military_station_small_sr_dark_matter_cost_mult
ship_military_station_small_nanites_cost_mult
ship_science_cost_mult
ship_science_time_cost_mult
ship_science_energy_cost_mult
ship_science_minerals_cost_mult
ship_science_food_cost_mult
ship_science_physics_research_cost_mult
ship_science_society_research_cost_mult
ship_science_engineering_research_cost_mult
ship_science_influence_cost_mult
ship_science_unity_cost_mult
ship_science_alloys_cost_mult
ship_science_consumer_goods_cost_mult
ship_science_volatile_motes_cost_mult
ship_science_exotic_gases_cost_mult
ship_science_rare_crystals_cost_mult
ship_science_sr_living_metal_cost_mult
ship_science_sr_zro_cost_mult
ship_science_sr_dark_matter_cost_mult
ship_science_nanites_cost_mult
ships_time_upkeep_mult
ships_energy_upkeep_mult
ships_minerals_upkeep_mult
ships_food_upkeep_mult
ships_physics_research_upkeep_mult
ships_society_research_upkeep_mult
ships_engineering_research_upkeep_mult
ships_influence_upkeep_mult
ships_unity_upkeep_mult
ships_alloys_upkeep_mult
ships_consumer_goods_upkeep_mult
ships_volatile_motes_upkeep_mult
ships_exotic_gases_upkeep_mult
ships_rare_crystals_upkeep_mult
ships_sr_living_metal_upkeep_mult
ships_sr_zro_upkeep_mult
ships_sr_dark_matter_upkeep_mult
ships_nanites_upkeep_mult
ships_upkeep_mult
stations_time_produces_mult
stations_energy_produces_mult
stations_minerals_produces_mult
stations_food_produces_mult
stations_physics_research_produces_mult
stations_society_research_produces_mult
stations_engineering_research_produces_mult
stations_influence_produces_mult
stations_unity_produces_mult
stations_alloys_produces_mult
stations_consumer_goods_produces_mult
stations_volatile_motes_produces_mult
stations_exotic_gases_produces_mult
stations_rare_crystals_produces_mult
stations_sr_living_metal_produces_mult
stations_sr_zro_produces_mult
stations_sr_dark_matter_produces_mult
stations_nanites_produces_mult
stations_produces_mult
station_gatherers_time_cost_mult
station_gatherers_time_produces_mult
station_gatherers_energy_cost_mult
station_gatherers_energy_produces_mult
station_gatherers_minerals_cost_mult
station_gatherers_minerals_produces_mult
station_gatherers_food_cost_mult
station_gatherers_food_produces_mult
station_gatherers_physics_research_cost_mult
station_gatherers_physics_research_produces_mult
station_gatherers_society_research_cost_mult
station_gatherers_society_research_produces_mult
station_gatherers_engineering_research_cost_mult
station_gatherers_engineering_research_produces_mult
station_gatherers_influence_cost_mult
station_gatherers_influence_produces_mult
station_gatherers_unity_cost_mult
station_gatherers_unity_produces_mult
station_gatherers_alloys_cost_mult
station_gatherers_alloys_produces_mult
station_gatherers_consumer_goods_cost_mult
station_gatherers_consumer_goods_produces_mult
station_gatherers_volatile_motes_cost_mult
station_gatherers_volatile_motes_produces_mult
station_gatherers_exotic_gases_cost_mult
station_gatherers_exotic_gases_produces_mult
station_gatherers_rare_crystals_cost_mult
station_gatherers_rare_crystals_produces_mult
station_gatherers_sr_living_metal_cost_mult
station_gatherers_sr_living_metal_produces_mult
station_gatherers_sr_zro_cost_mult
station_gatherers_sr_zro_produces_mult
station_gatherers_sr_dark_matter_cost_mult
station_gatherers_sr_dark_matter_produces_mult
station_gatherers_nanites_cost_mult
station_gatherers_nanites_produces_mult
station_gatherers_cost_mult
station_gatherers_produces_mult
station_researchers_time_produces_mult
station_researchers_energy_produces_mult
station_researchers_minerals_produces_mult
station_researchers_food_produces_mult
station_researchers_physics_research_produces_mult
station_researchers_society_research_produces_mult
station_researchers_engineering_research_produces_mult
station_researchers_influence_produces_mult
station_researchers_unity_produces_mult
station_researchers_alloys_produces_mult
station_researchers_consumer_goods_produces_mult
station_researchers_volatile_motes_produces_mult
station_researchers_exotic_gases_produces_mult
station_researchers_rare_crystals_produces_mult
station_researchers_sr_living_metal_produces_mult
station_researchers_sr_zro_produces_mult
station_researchers_sr_dark_matter_produces_mult
station_researchers_nanites_produces_mult
station_researchers_produces_mult
starbases_time_upkeep_mult
starbases_energy_upkeep_mult
starbases_minerals_upkeep_mult
starbases_food_upkeep_mult
starbases_physics_research_upkeep_mult
starbases_society_research_upkeep_mult
starbases_engineering_research_upkeep_mult
starbases_influence_upkeep_mult
starbases_unity_upkeep_mult
starbases_alloys_upkeep_mult
starbases_consumer_goods_upkeep_mult
starbases_volatile_motes_upkeep_mult
starbases_exotic_gases_upkeep_mult
starbases_rare_crystals_upkeep_mult
starbases_sr_living_metal_upkeep_mult
starbases_sr_zro_upkeep_mult
starbases_sr_dark_matter_upkeep_mult
starbases_nanites_upkeep_mult
starbases_upkeep_mult
starbase_outpost_cost_mult
starbase_outpost_time_cost_mult
starbase_outpost_energy_cost_mult
starbase_outpost_minerals_cost_mult
starbase_outpost_food_cost_mult
starbase_outpost_physics_research_cost_mult
starbase_outpost_society_research_cost_mult
starbase_outpost_engineering_research_cost_mult
starbase_outpost_influence_cost_mult
starbase_outpost_unity_cost_mult
starbase_outpost_alloys_cost_mult
starbase_outpost_consumer_goods_cost_mult
starbase_outpost_volatile_motes_cost_mult
starbase_outpost_exotic_gases_cost_mult
starbase_outpost_rare_crystals_cost_mult
starbase_outpost_sr_living_metal_cost_mult
starbase_outpost_sr_zro_cost_mult
starbase_outpost_sr_dark_matter_cost_mult
starbase_outpost_nanites_cost_mult
starbase_buildings_time_cost_mult
starbase_buildings_energy_cost_mult
starbase_buildings_minerals_cost_mult
starbase_buildings_food_cost_mult
starbase_buildings_physics_research_cost_mult
starbase_buildings_society_research_cost_mult
starbase_buildings_engineering_research_cost_mult
starbase_buildings_influence_cost_mult
starbase_buildings_unity_cost_mult
starbase_buildings_alloys_cost_mult
starbase_buildings_consumer_goods_cost_mult
starbase_buildings_volatile_motes_cost_mult
starbase_buildings_exotic_gases_cost_mult
starbase_buildings_rare_crystals_cost_mult
starbase_buildings_sr_living_metal_cost_mult
starbase_buildings_sr_zro_cost_mult
starbase_buildings_sr_dark_matter_cost_mult
starbase_buildings_nanites_cost_mult
starbase_buildings_cost_mult
starbase_modules_time_cost_mult
starbase_modules_energy_cost_mult
starbase_modules_minerals_cost_mult
starbase_modules_food_cost_mult
starbase_modules_physics_research_cost_mult
starbase_modules_society_research_cost_mult
starbase_modules_engineering_research_cost_mult
starbase_modules_influence_cost_mult
starbase_modules_unity_cost_mult
starbase_modules_alloys_cost_mult
starbase_modules_consumer_goods_cost_mult
starbase_modules_volatile_motes_cost_mult
starbase_modules_exotic_gases_cost_mult
starbase_modules_rare_crystals_cost_mult
starbase_modules_sr_living_metal_cost_mult
starbase_modules_sr_zro_cost_mult
starbase_modules_sr_dark_matter_cost_mult
starbase_modules_nanites_cost_mult
starbase_modules_cost_mult
planet_structures_time_cost_mult
planet_structures_time_upkeep_mult
planet_structures_energy_cost_mult
planet_structures_energy_upkeep_mult
planet_structures_minerals_cost_mult
planet_structures_minerals_upkeep_mult
planet_structures_food_cost_mult
planet_structures_food_upkeep_mult
planet_structures_physics_research_cost_mult
planet_structures_physics_research_upkeep_mult
planet_structures_society_research_cost_mult
planet_structures_society_research_upkeep_mult
planet_structures_engineering_research_cost_mult
planet_structures_engineering_research_upkeep_mult
planet_structures_influence_cost_mult
planet_structures_influence_upkeep_mult
planet_structures_unity_cost_mult
planet_structures_unity_upkeep_mult
planet_structures_alloys_cost_mult
planet_structures_alloys_upkeep_mult
planet_structures_consumer_goods_cost_mult
planet_structures_consumer_goods_upkeep_mult
planet_structures_volatile_motes_cost_mult
planet_structures_volatile_motes_upkeep_mult
planet_structures_exotic_gases_cost_mult
planet_structures_exotic_gases_upkeep_mult
planet_structures_rare_crystals_cost_mult
planet_structures_rare_crystals_upkeep_mult
planet_structures_sr_living_metal_cost_mult
planet_structures_sr_living_metal_upkeep_mult
planet_structures_sr_zro_cost_mult
planet_structures_sr_zro_upkeep_mult
planet_structures_sr_dark_matter_cost_mult
planet_structures_sr_dark_matter_upkeep_mult
planet_structures_nanites_cost_mult
planet_structures_nanites_upkeep_mult
planet_structures_cost_mult
planet_structures_upkeep_mult
planet_buildings_time_cost_mult
planet_buildings_time_upkeep_mult
planet_buildings_energy_cost_mult
planet_buildings_energy_upkeep_mult
planet_buildings_minerals_cost_mult
planet_buildings_minerals_upkeep_mult
planet_buildings_food_cost_mult
planet_buildings_food_upkeep_mult
planet_buildings_physics_research_cost_mult
planet_buildings_physics_research_upkeep_mult
planet_buildings_society_research_cost_mult
planet_buildings_society_research_upkeep_mult
planet_buildings_engineering_research_cost_mult
planet_buildings_engineering_research_upkeep_mult
planet_buildings_influence_cost_mult
planet_buildings_influence_upkeep_mult
planet_buildings_unity_cost_mult
planet_buildings_unity_upkeep_mult
planet_buildings_alloys_cost_mult
planet_buildings_alloys_upkeep_mult
planet_buildings_consumer_goods_cost_mult
planet_buildings_consumer_goods_upkeep_mult
planet_buildings_volatile_motes_cost_mult
planet_buildings_volatile_motes_upkeep_mult
planet_buildings_exotic_gases_cost_mult
planet_buildings_exotic_gases_upkeep_mult
planet_buildings_rare_crystals_cost_mult
planet_buildings_rare_crystals_upkeep_mult
planet_buildings_sr_living_metal_cost_mult
planet_buildings_sr_living_metal_upkeep_mult
planet_buildings_sr_zro_cost_mult
planet_buildings_sr_zro_upkeep_mult
planet_buildings_sr_dark_matter_cost_mult
planet_buildings_sr_dark_matter_upkeep_mult
planet_buildings_nanites_cost_mult
planet_buildings_nanites_upkeep_mult
planet_buildings_cost_mult
planet_buildings_upkeep_mult
planet_branch_offices_time_cost_mult
planet_branch_offices_time_produces_add
planet_branch_offices_energy_cost_mult
planet_branch_offices_energy_produces_add
planet_branch_offices_minerals_cost_mult
planet_branch_offices_minerals_produces_add
planet_branch_offices_food_cost_mult
planet_branch_offices_food_produces_add
planet_branch_offices_physics_research_cost_mult
planet_branch_offices_physics_research_produces_add
planet_branch_offices_society_research_cost_mult
planet_branch_offices_society_research_produces_add
planet_branch_offices_engineering_research_cost_mult
planet_branch_offices_engineering_research_produces_add
planet_branch_offices_influence_cost_mult
planet_branch_offices_influence_produces_add
planet_branch_offices_unity_cost_mult
planet_branch_offices_unity_produces_add
planet_branch_offices_alloys_cost_mult
planet_branch_offices_alloys_produces_add
planet_branch_offices_consumer_goods_cost_mult
planet_branch_offices_consumer_goods_produces_add
planet_branch_offices_volatile_motes_cost_mult
planet_branch_offices_volatile_motes_produces_add
planet_branch_offices_exotic_gases_cost_mult
planet_branch_offices_exotic_gases_produces_add
planet_branch_offices_rare_crystals_cost_mult
planet_branch_offices_rare_crystals_produces_add
planet_branch_offices_sr_living_metal_cost_mult
planet_branch_offices_sr_living_metal_produces_add
planet_branch_offices_sr_zro_cost_mult
planet_branch_offices_sr_zro_produces_add
planet_branch_offices_sr_dark_matter_cost_mult
planet_branch_offices_sr_dark_matter_produces_add
planet_branch_offices_nanites_cost_mult
planet_branch_offices_nanites_produces_add
planet_branch_offices_cost_mult
planet_districts_time_cost_mult
planet_districts_time_upkeep_mult
planet_districts_energy_cost_mult
planet_districts_energy_upkeep_mult
planet_districts_minerals_cost_mult
planet_districts_minerals_upkeep_mult
planet_districts_food_cost_mult
planet_districts_food_upkeep_mult
planet_districts_physics_research_cost_mult
planet_districts_physics_research_upkeep_mult
planet_districts_society_research_cost_mult
planet_districts_society_research_upkeep_mult
planet_districts_engineering_research_cost_mult
planet_districts_engineering_research_upkeep_mult
planet_districts_influence_cost_mult
planet_districts_influence_upkeep_mult
planet_districts_unity_cost_mult
planet_districts_unity_upkeep_mult
planet_districts_alloys_cost_mult
planet_districts_alloys_upkeep_mult
planet_districts_consumer_goods_cost_mult
planet_districts_consumer_goods_upkeep_mult
planet_districts_volatile_motes_cost_mult
planet_districts_volatile_motes_upkeep_mult
planet_districts_exotic_gases_cost_mult
planet_districts_exotic_gases_upkeep_mult
planet_districts_rare_crystals_cost_mult
planet_districts_rare_crystals_upkeep_mult
planet_districts_sr_living_metal_cost_mult
planet_districts_sr_living_metal_upkeep_mult
planet_districts_sr_zro_cost_mult
planet_districts_sr_zro_upkeep_mult
planet_districts_sr_dark_matter_cost_mult
planet_districts_sr_dark_matter_upkeep_mult
planet_districts_nanites_cost_mult
planet_districts_nanites_upkeep_mult
planet_districts_cost_mult
planet_districts_upkeep_mult
planet_jobs_slave_produces_mult
planet_jobs_slave_time_produces_mult
planet_jobs_slave_energy_produces_mult
planet_jobs_slave_minerals_produces_mult
planet_jobs_slave_food_produces_mult
planet_jobs_slave_physics_research_produces_mult
planet_jobs_slave_society_research_produces_mult
planet_jobs_slave_engineering_research_produces_mult
planet_jobs_slave_influence_produces_mult
planet_jobs_slave_unity_produces_mult
planet_jobs_slave_alloys_produces_mult
planet_jobs_slave_consumer_goods_produces_mult
planet_jobs_slave_volatile_motes_produces_mult
planet_jobs_slave_exotic_gases_produces_mult
planet_jobs_slave_rare_crystals_produces_mult
planet_jobs_slave_sr_living_metal_produces_mult
planet_jobs_slave_sr_zro_produces_mult
planet_jobs_slave_sr_dark_matter_produces_mult
planet_jobs_slave_nanites_produces_mult
planet_jobs_worker_produces_mult
planet_jobs_worker_time_produces_mult
planet_jobs_worker_energy_produces_mult
planet_jobs_worker_minerals_produces_mult
planet_jobs_worker_food_produces_mult
planet_jobs_worker_physics_research_produces_mult
planet_jobs_worker_society_research_produces_mult
planet_jobs_worker_engineering_research_produces_mult
planet_jobs_worker_influence_produces_mult
planet_jobs_worker_unity_produces_mult
planet_jobs_worker_alloys_produces_mult
planet_jobs_worker_consumer_goods_produces_mult
planet_jobs_worker_volatile_motes_produces_mult
planet_jobs_worker_exotic_gases_produces_mult
planet_jobs_worker_rare_crystals_produces_mult
planet_jobs_worker_sr_living_metal_produces_mult
planet_jobs_worker_sr_zro_produces_mult
planet_jobs_worker_sr_dark_matter_produces_mult
planet_jobs_worker_nanites_produces_mult
planet_jobs_specialist_produces_mult
planet_jobs_specialist_time_produces_mult
planet_jobs_specialist_energy_produces_mult
planet_jobs_specialist_minerals_produces_mult
planet_jobs_specialist_food_produces_mult
planet_jobs_specialist_physics_research_produces_mult
planet_jobs_specialist_society_research_produces_mult
planet_jobs_specialist_engineering_research_produces_mult
planet_jobs_specialist_influence_produces_mult
planet_jobs_specialist_unity_produces_mult
planet_jobs_specialist_alloys_produces_mult
planet_jobs_specialist_consumer_goods_produces_mult
planet_jobs_specialist_volatile_motes_produces_mult
planet_jobs_specialist_exotic_gases_produces_mult
planet_jobs_specialist_rare_crystals_produces_mult
planet_jobs_specialist_sr_living_metal_produces_mult
planet_jobs_specialist_sr_zro_produces_mult
planet_jobs_specialist_sr_dark_matter_produces_mult
planet_jobs_specialist_nanites_produces_mult
planet_jobs_simple_drone_produces_mult
planet_jobs_simple_drone_time_produces_mult
planet_jobs_simple_drone_energy_produces_mult