forked from hadorganization/geheimnisnacht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wh_vampire_decisions.txt
3465 lines (3435 loc) · 57.2 KB
/
wh_vampire_decisions.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
#
decisions = {
ask_liege_vampirization = {
only_playable = yes
potential = {
independent = no
is_living_human_trigger = yes
liege = {
age = 16
OR = {
trait = vampire_lahmian_visible
trait = vampire_carstein_visible
# trait = vampire_blood_visible #Special cases with harsher restrictions
# trait = vampire_strigoi_visible
# trait = vampire_necrarch_visible
trait = vampire_jade_visible
trait = vampire_mahtmasi_visible
}
}
}
allow = {
custom_tooltip = {
text = IS_NOT_INCAPACITATED
is_incapacitated_trigger = no
}
prestige = 500
war = no
liege = {
war = no
custom_tooltip = {
text = IS_NOT_INCAPACITATED
is_incapacitated_trigger = no
}
}
OR = {
# ai = no
trait = ambitious
trait = lunatic_1
trait = lunatic_2
trait = lunatic_3
liege = {
any_lover = {
religion = ROOT
character = ROOT
}
}
AND = {
age = 60
OR = {
trait = craven
trait = paranoid
}
}
}
}
effect = {
log = "work decision ask_liege_vampirization for [Root.GetBestName]"
prestige = -500
liege = {
character_event = {
id = vampire.11
}
}
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.001
NOT = {
liege = {
any_lover = {
religion = ROOT
character = ROOT
}
}
}
}
modifier = {
factor = 0.01
trait = craven
}
modifier = {
factor = 0.1
trait = shy
}
modifier = {
factor = 0
is_female = no
liege = {
trait = vampire_lahmian_visible
}
}
modifier = {
factor = 0.1
liege = {
trait = vampire_strigoi_visible
}
}
modifier = {
factor = 10
liege = {
any_spouse = {
religion = ROOT
character = ROOT
}
}
}
modifier = {
factor = 0.01
liege = {
trait = just
}
}
modifier = {
factor = 0.01
liege = {
trait = kind
}
}
modifier = {
factor = 0.1
liege = {
trait = paranoid
}
}
}
}
increase_bloodorder_size = {
potential = {
has_dlc = "Horse Lords"
trait = vampire_blood_visible
primary_title = {
mercenary = yes
adventurer = yes
}
}
allow = {
prisoner = no
prestige = 150
}
effect = {
log = "work decision increase_bloodorder_size for [Root.GetBestName]"
prestige = -150
primary_title = {
change_title_army_size = 0.07 # Increase of percentage
band_creator = {
if = {
limit = {
is_alive = yes
}
character_event = {
id = svampires.17
}
}
}
}
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.025
band_creator = {
is_alive = yes
}
}
modifier = {
factor = 0
NOT = {
trait = ambitious
}
trait = greedy
}
modifier = {
factor = 2
trait = proud
}
modifier = {
factor = 2
trait = ambitious
}
modifier = {
factor = 2
wealth = 200
}
modifier = {
factor = 2
wealth = 400
}
modifier = {
factor = 3
wealth = 800
}
modifier = {
factor = 4
wealth = 1200
}
modifier = {
factor = 5
wealth = 1600
}
}
}
# think about it
# start_blood_quest = {
# is_high_prio = yes
# only_rulers = yes
# potential = {
# always = no #deactivated for now
# trait = vampire_blood_visible
# is_incapacitated_trigger = no
# higher_tier_than = BARON
# }
# allow = {
# prisoner = no
# war = no
# prestige = 50
# piety = 20
# }
# effect = {
# prestige = -50
# piety = -20
# clr_character_flag = empire_questing
# clr_character_flag = border_princes_questing
# clr_character_flag = kislev_questing
# clr_character_flag = bretonnia_questing
# clr_character_flag = estilea_questing
# clr_character_flag = badlands_questing
# clr_character_flag = araby_questing
# clr_character_flag = nehekhara_questing
# clr_character_flag = norsca_questing
# clr_character_flag = mountains_questing
# clr_character_flag = darklands_questing
# clr_character_flag = ulthuan_questing
# clr_character_flag = naggaroth_questing
# clr_character_flag = athel_loren_questing
# clr_character_flag = chaos_wastes_questing
# clr_character_flag = ocean_questing
# hidden_tooltip = {
# character_event = {
# id = sblooddragons.22
# }
# add_trait = blood_questing
# add_character_modifier = {
# name = blood_quest_startup
# duration = 150
# hidden = yes
# }
# any_courtier = {
# limit = {
# NOR = {
# trait = incapable
# prisoner = yes
# trait = resting
# trait = blood_questing
# is_ruler = yes
# }
# trait = vampire_blood_visible
# }
# character_event = {
# id = sblooddragons.23
# }
# }
# any_vassal = {
# limit = {
# NOR = {
# trait = incapable
# prisoner = yes
# trait = resting
# trait = blood_questing
# }
# trait = vampire_blood_visible
# }
# character_event = {
# id = sblooddragons.23
# }
# }
# }
# }
# revoke_allowed = {
# always = no
# }
# ai_will_do = {
# factor = 1
# modifier = {
# factor = 0
# war = yes
# }
# modifier = {
# factor = 2
# trait = proud
# }
# modifier = {
# factor = 2
# trait = ambitious
# }
# modifier = {
# factor = 0.5
# trait = content
# }
# modifier = {
# factor = 5
# primary_title = {
# mercenary = yes
# adventurer = yes
# }
# }
# }
# }
stop_blood_questing = {
only_rulers = yes
potential = {
trait = blood_questing
is_ruler = yes
NOT = {
has_character_modifier = blood_quest_startup
has_character_flag = ocean_questing
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV
modifier = opinion_blood_questing
}
}
has_character_flag = ocean_questing
}
}
}
allow = {
prestige = 30
piety = 10
}
effect = {
log = "work decision stop_blood_questing for [Root.GetBestName]"
prestige = -30
piety = -10
clr_character_flag = empire_questing
clr_character_flag = border_princes_questing
clr_character_flag = kislev_questing
clr_character_flag = bretonnia_questing
clr_character_flag = estilea_questing
clr_character_flag = badlands_questing
clr_character_flag = araby_questing
clr_character_flag = nehekhara_questing
clr_character_flag = norsca_questing
clr_character_flag = mountains_questing
clr_character_flag = darklands_questing
clr_character_flag = ulthuan_questing
clr_character_flag = naggaroth_questing
clr_character_flag = athel_loren_questing
clr_character_flag = chaos_wastes_questing
clr_character_flag = ocean_questing
hidden_tooltip = {
character_event = {
id = sblooddragons.24
}
clr_character_flag = blood_quest_leader
remove_trait = blood_questing
if = {
limit = {
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing }
}
}
}
liege = {
letter_event = {
id = sblooddragons.24001
}
}
}
any_courtier = {
limit = {
has_opinion_modifier = {
who = ROOT modifier = opinion_blood_questing
}
trait = vampire_blood_visible
}
letter_event = {
id = sblooddragons.24002
}
}
any_vassal = {
limit = {
has_opinion_modifier = {
who = ROOT modifier = opinion_blood_questing
}
trait = vampire_blood_visible
}
letter_event = {
id = sblooddragons.24002
}
}
}
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.1
}
modifier = {
factor = 0
has_character_modifier = bloodthirsty
}
modifier = {
factor = 100
trait = resting
}
modifier = {
factor = 0
independent = yes
war = no
wealth = 5
}
modifier = {
factor = 0.1
NOR = {
trait = infirm
trait = incapable
trait = blinded
trait = wounded
trait = maimed
trait = eunuch
}
}
modifier = {
factor = 10
war = yes
}
modifier = {
factor = 0.5
trait = proud
}
modifier = {
factor = 0.5
trait = ambitious
}
modifier = {
factor = 1.5
trait = content
}
modifier = {
factor = 0.5
primary_title = {
mercenary = yes
adventurer = yes
}
}
modifier = {
factor = 1.75
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
NOT = {
liege = {
ROOT = {
opinion = {
who = PREV
value = -80
}
}
}
}
}
modifier = {
factor = 1.5
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
NOT = {
liege = {
ROOT = {
opinion = {
who = PREV
value = -60
}
}
}
}
}
modifier = {
factor = 1.5
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
NOT = {
liege = {
ROOT = {
opinion = {
who = PREV
value = -40
}
}
}
}
}
modifier = {
factor = 1.2
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
NOT = {
liege = {
ROOT = {
opinion = {
who = PREV
value = -20
}
}
}
}
}
modifier = {
factor = 1.2
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
NOT = {
liege = {
ROOT = {
opinion = {
who = PREV
value = 0
}
}
}
}
}
modifier = {
factor = 0.8
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
liege = {
ROOT = {
opinion = {
who = PREV
value = 20
}
}
}
}
modifier = {
factor = 0.6
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
liege = {
ROOT = {
opinion = {
who = PREV
value = 40
}
}
}
}
modifier = {
factor = 0.5
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
liege = {
ROOT = {
opinion = {
who = PREV
value = 60
}
}
}
}
modifier = {
factor = 0.25
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
liege = {
ROOT = {
opinion = {
who = PREV
value = 80
}
}
}
}
modifier = {
factor = 0.05
liege = {
ROOT = {
has_opinion_modifier = {
who = PREV modifier = opinion_blood_questing
}
}
}
liege = {
ROOT = {
opinion = {
who = PREV
value = 100
}
}
}
}
}
}
create_blood_host = {
potential = {
trait = vampire_blood_visible
age = 16
NOR = {
trait = resting
trait = blood_questing
}
}
allow = {
custom_tooltip = {
text = IS_NOT_INCAPACITATED
is_incapacitated_trigger = no
}
check_variable = {
which = "blooddragon_reserve" value = 10
}
wealth = 30
}
effect = {
log = "work decision create_blood_host for [Root.GetBestName]"
wealth = -30
change_variable = {
which = "blooddragon_reserve" value = -10
}
location = {
ROOT = {
spawn_unit = {
province = PREV
reinforces = yes
troops = {
vampire_knights = {
10 10
}
}
}
}
}
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.01
}
modifier = {
factor = 1.25
trait = proud
}
modifier = {
factor = 1.5
trait = ambitious
}
modifier = {
factor = 0.5
trait = content
}
modifier = {
factor = 0.5
NOT = {
wealth = 200
}
}
}
}
strigoi_hibernate = {
only_playable = yes
potential = {
trait = vampire_strigoi_visible
age = 16
NOR = {
trait = incapable
trait = resting
trait = blood_questing
has_character_modifier = strigoi_resting_timer
}
}
allow = {
}
effect = {
log = "work decision strigoi_hibernate for [Root.GetBestName]"
piety = 75
add_trait = resting
disband_event_forces = shambling_ghouls
add_character_modifier = {
name = strigoi_resting_timer
duration = 400
hidden = yes
}
if = {
limit = {
capital_scope = {
owner = {
character = ROOT
}
}
}
capital_scope = {
add_province_modifier = {
name = hidden_hibernated_strigoi
duration = -1
}
}
}
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.01
}
modifier = {
factor = 0.75
trait = proud
}
modifier = {
factor = 0
NOT = {
age = 80
}
}
modifier = {
factor = 0
piety = 1000
}
modifier = {
factor = 0.5
trait = ambitious
}
modifier = {
factor = 1.5
trait = content
}
modifier = {
factor = 0.5
trait = gregarious
}
modifier = {
factor = 0.05
has_character_modifier = bloodthirsty
}
modifier = {
factor = 0.25
has_character_modifier = exquisite_agonies
}
modifier = {
factor = 1.5
has_character_modifier = heart_of_melancholy
}
}
}
strigoi_hibernate_stop = {
potential = {
trait = vampire_strigoi_visible
age = 16
trait = resting
NOR = {
trait = incapable
trait = blood_questing
# has_character_modifier = heart_of_melancholy
has_character_modifier = strigoi_resting_timer
}
}
allow = {
trait = resting
}
effect = {
log = "work decision strigoi_hibernate_stop for [Root.GetBestName]"
piety = -50
remove_trait = resting
if = {
limit = {
capital_scope = {
owner = {
character = ROOT
}
}
}
capital_scope = {
remove_province_modifier = hidden_hibernated_strigoi
}
}
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.01
}
modifier = {
factor = 1.25
trait = proud
}
modifier = {
factor = 5
piety = 1000
}
modifier = {
factor = 2
trait = ambitious
}
modifier = {
factor = 0.5
trait = content
}
modifier = {
factor = 1.5
trait = gregarious
}
modifier = {
factor = 10
has_character_modifier = bloodthirsty
}
modifier = {
factor = 4
has_character_modifier = exquisite_agonies
}
}
}
forbid_crystal = {
only_playable = yes
potential = {
has_artifact = dark_crystal
NOT = {
has_character_flag = forbidden_jade_crystal
}
}
allow = {
custom_tooltip = {
text = IS_NOT_INCAPACITATED
is_incapacitated_trigger = no
}
}
effect = {
log = "work decision forbid_crystal for [Root.GetBestName]"
set_character_flag = forbidden_jade_crystal
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.01
}
modifier = {
factor = 0
NOR = {
trait = greedy
trait = paranoid
}
}
}
}
open_crystal = {
only_playable = yes
potential = {
has_artifact = dark_crystal
has_character_flag = forbidden_jade_crystal
}
allow = {
custom_tooltip = {
text = IS_NOT_INCAPACITATED
is_incapacitated_trigger = no
}
}
effect = {
log = "work decision open_crystal for [Root.GetBestName]"
clr_character_flag = forbidden_jade_crystal
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 1
modifier = {
factor = 0.1
}
modifier = {
factor = 0
OR = {
trait = greedy
trait = paranoid
}
}
}
}
gaze_into_crystal = {
only_playable = yes
is_high_prio = yes
potential = {
has_artifact = dark_crystal
}
allow = {
custom_tooltip = {
text = IS_NOT_INCAPACITATED
is_incapacitated_trigger = no
}
has_artifact = dark_crystal
NOT = {
has_character_modifier = magic_cooldown
}
OR = {
learning = 15
wh_is_mage_trigger = yes
trait = vampire_jade_visible
any_courtier = {
trait = astromancer
}
}
}
effect = {
log = "work decision gaze_into_crystal for [Root.GetBestName]"
hidden_tooltip = {
if = {
limit = {
trait = vampire_jade_visible
}
character_event = {
id = svampires.60005
}
}
if = {
limit = {
NOT = {
trait = vampire_jade_visible
}
}
character_event = {
id = svampires.60006
}
}
add_character_modifier = {
name = magic_cooldown
duration = 300
hidden = yes