-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathml_victories_defeats_count.txt
85 lines (73 loc) · 1.26 KB
/
ml_victories_defeats_count.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
namespace = ml_victories_defeats_count
# add victory count
ml_victories_defeats_count.1 = {
type = country_event
hidden = yes
trigger = {
scope:actor = {
has_legion_trigger = yes
}
}
immediate = {
every_governorships = {
limit = {
has_legion_trigger = yes
legion = scope:actor.legion
}
save_scope_as = legion_governorship
}
scope:legion_governorship = {
if = {
limit = {
has_variable = total_victory_count
}
change_variable = {
name = total_victory_count
add = 1
}
}
else = {
set_variable = {
name = total_victory_count
value = 1
}
}
}
}
}
# add defeat count
ml_victories_defeats_count.2 = {
type = country_event
hidden = yes
trigger = {
scope:actor = {
has_legion_trigger = yes
}
}
immediate = {
every_governorships = {
limit = {
has_legion_trigger = yes
legion = scope:actor.legion
}
save_scope_as = legion_governorship
}
scope:legion_governorship = {
if = {
limit = {
has_variable = total_defeat_count
}
change_variable = {
name = total_defeat_count
add = 1
}
}
else = {
set_variable = {
name = total_defeat_count
value = 1
}
}
}
}
}