-
Notifications
You must be signed in to change notification settings - Fork 0
/
old20221110rulingpartysupport.txt
2525 lines (2181 loc) · 65.9 KB
/
old20221110rulingpartysupport.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
old20221110rulingpartysupport:
#GFM
spoil_system = { active = yes
local_ruling_party_support = 2.0
pop_consciousness_modifier = 0.01
icon = 8 trigger = {
NOT = { owner = { vote_franschise = none_voting } }
is_colonial = no
}
}
#1701mod spoil_system = { active = yes
local_ruling_party_support = 2.0
icon = 7
trigger = {
}
}man_of_the_people = {
global_pop_militancy_modifier = -0.02
global_pop_consciousness_modifier = 0.02
ruling_party_support = 1
icon = 1 #alsoAoE
}
great_statesman = {
prestige = 0.01
diplomatic_points_modifier = 0.25
ruling_party_support = 0.5
badboy = -0.05
icon = 1 #alsoAoE
}
great_reformer = {
global_pop_militancy_modifier = -0.02
global_pop_consciousness_modifier = 0.04
ruling_party_support = 0.2
icon = 1 #alsoAoE
}
#disabledinNEM
support_the_government = {
pop_militancy_modifier = -0.01
local_ruling_party_support = 0.5
icon = 19
}
hre_member = {
icon = 17
local_ruling_party_support = 0.1
}
ch_rel = {
icon = 17
local_ruling_party_support = 0.1
}
carl_rex = {
icon = 17
local_ruling_party_support = 0.1
land_organisation = 0.1
naval_organisation = 0.1
factory_throughput = 0.1
rgo_throughput = 0.1
}
#criandHGCandGFMandBAIandUlt
totalitarian_system = {
suppression_points_modifier = 3
ruling_party_support = 3
literacy_con_impact = -0.5
education_efficiency_modifier = 0.05
global_pop_consciousness_modifier = -0.1
global_pop_militancy_modifier = -0.1
issue_change_speed = -3
research_points_modifier = -0.1
badboy = 0.01
icon = 7
}
cult_of_personality = {
ruling_party_support = 2
global_pop_consciousness_modifier = -0.1
icon = 13
}
#AoEandNEM
totalitarian_system = {
suppression_points_modifier = 2
ruling_party_support = 2
literacy_con_impact = -0.3
education_efficiency_modifier = 0.02
global_pop_consciousness_modifier = -0.05
global_pop_militancy_modifier = -0.05
issue_change_speed = -2
research_points_modifier = -0.05
icon = 7
}
cult_of_personality = {
ruling_party_support = 2
global_pop_consciousness_modifier = -0.05
icon = 13
}
rivera_reforms = {
local_ruling_party_support = 1.0
pop_militancy_modifier = -0.1
pop_consciousness_modifier = -0.2
icon = 19
}
caudillo_leaders = {
tax_efficiency = 0.3
mobilisation_size = 0.02
supply_consumption = -0.1
ruling_party_support = 0.3
min_military_spending = 0.25
icon = 1
}
pancasila = {
assimilation_rate = 0.1
core_pop_militancy_modifier = -0.1
ruling_party_support = 0.1
icon = 5
}
camillo_cavour = {
prestige = 0.01
diplomatic_points_modifier = 0.25
influence_modifier = 0.15
ruling_party_support = 0.25
industry_tech_research_bonus = 0.05
core_pop_militancy_modifier = -0.01
badboy = -0.01
icon = 17
}
otto_von_bismarck = {
prestige = 0.02
core_pop_militancy_modifier = -0.05
diplomatic_points_modifier = 0.25
influence_modifier = 0.2
ruling_party_support = 0.35
badboy = -0.05
icon = 17
}louis_napoleon_iii = {
prestige = 0.02
ruling_party_support = 1.0
core_pop_militancy_modifier = -0.05
core_pop_consciousness_modifier = -0.05
land_organisation = -0.05
icon = 17
}
#MDL2021 #support_the_government = {
# pop_militancy_modifier = -0.01
# local_ruling_party_support = 0.5
# icon = 19
#}#alsoinGFMHFMmodandTGC as ## Netherlands Flavor ##
thorbecke_reforms = {
ruling_party_support = 0.05
core_pop_militancy_modifier = -0.02
core_pop_consciousness_modifier = -0.01
icon = 7
}
war_minister_boulanger = {
mobilisation_size = 0.01
land_unit_start_experience = 5
ruling_party_support = 0.05
icon = 17
}
yuan_shikai = {
prestige = 0.01
ruling_party_support = 0.25
supply_consumption = -0.15
land_organisation = 0.05
naval_organisation = 0.05
org_regain = 0.05
administrative_efficiency_modifier = 0.05
icon = 17
}
gustav_iii = {
army_tech_research_bonus = 0.05
ruling_party_support = 0.35
influence_modifier = 0.2
global_pop_consciousness_modifier = 0.03
icon = 13
}
swedish_absolutism = {
ruling_party_support = 0.35
influence_modifier = 0.2
icon = 7
}
peter_the_great = {
culture_tech_research_bonus = 0.1
navy_tech_research_bonus = 0.1
research_points = 0.25
ruling_party_support = 0.35
bad_badboy = -0.05
education_efficiency_modifier = 0.15
prestige = 0.08
icon = 13
}
catharine_the_great = {
culture_tech_research_bonus = 0.1
diplomatic_points_modifier = 0.25
influence_modifier = 0.2
bad_badboy = -0.05
ruling_party_support = 0.35
prestige = 0.05
icon = 13
}
nakaz = {
administrative_efficiency_modifier = 0.05
ruling_party_support = 0.05
tax_efficiency = 0.05
icon = 5
}
maria_theresa = {
culture_tech_research_bonus = 0.1
influence_modifier = 0.2
ruling_party_support = 0.35
prestige = 0.05
icon = 13
}
louis_grande = {
influence_modifier = 0.2
ruling_party_support = 0.35
bad_badboy = -0.05
global_pop_militancy_modifier = -0.02
diplomatic_points_modifier = 0.05
supply_consumption = -0.05
prestige = 0.05
icon = 13
}
frederick_grosse = {
army_tech_research_bonus = 0.1
culture_tech_research_bonus = 0.05
diplomatic_points_modifier = 0.25
influence_modifier = 0.2
bad_badboy = -0.05
global_pop_militancy_modifier = -0.02
ruling_party_support = 0.35
prestige = 0.06
icon = 13
}
peasant_in_government = {
influence_modifier = -0.2
ruling_party_support = 0.35
icon = 18
}
direct_control = {
pop_militancy_modifier = -0.5
local_ruling_party_support = 0.1
local_RGO_throughput = 0.1
local_factory_output = 0.1
immigrant_attract = 0.25
icon = 3
}
constitutio_criminalis_theresiana = {
core_pop_militancy_modifier = -0.1
global_assimilation_rate = 0.05
social_reform_desire = -0.1
prestige = 0.01
ruling_party_support = 0.05
icon = 17
}
polish_absolutism = {
ruling_party_support = 0.004
icon = 17
}
rights_of_man = {
global_pop_militancy_modifier = -0.01
global_pop_consciousness_modifier = 0.04
global_immigrant_attract = 0.1
global_assimilation_rate = 0.1
non_accepted_pop_consciousness_modifier = 0.2
ruling_party_support = 0.05
icon = 3
}
the_safeheaven_for_liberalism = {
global_pop_militancy_modifier = -0.01
global_pop_consciousness_modifier = 0.002
global_assimilation_rate = 0.1
ruling_party_support = 0.005
global_immigrant_attract = 2
}
orangist_domination = {
bad_badboy = -0.05
ruling_party_support = 0.35
prestige = 0.05
global_pop_consciousness_modifier = 0.01
icon = 1
}
napoleon_bonaparte = {
army_organisation = 0.15
org_regain = 0.5
supply_consumption = 0.35
core_pop_consciousness_modifier = -0.04
prestige = 0.05
ruling_party_support = 0.15
cb_generation_speed_modifier = -0.15
icon = 13
}
jacobite_absolutism = {
prestige = 0.01
literacy_con_impact = -0.15
ruling_party_support = 0.05
icon = 13
}
mameluke_influence_egypt = {
local_ruling_party_support = 0.1
local_artisan_output = -0.1
non_accepted_pop_consciousness_modifier = -0.1
non_accepted_pop_militancy_modifier = -0.1
icon = 14
}
salutary_neglect = {
local_artisan_output = -0.05
local_factory_throughput = -0.1
local_RGO_output = -0.15
local_RGO_throughput = -0.15
local_ruling_party_support = 0.15
pop_militancy_modifier = -0.1
pop_consciousness_modifier = -0.1
icon = 14
}
nv_autocracy = {
literacy_con_impact = -0.2
core_pop_militancy_modifier = -0.01
ruling_party_support = 0.3
political_reform_desire = -0.05
social_reform_desire = -0.05
mobilisation_size = 0.01
mobilisation_economy_impact = 1.1
}
nv_tradition = {
research_points_modifier = -0.1
global_pop_militancy_modifier = -0.01
global_pop_consciousness_modifier = -0.01
social_reform_desire = -0.2
issue_change_speed = -0.2
ruling_party_support = 0.25
mobilisation_size = 0.001
mobilisation_economy_impact = 1.0
}
#alsoinNEM
nv_autocracy = {
literacy_con_impact = -0.2
core_pop_militancy_modifier = -0.01
ruling_party_support = 0.3
political_reform_desire = -0.05
mobilisation_size = 0.045
mobilisation_economy_impact = 1.0
}nv_tradition = {
research_points_modifier = -0.1
global_pop_militancy_modifier = -0.01
social_reform_desire = -0.2
issue_change_speed = -0.2
ruling_party_support = 0.25
mobilisation_size = 0.04
mobilisation_economy_impact = 1.0
}#cri
cult_of_capital = {
ruling_party_support = 0.5
global_pop_consciousness_modifier = -0.02
global_pop_militancy_modifier = -0.02
literacy_con_impact = -0.1
factory_output = 0.02
factory_input = -0.02
artisan_throughput = 0.15
education_efficiency_modifier = -0.15
global_immigrant_attract = 0.08
icon = 5
}
#CWE
vote_rigging_crime = {
active = yes
local_ruling_party_support = 0.5
icon = 11
trigger = {
is_colonial = no
NOT = { crime_fighting = 0.70 }
country = { election = yes }
}}
#andGFMtoo government_propaganda = {
literacy_con_impact = -0.20
issue_change_speed = -0.20
ruling_party_support = 0.2
icon = 5
}
vts_default = {
factory_throughput = -0.025
RGO_output = -0.025
loan_interest = 0.50
import_cost = 0.20
factory_cost = 0.20
factory_owner_cost = 0.020
ruling_party_support = 0.25
non_accepted_pop_consciousness_modifier = -0.1
non_accepted_pop_militancy_modifier = -0.1
icon = 12
}
new_capital = {
assimilation_rate = 0.25
immigrant_attract = 0.50
life_rating = 0.25
local_factory_input = -0.10
local_ruling_party_support = 0.25
local_artisan_output = 0.5
icon = 15
}
media_conspiracy1 = {
ruling_party_support = 0.25
icon = 13
}
internet_owner = {
factory_throughput = 0.010
prestige = 0.02
ruling_party_support = 0.10
icon = 5
}
### Handover ###territory_talk = {
ruling_party_support = 0.25
icon = 5
}
#byNEMterritory_talk = {
ruling_party_support = 0.15
icon = 5
}
### Crisis Summits ###crisis_talk = {
badboy = -0.01
ruling_party_support = 0.25
icon = 7
}
peace_region = {
local_ruling_party_support = 0.25
immigrant_attract = 0.10
pop_militancy_modifier = -0.01
icon = 9
}
### High Powered Computing ###
hcplow = {
research_points_modifier = 0.2
tax_efficiency = -0.03
global_immigrant_attract = 0.25
global_assimilation_rate = 0.1
issue_change_speed = 0.1
ruling_party_support = 0.25
icon = 17
}
### Aerial Bombardment & Occupation Damage ###aerial_bombed = {
immigrant_push = 0.10
local_artisan_output = -0.50
local_factory_throughput = -0.10
local_repair = -0.50
local_ruling_party_support = 0.25
local_ship_build = 0.50
population_growth = -0.001
local_factory_input = 0.2
icon = 18
}
ban_social_media = {
issue_change_speed = -0.8
ruling_party_support = 0.25
icon = 4
}
### Special Drawing Rights ###
cur_mani_timer = {
prestige = 0.05
ruling_party_support = 0.20
icon = 5
}
### Financial Stimulus ###recent_financial_stimulus = {
factory_throughput = 0.25
ruling_party_support = 0.25
factory_owner_cost = -0.025
import_cost = -0.25
tax_efficiency = 0.05
goods_demand = 0.2
icon = 9
}
### Banking Regulations ###
bkrmedium = {
tax_efficiency = 0.05
factory_output = -0.05
ruling_party_support = 0.10
social_reform_desire = 0.10
rich_income_modifier = 0.05
middle_income_modifier = 0.05
poor_income_modifier = -0.10
icon = 10
}
were_all_republicans = {
ruling_party_support = 1.0
pop_consciousness_modifier = -0.1
}
### Taiwanese White Terror ###kmt_white_terror = {
social_reform_desire = -0.30
political_reform_desire = 0.50
ruling_party_support = 0.20
factory_input = -0.010
factory_throughput = 0.0125
non_accepted_pop_militancy_modifier = 0.02
icon = 18
}
spy_medium = {
global_assimilation_rate = -0.1
non_accepted_pop_militancy_modifier = -0.025
ruling_party_support = 0.2
core_pop_militancy_modifier = -0.05
suppression_points_modifier = 0.25
icon = 16
}
spy_high_gp = {
global_assimilation_rate = 0.2
ruling_party_support = 0.2
non_accepted_pop_militancy_modifier = -0.1
core_pop_militancy_modifier = -0.1
icon = 16
}
### OPEC ###
opecoption1 = {
ruling_party_support = 0.20
icon = 7
}
opecoption2 = {
ruling_party_support = 0.10
icon = 7
}
opecoption3 = {
ruling_party_support = 0.05
icon = 7
}
commonwealthoption4 = {
ruling_party_support = 0.20
core_pop_consciousness_modifier = 0.05
core_pop_militancy_modifier = 0.05
icon = 7
}
francophoneoption4 = {
ruling_party_support = 0.20
core_pop_consciousness_modifier = 0.05
core_pop_militancy_modifier = 0.05
icon = 7
}
cisoption4 = {
ruling_party_support = 0.20
core_pop_consciousness_modifier = 0.05
core_pop_militancy_modifier = 0.05
icon = 7
}
call_for_support_against_democracy = { ruling_party_support = 0.2 icon = 14 }
nv_islamic = {
war_exhaustion = -2
literacy_con_impact = -0.3
research_points_modifier = -0.1
core_pop_militancy_modifier = -0.02
social_reform_desire = -0.1
political_reform_desire = -0.1
issue_change_speed = -0.2
ruling_party_support = 0.4
mobilisation_size = 0.04
mobilisation_economy_impact = -0.25
political_reform_desire = -0.1
global_population_growth = 0.001
}
elchigh = {
trigger = {
has_country_flag = elchigh
election = yes
}
social_reform_desire = 0.25
ruling_party_support = 0.1
}elcmedium = {
trigger = {
has_country_flag = elcmedium
election = yes
}
political_reform_desire = 0.25
ruling_party_support = 0.1
}
internet_low = { trigger = {
has_global_flag = internet_low
NOT = { publishing_rights = censored_publishing }
}ruling_party_support = 0.2
issue_change_speed = -0.25
global_pop_consciousness_modifier = -0.02
global_pop_militancy_modifier = 0.02
}
1999_frenzy = {
trigger = {
year = 1999
NOT = { year = 2000 }
}
factory_throughput = 0.0125
population_growth = 0.001
ruling_party_support = 0.10
issue_change_speed = 0.20
}
### Wartime Legal Restictions ###
lawno = {
trigger = {
has_country_flag = lawno
war = yes
is_mobilised = yes
}
ruling_party_support = 0.50
icon = 18
}
#GFM
santa_ana_rule = {
ruling_party_support = 0.1
political_reform_desire = -0.05
org_regain = -0.05
icon = 5
}
rheinbegradigt = {
local_factory_throughput = 0.5
local_RGO_throughput = 0.5
local_ruling_party_support = 0.2
icon = 15
}
wilhelminism = {
prestige = 0.05
core_pop_militancy_modifier = -0.02
core_pop_consciousness_modifier = 0.03
ruling_party_support = 0.75
icon = 17
}
irish_scottish_suzerainty = {
local_factory_throughput = -0.5
local_rgo_throughput = -0.25
immigrant_attract = 0.3
local_ruling_party_support = 0.3
icon = 9
}
capital_gaelic_suzerainty = {
local_factory_throughput = -0.5
local_rgo_throughput = -0.25
immigrant_attract = 0.6
local_ruling_party_support = 0.6
icon = 9
}
democratic_nation = {
trigger = {
exists = yes
slavery = no_slavery
vote_franschise = universal_voting
upper_house_composition = population_equal_weight
voting_system = proportional_representation
public_meetings = yes_meeting
press_rights = free_press
trade_unions = all_trade_unions
political_parties = secret_ballots
border_policy = open_borders
debt_law = bankruptcy
citizens_rights = all_voting_pops
}
global_immigrant_attract = 0.75
ruling_party_support = 0.1
core_pop_militancy_modifier = -0.1
research_points_modifier = 0.05
}
leadership_principle_modifier = {
trigger = {
#year = 1837
invention = the_leadership_principle
government = fascist_dictatorship
}
land_attack_modifier = 0.05
ruling_party_support = 0.2
leadership_modifier = 0.25
factory_throughput = 0.1
cb_generation_speed_modifier = 0.1
RGO_throughput = -0.1
army_tech_research_bonus = -0.1
navy_tech_research_bonus = -0.1
commerce_tech_research_bonus = -0.1
culture_tech_research_bonus = -0.1
industry_tech_research_bonus = -0.1
issue_change_speed = -0.25
icon = 17
}
#NEM
guarantee_the_constitution = {
ruling_party_support = 0.1
core_pop_militancy_modifier = -0.02 icon = 5
}
bonapartism = {
issue_change_speed = -0.10
ruling_party_support = 0.15 icon = 5
}
3rd_french_empire = {
issue_change_speed = -0.15
ruling_party_support = 0.2 icon = 5
}
patriotism_over_internationalism = {
ruling_party_support = 0.5
suppression_points_modifier = 0.4
core_pop_militancy_modifier = -0.03
land_organisation = 0.15
icon = 3
}
power_to_the_tsar = {
ruling_party_support = 0.1
suppression_points_modifier = 0.2
core_pop_militancy_modifier = 0.02
icon = 18
}
promote_bulgarian_nationalism = {
ruling_party_support = 0.5
suppression_points_modifier = 0.4
core_pop_militancy_modifier = -0.03
land_organisation = 0.15
icon = 17
}
fascist_youth = {
literacy_con_impact = -0.05
leadership_modifier = 0.05
tax_efficiency = -0.1
ruling_party_support = 0.1
icon = 16
}
ideological_fanaticism = {
research_points_modifier = -0.02
ruling_party_support = 0.2
literacy_con_impact = -0.1
education_efficiency_modifier = 0.01
icon = 5
}
reason_of_our_fight = {
suppression_points_modifier = 0.5
ruling_party_support = 0.1
global_pop_consciousness_modifier = -0.01
global_pop_militancy_modifier = -0.01
icon = 7
}
a_new_germany = {
ruling_party_support = 0.1
icon = 16
}
vittoria_mutilata = {
prestige = 0.05
suppression_points_modifier = 0.1
core_pop_militancy_modifier = 0.01
ruling_party_support = 0.05
land_unit_start_experience = 5
icon = 15
}
great_patriotic_spirit = {
prestige = 0.1
ruling_party_support = 0.05
suppression_points_modifier = 0.1
core_pop_militancy_modifier = -0.02
icon = 15
}
permanent_revolution = {
core_pop_consciousness_modifier = -0.1
ruling_party_support = 0.15
icon = 4
}
socialist_realism = {
core_pop_militancy_modifier = -0.1
education_efficiency_modifier = 0.2
ruling_party_support = 0.15
icon = 4
}
project_cybersyn = {
prestige = 0.01
factory_input = -0.02
factory_output = 0.02
factory_throughput = 0.15
diplomatic_points_modifier = 0.05
ruling_party_support = 0.15
industry_tech_research_bonus = 0.05
badboy = -0.01
icon = 17
}
maintain_the_second_republic = {
ruling_party_support = 0.1
core_pop_militancy_modifier = -0.02
icon = 5
}
the_phalanx_ascendant = {
ruling_party_support = 0.15
icon = 2
}
aristocratic_cabinet = {
ruling_party_support = 0.2
rich_vote = 0.15
political_reform_desire = -0.05
global_pop_militancy_modifier = 0.02
min_tariff = 0.4
RGO_output = 0.15
literacy_con_impact = -0.2
core_pop_militancy_modifier = 0.01
mobilisation_size = 0.015
mobilisation_economy_impact = 0.5
icon = 14
}
#TGC ### PUIR-Romania###
alexandru_ioan_cuza = {
prestige = 0.02
diplomatic_points_modifier = 0.15
ruling_party_support = 0.1
political_reform_desire = 0.05
social_reform_desire = 0.05
core_pop_militancy_modifier = -0.01
core_pop_consciousness_modifier = 0.02
icon = 17
}
communist_loyalty = {
global_pop_militancy_modifier = -0.01
global_pop_consciousness_modifier = 0.02
ruling_party_support = 0.1
issue_change_speed = 0.1
icon = 4
}## West Africa Flavour ##
omar_tall_leader = {
core_pop_militancy_modifier = -0.01
non_accepted_pop_militancy_modifier = 0.01
global_pop_consciousness_modifier = 0.01
ruling_party_support = 1
icon = 13
}
###Order###
nv_order = { #Tech Bonus
army_tech_research_bonus = 0.05
navy_tech_research_bonus = 0.05
#commerce_tech_research_bonus = ###
culture_tech_research_bonus = -0.05
#industry_tech_research_bonus = ### #Research Points
#research_points_modifier = ### #Global Pop Militancy & Conciousness
#global_pop_militancy_modifier = ###
#global_pop_consciousness_modifier = ### #Core Pop Militancy & Conciousness
core_pop_militancy_modifier = -0.01
core_pop_consciousness_modifier = -0.01 #Non-Core Pop Militancy & Conciousness
non_accepted_pop_militancy_modifier = 0.01
non_accepted_pop_consciousness_modifier = 0.01 #Pop Needs
#poor_everyday_needs = ###
#middle_everyday_needs = ###
#rich_everyday_needs = 0.1 #poor_luxury_needs = ###
#middle_luxury_needs = ###
#rich_luxury_needs = 0.1 #Immigration and Assimilation
#global_population_growth = ###
global_immigrant_attract = -0.05
assimilation_rate = 0.05 #Industry & Commerce
tax_efficiency = 0.1
#factory_throughput = ###
RGO_throughput = 0.05
#rgo_output = ###
#factory_owner_cost = ### #Politics
ruling_party_support = 0.2
political_reform_desire = -0.1
#social_reform_desire = ### #Army Stats
#land_organisation = ###
#naval_organisation = ###
#org_regain = ###
#unit_start_experience = ###
land_unit_start_experience = 5
naval_unit_start_experience = 5
#supply_consumption = ###
leadership_modifier = 0.1 #War Exhaustion & Mobilisation
war_exhaustion = -0.01
#mobilisation_size = ###
#mobilisation_economy_impact = ###}
nv_autocracy = { #Tech Bonus
army_tech_research_bonus = -0.05
#navy_tech_research_bonus = ###
#commerce_tech_research_bonus = ###
culture_tech_research_bonus = 0.05
industry_tech_research_bonus = -0.05 #Research Points
research_points_modifier = -0.02 #Global Pop Militancy & Conciousness
#global_pop_militancy_modifier = ###
#global_pop_consciousness_modifier = ### #Core Pop Militancy & Conciousness
core_pop_militancy_modifier = -0.015
core_pop_consciousness_modifier = -0.015 #Non-Core Pop Militancy & Conciousness
non_accepted_pop_militancy_modifier = 0.015
non_accepted_pop_consciousness_modifier = 0.015 #Pop Needs
#poor_everyday_needs = -0.1
#middle_everyday_needs = ###
#rich_everyday_needs = 0.1 #poor_luxury_needs = -0.1
#middle_luxury_needs = ###
#rich_luxury_needs = 0.1 #Immigration and Assimilation
global_population_growth = 0.0001
global_immigrant_attract = -0.1
assimilation_rate = 0.05 #Industry & Commerce
tax_efficiency = 0.1
factory_throughput = -0.1
#RGO_throughput = ###
#rgo_output = ###
factory_owner_cost = 0.1 #Politics
ruling_party_support = 0.3
#political_reform_desire = ###
social_reform_desire = -0.1 #Army Stats
#land_organisation = ###
#naval_organisation = ###
org_regain = 0.05
#unit_start_experience = ###
land_unit_start_experience = -5
#naval_unit_start_experience = ###
supply_consumption = -0.1
leadership_modifier = -0.1 #War Exhaustion & Mobilisation
war_exhaustion = 0.01
mobilisation_size = 0.04
mobilisation_economy_impact = 1.3}
###Pioneer###
nv_pioneer = { #Tech Bonus
army_tech_research_bonus = 0.05
navy_tech_research_bonus = 0.05
#commerce_tech_research_bonus = ###
culture_tech_research_bonus = -0.05
industry_tech_research_bonus = -0.05 #Research Points
research_points_modifier = -0.01 #Global Pop Militancy & Conciousness
#global_pop_militancy_modifier = ###
#global_pop_consciousness_modifier = ### #Core Pop Militancy & Conciousness
core_pop_militancy_modifier = -0.02
core_pop_consciousness_modifier = -0.02 #Non-Core Pop Militancy & Conciousness
non_accepted_pop_militancy_modifier = 0.02
non_accepted_pop_consciousness_modifier = 0.02 #Pop Needs
#poor_everyday_needs = -0.1
#middle_everyday_needs = -0.1
#rich_everyday_needs = -0.2 #poor_luxury_needs = -0.1
#middle_luxury_needs = -0.1
#rich_luxury_needs = -0.2 #Immigration and Assimilation
global_population_growth = 0.0001
global_immigrant_attract = 0.1
assimilation_rate = -0.05 #Industry & Commerce
#tax_efficiency = ###
#factory_throughput = ###
RGO_throughput = 0.1
#rgo_output = ###
factory_owner_cost = -0.1 #Politics
ruling_party_support = 0.2
#political_reform_desire = ###
social_reform_desire = 0.1 #Army Stats
#land_organisation = ###
#naval_organisation = ###
#org_regain = ###
#unit_start_experience = ###
land_unit_start_experience = 10
naval_unit_start_experience = 10
supply_consumption = -0.1
leadership_modifier = 0.1 #War Exhaustion & Mobilisation
war_exhaustion = -0.02
mobilisation_size = -0.02
mobilisation_economy_impact = 0.9}
#nv_tradition = {
# research_points_modifier = -0.1
# global_pop_militancy_modifier = -0.01
# global_pop_consciousness_modifier = -0.01
# social_reform_desire = -0.2
# issue_change_speed = -0.2
# ruling_party_support = 0.25
# mobilisation_size = 0.04
# mobilisation_economy_impact = 1.0
#}
#IPM3 tokugawa_philosophy = {
research_points_modifier = -0.95
ruling_party_support = 0.25
land_organisation = 0.50
suppression_points_modifier = 0.3
icon = 4
}
#IPM3 chinese_philosophy = {
research_points_modifier = -0.40
ruling_party_support = 0.25
land_organisation = 0.05
suppression_points_modifier = 0.15
icon = 4
}
#TTA ruling_party_focus = {
local_ruling_party_support = 0.25
icon = 37
}
party_loyalty:
Standard & Ultimate national_focus.txt:
party_loyalty_focus = {
fascist_focus = {
ideology = fascist
loyalty_value = 0.003
icon = 25
}
,
CWEevents indonesia.txt:
#Indonesian Civil War 1958
country_event = {
id = 82990031
title = "Indonesian Civil War of $YEAR$"
desc = EVTDESC1412244
picture = "ido_civil_war"
fire_only_once = yes
trigger = {
tag = IDO
year = 1958
NOT = { year = 1990 }
#Cold War
has_global_flag = blocsenabled
#Is not the USI
government = democracy
is_vassal = no
#Sukarno's party
ruling_party_ideology = nationalist
war = no
ATJ = { exists = no }