Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

flavor_geo.19 天主教传播

时间范围:1365.1.1 - 1390.6.1(每月 1% 概率)

触发条件

  • 教皇国(PAP)存在。
  • 本国至少拥有一个已修建的传教建筑。
  • 统治者或摄政的宗教为天主教。
  • 本国人口中天主教徒比例大于0。
  • 本国国教不是天主教。
  • 本国未处于战争状态。
  • 本国未处于破产状态。
  • 本国至少拥有一个省份,该省份同时满足以下两个条件:
    1. 没有修建传教建筑。
    2. 主流宗教不是天主教。

关键效果

  • 选项 A (flavor_geo.19.a)
    • 拆除本国所有已修建的传教建筑。
    • 所有外交范围内的天主教国家将对我国产生“拆除天主教使馆”的负面观点修正。
    • 触发教皇国(PAP)的事件 flavor_geo.17
    • 本国所有信奉天主教的角色将改信我国的国教。
  • 选项 B (flavor_geo.19.b)
    • 将本国国教改为天主教。
    • 将统治者及其家族的宗教改为天主教。
    • 触发教皇国(PAP)的事件 flavor_geo.20

背景介绍: 在14世纪中后期,格鲁吉亚王国正处于一个宗教与政治交织的复杂时期。尽管国内存在一定数量的天主教徒,且统治者可能皈依了天主教,但国家整体上仍信奉东正教。此事件模拟了格鲁吉亚统治者面临的选择:是顺应国内部分天主教势力及外部(尤其是教皇国)的影响,推动国家全面改宗天主教;还是压制天主教传播,维护传统的东正教信仰,并承担由此可能引发的外交后果。

完整事件代码

flavor_geo.19 = { #[ShowReligionAdjectiveWithNoTooltip('catholic')] Spreads
	type = country_event
	title = flavor_geo.19.title
	desc = flavor_geo.19.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = GEO
		from = 1365.1.1
		to = 1390.6.1
		monthly_chance = 1
	}

	trigger = {
		country_exists = c:PAP
		any_owned_location = {
			has_building = building_type:missionary_building
		}
		ruler_or_regent = { religion = religion:catholic }
		"religion_percentage_in_country(religion:catholic)" > 0
		NOT = { religion = religion:catholic }
		at_war = no
		is_during_bankruptcy = no
		any_owned_location = {
			NOT = {
				has_building = building_type:missionary_building
				NOT = { dominant_religion = religion:catholic }
			}
		}
	}

	illustration_tags = {
		10 = interior
		10 = regular
	}

	immediate = {
		save_scope_as = target_country
		ruler_or_regent = { save_scope_as = target_character }
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:nobles_estate }
		ordered_owned_location = {
			limit = {
				NOT = {
					has_building = building_type:missionary_building
					NOT = { dominant_religion = religion:catholic }
				}
			}
			order_by = population
			max = 1
			check_range_bounds = no
			save_scope_as = target_location1
		}
		ordered_owned_location = {
			limit = {
				NOR = {
					has_building = building_type:missionary_building
					NOT = { dominant_religion = religion:catholic }
					this = scope:target_location1
				}
			}
			order_by = population
			max = 1
			check_range_bounds = no
			save_scope_as = target_location2
		}
		ordered_owned_location = {
			limit = {
				NOR = {
					has_building = building_type:missionary_building
					NOT = { dominant_religion = religion:catholic }
					this = scope:target_location1
					this = scope:target_location2
				}
			}
			order_by = population
			max = 1
			check_range_bounds = no
			save_scope_as = target_location3
		}
	}

	option = {
		name = flavor_geo.19.a
		every_owned_location = {
			limit = {
				has_building = building_type:missionary_building
			}
			destroy_building = "building(building_type:missionary_building|owner)"
		}

		custom_tooltip = {
			text = suffer_20_opinion_with_every_catholic_in_range_tt
			every_known_country = {
				limit = {
					within_diplomatic_range = root
					religion = religion:catholic
				}
				add_opinion = {
					modifier = opinion_demolished_catholic_embassies
					target = root
				}
			}
		}

		c:PAP = { trigger_event_non_silently = flavor_geo.17 }

		every_character = {
			limit = { religion = religion:catholic }
			change_character_religion = root.religion
		}
	}
	option = {
		name = flavor_geo.19.b


		change_religion = religion:catholic
		change_religion_for_ruler_and_family = { country = ROOT religion = religion:catholic }

		c:PAP = {
			trigger_event_non_silently = flavor_geo.20
		}
	}
}