admin gov works

This commit is contained in:
Magpie490 2025-02-20 11:52:45 +00:00
parent 051293284c
commit 6ef778b2b5
32 changed files with 6304 additions and 103 deletions

View file

@ -1734,7 +1734,7 @@ ai_men_at_arms_expense_gold_max = {
}
if = {
limit = {
government_allows = administrative
has_government = administrative_government
NOT = { vassal_contract_has_flag = admin_theme_civilian }
}
add = {
@ -1748,7 +1748,7 @@ ai_men_at_arms_expense_gold_max = {
if = {
limit = {
government_allows = administrative
has_government = administrative_government
debt_level <= 2
}
value = 3
@ -2284,7 +2284,7 @@ ai_men_at_arms_chance_landless_ruler = {
}
if = { # Landless admin focus mostly on Buildings
limit = {
government_allows = administrative
has_government = administrative_government
}
add = -0.3
}

View file

@ -51,7 +51,7 @@ council_task_fabricate_claim_relative_strength = {
council_scaled_by_liege_tier_not_admin = {
value = council_scaled_by_liege_tier
if = {
limit = { government_allows = administrative }
limit = { has_government = administrative_government }
multiply = 0
}
}
@ -60,7 +60,7 @@ council_scaled_admin_value = {
value = 0 # This value should be 0 for anyone who isn't admin
if = {
limit = {
government_allows = administrative
has_government = administrative_government
}
add = 1
if = {

View file

@ -187,7 +187,7 @@ base_legitimacy_value = { # Split into separate values for easy debugging/visibi
# ADMINISTRATIVE
if = {
limit = {
government_allows = administrative
has_government = administrative_government
}
multiply = 0.75 # To reduce the overall base values
add = base_legitimacy_admin_value # And add anything admin specific
@ -244,7 +244,7 @@ succession_legitimacy_value = { # Split into separate values for easy debugging/
# ADMINISTRATIVE
if = {
limit = {
government_allows = administrative
has_government = administrative_government
}
multiply = 0.75 # To reduce the overall base values
add = base_legitimacy_admin_value # And add anything admin specific

View file

@ -662,7 +662,7 @@ ep3_triumph_gold_cost = {
value = 100
if = {
limit = {
NOT = { government_allows = administrative }
NOT = { has_government = administrative_government }
}
add = 100
if = {
@ -680,7 +680,7 @@ ep3_triumph_influence_cost = {
value = 0
if = {
limit = {
government_allows = administrative
has_government = administrative_government
}
add = 50
if = {

View file

@ -596,7 +596,7 @@ chancellor_integrate_title_contextual_bonuses = {
limit = { # Task instigator is admin top liege
scope:councillor_liege = {
is_independent_ruler = yes
government_allows = administrative
has_government = administrative_government
}
}
add = {
@ -608,16 +608,16 @@ chancellor_integrate_title_contextual_bonuses = {
if = {
limit = { # Task target is de jure part of an admin empire/kingdom
NOT = {
scope:councillor_liege = { government_allows = administrative }
scope:councillor_liege = { has_government = administrative_government }
}
trigger_if = {
limit = { exists = scope:county.empire.holder }
scope:county.empire.holder = { government_allows = administrative }
scope:county.empire.holder = { has_government = administrative_government }
}
trigger_else = {
scope:county.kingdom.holder ?= {
is_independent_ruler = yes
government_allows = administrative
has_government = administrative_government
}
}
}