tiger_lib/ck3/tables/
rules.rs

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
/// Specification of the hardcoded scripted rules in CK3.
///
/// Each definition is one rule.
///
/// `tooltipped` says whether the contents of this rule are tooltipped for the player.
/// It defaults to no. Left out when tooltipping is uncertain, otherwise set to yes or no.
///
/// `root` is the root of the scope context. Other fields are added named scopes.
///
/// For ease of updating, the rules are in the order they are found in the game files.
// LAST UPDATED CK3 VERSION 1.13.0.3
// Taken from information in common/scripted_rules/00_rules.txt
pub const SCRIPTED_RULES: &str = "
	can_command_troops = {
		tooltipped = no
		root = character
		army_owner = character
	}

	can_command_troops_now = {
		tooltipped = yes
		root = character
		army_owner = character
	}

	ghw_give_barony_to_beneficiary = {
		tooltipped = no
		root = province
		faith = faith
	}

	faith_creation = {
		tooltipped = yes
		root = character
	}

	faith_conversion = {
		tooltipped = yes
		root = character
		new_faith = faith
	}

	should_mother_give_house_to_bastard = {
		tooltipped = no
		root = character
	}

	can_be_knight = {
		tooltipped = no
		root = character
	}

	allowed_to_be_granted_titles_by = {
		tooltipped = yes
		root = character
		liege = character
		landed_title = landed_title
	}

	is_character_allowed_to_be_player = {
		tooltipped = no
		root = character
		will_override_government = bool
	}

	is_secret_available_for_blackmail = {
		tooltipped = yes
		root = secret
		target = character
		blackmailer = character
		secret_owner = character
		secret_target = character # may not exist
	}

	passes_faction_hard_block = {
		tooltipped = yes
		root = character
		target = character
	}

	passes_faction_soft_block = {
		tooltipped = yes
		root = character
	}

	is_dangerous_faction = {
		tooltipped = no
		root = faction
	}

	is_alliance_valid = {
		tooltipped = no
		root = character
		second = character
	}

	can_designate_heir = {
		tooltipped = yes
		root = character
	}

	cares_about_powerful_vassal_council_position = {
		tooltipped = no
		root = character
	}

	approves_of_succession_law_change = {
		tooltipped = no
		root = character
	}

	has_natural_death_second_chance = {
		tooltipped = no
		root = character
	}

	can_refund_perks = {
		tooltipped = yes
		root = character
	}

	can_defensively_join_holy_war = {
		tooltipped = no
		root = character
		attacker = character
		defender = character
	}

	can_fire_councillor = {
		tooltipped = yes
		root = character
		councillor = character
	}

	can_raid = {
		tooltipped = yes
		root = character
	}

	can_start_raid = {
		tooltipped = yes
		root = character
	}

	can_raid_across_water = {
		tooltipped = no
		root = character
	}

	can_traverse_river = {
		tooltipped = no
		root = character
	}

	is_hard_blocked_from_schemes = {
		tooltipped = no
		root = character
	}

	ai_wants_matrilineal_marriage = {
		tooltipped = no
		root = character
		secondary_actor = character
	}

	ai_wants_grand_wedding_promise = {
		tooltipped = no
		root = character
		actor = character
		secondary_actor = character
		recipient = character
		secondary_recipient = character
	}

	buildings_enabled = {
		tooltipped = yes
		root = character
	}

	can_potentially_call_ally = {
		tooltipped = no
		root = character
		ally = character
	}

	can_hybridize_culture = {
		tooltipped = yes
		root = character
		culture = culture
	}

	can_diverge_culture = {
		tooltipped = yes
		root = character
	}

	can_add_tradition = {
		tooltipped = yes
		root = character
	}

	can_replace_pillar = {
		tooltipped = yes
		root = character
	}

	is_eligible_for_court_positions = {
		root = character
	}

	can_name_after_birth = {
		tooltipped = no
		root = character
		child = character
	}

	can_adopt_court_language = {
		tooltipped = no
		root = character
		target = character
		list = {
			my_language_counties = landed_title
			their_language_counties = landed_title
			total_counties = landed_title
		}
	}

	ai_should_repair_artifact = {
		tooltipped = no
		root = character
		artifact = artifact
	}

	can_be_activity_guest = {
		root = character
		host = character
	}

	is_diarch_visibly_loyal = {
		tooltipped = no
		root = character
	}

	is_diarch_visibly_disloyal = {
		tooltipped = no
		root = character
	}

	is_diarch_able = {
		tooltipped = no
		root = character
	}

	is_diarch_valid = {
		tooltipped = no
		root = character
	}

	should_have_diarchy = {
		tooltipped = no
		root = character
	}

	can_be_acclaimed_knight = {
		tooltipped = no
		root = character
	}

	is_hostage_valid = {
		tooltipped = no
		root = character
	}

	can_create_legend = {
		root = character
	}

	can_promote_legend = {
		root = character
		legend = legend
	}

	ai_wants_to_create_own_legend = {
		tooltipped = no
		root = character
		num_legends = value
	}

	is_dominant_family = {
		root = dynasty_house
	}

	is_hireable_ruler_trigger = {
		root = character
	}

	can_hire_hireable_ruler_trigger = {
		root = character
		candidate = character
	}

	can_move_domicile = {
		root = province
		owner = character
	}
";