One thing missing from the toolkit of religious modders is the ability to utilize centers of reformation for religions other than Catholicism, Protestantism, and Reformed. It is possible to mod new Christian religions that form centers of reformation on conversion, but the centers for any religion but the defaults don't actually do anything. It is also impossible to spawn a center of reformation for a non-christian religion.
It would be amazing (and hopefully not too complicated) to remove the limitations on centers of reformation, and allow religions from any group to spawn working centers of reformation. I've searched the internet and the steam forums and workshop over and over, and nobody seems to have been able to get this working.
If it helps, here's the religion I added to the Christian religious group (with the appropriate gfx, interface, and localisation changes), which spawns a center of reformation when converted to which doesn't actually convert anything:
It would be amazing (and hopefully not too complicated) to remove the limitations on centers of reformation, and allow religions from any group to spawn working centers of reformation. I've searched the internet and the steam forums and workshop over and over, and nobody seems to have been able to get this working.
If it helps, here's the religion I added to the Christian religious group (with the appropriate gfx, interface, and localisation changes), which spawns a center of reformation when converted to which doesn't actually convert anything:
Code:
evangelical = {
# TODO:
color = { 0.9 0.4 0.1 }
icon = 28
allowed_conversion = {
protestant
reformed
}
#allowed_center_conversion = {
# #sunni
# #shiite
# #ibadi
# catholic
# protestant
# reformed
# #coptic
# orthodox
# #animist
#}
allowed_center_conversion = {
catholic
}
country = {
#global_heretic_missionary_strength = 0.1
tolerance_own = 3
}
will_get_center = {
any_owned_province = {
OR = {
religion = catholic
religion = protestant
religion = reformed
religion = orthodox
religion = coptic
religion = evangelical
religion = sunni
religion = shiite
religion = ibadi
religion = buddhism
religion = vajrayana
religion = mahayana
religion = confucianism
religion = shinto
religion = hinduism
religion = sikhism
religion = animism
religion = shamanism
religion = totemism
religion = inti
religion = nahuatl
religion = mesoamerican_religion
religion = norse_pagan_reformed
religion = tengri_pagan_reformed
religion = jewish
religion = zoroastrian
}
is_in_capital_area = yes
is_reformation_center = no
}
}
on_convert = {
change_religion = evangelical
add_prestige = -20
remove_country_modifier = counter_reformation
remove_country_modifier = the_statue_in_restraint_of_appeals
remove_country_modifier = bavarian_jesuits
remove_country_modifier = the_societas_jesu
remove_country_modifier = the_declaration_of_indulgence
remove_country_modifier = de_heretico_comburendo
remove_country_modifier = the_conventicle_act
if = {
limit = {
has_country_flag = reformation_money
}
random_owned_province = {
limit = {
OR = {
religion = catholic
religion = protestant
religion = reformed
religion = orthodox
religion = coptic
religion = evangelical
religion = sunni
religion = shiite
religion = ibadi
religion = buddhism
religion = vajrayana
religion = mahayana
religion = confucianism
religion = shinto
religion = hinduism
religion = sikhism
religion = animism
religion = shamanism
religion = totemism
religion = inti
religion = nahuatl
religion = mesoamerican_religion
religion = norse_pagan_reformed
religion = tengri_pagan_reformed
religion = jewish
religion = zoroastrian
}
is_in_capital_area = yes
is_reformation_center = no
}
change_religion = evangelical
add_reform_center = evangelical
}
}
if = {
limit = {
NOT = { has_country_flag = reformation_money }
}
add_years_of_income = 1.0
random_owned_province = {
limit = {
OR = {
religion = catholic
religion = protestant
religion = reformed
religion = orthodox
religion = coptic
religion = evangelical
religion = sunni
religion = shiite
religion = ibadi
religion = buddhism
religion = vajrayana
religion = mahayana
religion = confucianism
religion = shinto
religion = hinduism
religion = sikhism
religion = animism
religion = shamanism
religion = totemism
religion = inti
religion = nahuatl
religion = mesoamerican_religion
religion = norse_pagan_reformed
religion = tengri_pagan_reformed
religion = jewish
religion = zoroastrian
}
is_in_capital_area = yes
is_reformation_center = no
}
change_religion = evangelical
add_reform_center = evangelical
}
}
add_country_modifier = {
name = "conversion_zeal"
duration = 3650
}
set_country_flag = "reformation_money"
}
province = {
local_missionary_strength = -0.08
}
heretic = { MORMON SATANIST }
}
- 3
Upvote
0