-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathenums.cwt
69 lines (69 loc) · 1.5 KB
/
enums.cwt
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
enums = {
enum[power_types] = {
civic
military
oratory
religious
}
enum[government_types] = {
republic
monarchy
tribal
}
enum[character_skills] = {
charisma
finesse
martial
zeal
}
# Used for party impact but maybe something else too, so adding that to the main.
enum[diplomatic_actions] = {
declare_war
request_peace
alliance
guarantee
demand_annexation
demand_tribute
military_access
offer_military_access
call_ally
sell_province
ransom_prisoner
barbarian_demand_surrender
barbarian_create_client
barbarian_payoff
barbarian_settle
fabricate_claim
invite_to_defensive_league
ask_to_join_defensive_league
leave_defensive_league
improve_relation
intervene_in_war
enforce_peace
threaten_war
support_rebels
abandon_civil_war
}
enum[minmax] = {
min
max
}
enum[succession_types] = {
agnatic
cognatic
agnatic_seniority
elective_monarchy
old_egyptian_succession
}
enum[dlcs] = {
"Epirus Flavor Pack"
"Hellenistic World Flavor Pack"
"Magna Graecia"
"Heirs of Alexander"
}
enum[duration] = {
days
months
years
}
}