So I converted to Protestant, and within days I get this curious event:
You'll notice both options say they'll force me back to being Catholic which I don't want. Its ironman so I'm hesitant to pick a choice despite the code the wiki not mentioning anything about forcing a change of state religion - its supposed to be changing a random province? Can anyone confirm if this is just a display bug?
You'll notice both options say they'll force me back to being Catholic which I don't want. Its ironman so I'm hesitant to pick a choice despite the code the wiki not mentioning anything about forcing a change of state religion - its supposed to be changing a random province? Can anyone confirm if this is just a display bug?
Code:
# The influence from the consort's home country is strong
country_event = {
id = consort_events.61
title = consort_events.61.t
desc = consort_events.61.da
picture = KINGS_CHOICE_eventPicture
trigger = {
has_dlc = "Rights of Man"
has_consort = yes
has_foreign_consort = yes
is_lesser_in_union = no
NOT = { has_country_modifier = heretic_royalty }
any_country = {
has_given_consort_to = ROOT
NOT = { religion = ROOT }
}
has_adm_advisor = yes
NOT = { has_consort_flag = the_people_dislike_infidel_consort }
}
immediate = {
hidden_effect = {
set_consort_flag = consort_influenced_change_of_religion
random_known_country = {
limit = {
has_given_consort_to = ROOT
}
save_event_target_as = origin_country_of_consort
}
random_owned_province = {
limit = {
is_capital = no
NOT = { religion = event_target:origin_country_of_consort }
}
save_event_target_as = province_under_religious_influence
}
}
}
mean_time_to_happen = {
months = 360
}
option = {
name = consort_events.61.a # The Consort must denounce this event
event_target:province_under_religious_influence = {
change_religion = event_target:origin_country_of_consort
add_province_modifier = {
name = angered_believers
duration = 1825
}
}
}
option = {
name = consort_events.61.b # A province changes religion
event_target:province_under_religious_influence = {
change_religion = event_target:origin_country_of_consort
}
}
}
- 1