forked from Numahr/lux-invicta-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibert3_tax_decision.txt
162 lines (157 loc) · 3.15 KB
/
libert3_tax_decision.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
decisions = {
# Ask for a Voluntary Contribution
# Demand Peacetime Scutage
levy_tax.2 = {
is_high_prio = yes
potential = {
is_ruler = yes
war = no
NOT = {
has_character_flag = peace_tax_levy_enacted
}
NOT = {
has_character_modifier = peace_tax_levied_timer
}
independent = yes
}
allow = {
age = 16
prestige = 500 #you need to be respected enough to pull this first
NOT = { wealth = 50 }
}
effect = {
set_character_flag = peace_tax_levy_enacted
add_character_modifier = {
name = peace_tax_levied_timer
hidden = yes
days = 3650
}
prestige = -333
character_event = { id = libert3tax.20 }
hidden_tooltip = {
any_vassal = {
limit = {
OR = { #not sure what that was for again
tier = baron
not = { num_of_vassals = 1 }
}
}
opinion = {
modifier = peace_tax_levied
who = ROOT
years = 10
}
}
letter_event = { id = libert3tax.22 days = 20 } # End result tax levy
any_vassal = {
limit = {
prisoner = no
OR = {
tier = count
tier = duke
tier = king
}
num_of_vassals = 1
}
narrative_event = { id = libert3tax.21 }
}
}
}
ai_will_do = {
factor = 1
modifier = {
factor = 0
war = yes
wealth = 50
scaled_wealth = 0.5
}
modifier = {
factor = 0
war = no
OR = {
any_vassal = {
NOR = {
opinion = { who = ROOT value = 0 }
tier = baron
}
}
NOT = { prestige = 50 }
}
}
}
}
# Levy a War Tax
levy_tax.3 = {
is_high_prio = yes
potential = {
is_ruler = yes
war = yes
NOR = {
has_character_flag = war_tax_levy_enacted
has_character_modifier = war_tax_levied_timer
}
independent = yes
}
allow = {
age = 16
#prestige = 500 #desperation knows no bounds
NOT = { wealth = 50 }
}
effect = {
set_character_flag = war_tax_levy_enacted
add_character_modifier = {
name = war_tax_levied_timer
hidden = yes
days = 3650
}
prestige = -250 # NOTE: tweak so that it only gives -168 for martial next time
character_event = { id = libert3tax.30 }
hidden_tooltip = {
any_vassal = {
limit = {
NOR = { #not sure what that was for again
higher_tier_than = baron
num_of_vassals = 1
}
}
opinion = {
modifier = war_tax_levied
who = ROOT
years = 5
}
}
letter_event = { id = libert3tax.32 days = 20 } # End result tax levy
any_vassal = {
limit = {
prisoner = no
higher_tier_than = baron
num_of_vassals = 1
}
character_event = { id = libert3tax.31 }
}
}
}
ai_will_do = {
factor = 1
modifier = {
factor = 0
war = yes
wealth = 50
scaled_wealth = 0.25
}
modifier = {
factor = 0
war = no
OR = {
any_vassal = {
NOR = {
opinion = { who = ROOT value = 0 }
tier = baron
}
}
NOT = { prestige = 50 }
}
}
}
}
}