Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -422,9 +422,11 @@ byzantine_elective = {
count >= 6
}

has_assigned_minor_title = {
title = title_commander
count < 8
NOT = {
has_assigned_minor_title = {
title = title_commander
count >= 8
}
}
}
}
Expand All @@ -444,9 +446,11 @@ byzantine_elective = {
count >= 4
}

has_assigned_minor_title = {
title = title_commander
count < 6
NOT = {
has_assigned_minor_title = {
title = title_commander
count >= 6
}
}
}
}
Expand All @@ -466,9 +470,11 @@ byzantine_elective = {
count >= 2
}

has_assigned_minor_title = {
title = title_commander
count < 4
NOT = {
has_assigned_minor_title = {
title = title_commander
count >= 4
}
}
}
}
Expand All @@ -483,9 +489,11 @@ byzantine_elective = {
}

liege = {
has_assigned_minor_title = {
title = title_commander
count < 2
NOT = {
has_assigned_minor_title = {
title = title_commander
count >= 2
}
}
}
}
Expand Down
8 changes: 5 additions & 3 deletions CleanSlate/decisions/HF_bloodline_decisions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1235,9 +1235,11 @@ targeted_decisions = {
mult_modifier = {
factor = 0.25

any_vassal = {
in_faction = yes
count < 5
NOT = {
any_vassal = {
in_faction = yes
count >= 5
}
}
}

Expand Down
10 changes: 6 additions & 4 deletions CleanSlate/decisions/HL_mercenary_decisions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,13 @@ targeted_decisions = {
is_primary_war_defender = no
}

any_mercenary_band = {
count < 3
NOT = {
any_mercenary_band = {
count >= 3

band_creator = {
character = FROM
band_creator = {
character = FROM
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion CleanSlate/decisions/HL_title_decisions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ title_decisions = {
temporary = yes
}

demesne_size < 1
NOT = { demesne_size >= 1 }

# Somewhat clunky way of checking that the character does not stand to inherit any titles
NOT = {
Expand Down
16 changes: 9 additions & 7 deletions CleanSlate/decisions/settlement_decisions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1047,11 +1047,13 @@ settlement_decisions = {
NOT = { religion_group = pagan_group }
}

any_realm_province = {
count < 7
NOT = {
any_realm_province = {
count >= 7

region = world_steppe
held_under_PREV = yes
region = world_steppe
held_under_PREV = yes
}
}
}
}
Expand Down Expand Up @@ -1311,7 +1313,7 @@ settlement_decisions = {
if = {
limit = {
FROM = {
dynasty = 708 # Árpád
dynasty = 708 # Ýrpád
has_landed_title = k_hungary
}
}
Expand Down Expand Up @@ -1476,7 +1478,7 @@ settlement_decisions = {
FROM = {
trigger_if = {
limit = {
NOT = { dynasty = 708 } # Árpád
NOT = { dynasty = 708 } # Ýrpád
}

num_of_subrealm_castles >= 10
Expand Down Expand Up @@ -1508,7 +1510,7 @@ settlement_decisions = {

mult_modifier = {
factor = 100
FROM = { dynasty = 708 } # Árpád
FROM = { dynasty = 708 } # Ýrpád
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion CleanSlate/events/base_religious_events.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3289,7 +3289,7 @@ character_event = {

trigger = {
event_target:loyal_bishop = {
demesne_size < 2
NOT = { demesne_size >= 2 }
real_tier = BARON
}
}
Expand Down
4 changes: 2 additions & 2 deletions CleanSlate/events/soa_holy_order_events.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3013,12 +3013,12 @@ character_event = {

mult_modifier = {
factor = 2
demesne_size < 1
NOT = { demesne_size >= 1 }
}

mult_modifier = {
factor = 2
demesne_size < 2
NOT = { demesne_size >= 2 }
}

mult_modifier = {
Expand Down