-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path00_strategy.txt
More file actions
37 lines (36 loc) · 988 Bytes
/
00_strategy.txt
File metadata and controls
37 lines (36 loc) · 988 Bytes
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
AI = {
# Default AI subject starting strategy depends on LD
every_country = {
limit = { is_subject = yes }
if = {
limit = { liberty_desire >= 80 }
set_strategy = ai_strategy_subject_break_free
}
else_if = {
limit = { liberty_desire >= 60 }
set_strategy = ai_strategy_subject_strengthen_self
}
else_if = {
limit = { liberty_desire <= 20 }
set_strategy = ai_strategy_subject_overlord_compliance
}
else = {
set_strategy = ai_strategy_subject_maintain_autonomy
}
}
c:RUS ?= {
set_strategy = ai_strategy_industrial_expansion
set_strategy = ai_strategy_hardline_communist
set_strategy = ai_strategy_international_socialism
}
c:USA ?= {
set_strategy = ai_strategy_industrial_expansion
set_strategy = ai_strategy_liberal_agenda
set_strategy = ai_strategy_global_liberalism
}
c:GBR ?= {
set_strategy = ai_strategy_maintain_hegemony
set_strategy = ai_strategy_liberal_agenda
set_strategy = ai_strategy_maintain_power_balance
}
}