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_ice.10 主教之争

时间范围
无具体起止日期(from/to未定义),事件触发后仅发生一次(fire_only_once = yes)。

触发条件

  • 国家为 ICE(冰岛)。
  • 附庸国is_subject = yes)。
  • 国家宗教为 天主教religion = religion:catholic)。
  • 地区 霍拉尔location:holar):
    • 由本国控制(owner = ROOT)。
    • 神职人员人口比例超过 1%num_pop_type:clergy > 0.010)。
    • 主流宗教为 天主教dominant_religion = religion:catholic)。
  • 地区 斯卡霍尔特location:skalholt):
    • 由本国控制(owner = ROOT)。
    • 神职人员人口比例超过 1%num_pop_type:clergy > 0.010)。
    • 主流宗教为 天主教dominant_religion = religion:catholic)。

关键效果

  • 选项 A:支持本地主教

    • 使 霍拉尔 地区获得 繁荣度大幅提升change_prosperity = prosperity_severe_bonus)。
    • 宗主国对本国增加 “反对我方主教” 意见修正(add_opinion = { target = root modifier = opinion_opposed_our_bishop })。
  • 选项 B:支持宗主国主教

    • 使 斯卡霍尔特 地区获得 繁荣度大幅提升change_prosperity = prosperity_severe_bonus)。
    • 宗主国对本国增加 “支持我方主教” 意见修正(add_opinion = { target = root modifier = opinion_supported_our_bishop })。
    • 宗主国执行以下操作:
      • 在其核心领土中,筛选出 主流宗教为本国宗教主流文化为宗主国文化 的地区。
      • 从中选择 神职人员人口最多 的一个地区。
      • 从该地区向 斯卡霍尔特 迁移 0.5% 的神职人员人口(文化为宗主国文化,宗教为本国宗教),迁移过程持续 12个月

背景介绍
作为天主教的冰岛附庸国,国内两个重要的主教区——霍拉尔与斯卡霍尔特——均拥有相当规模的神职人员。此时,在主教任命或宗教影响力上,本地势力与宗主国之间产生了分歧。事件反映了中世纪后期附庸国在宗教事务上平衡本地自治与宗主国权威的典型困境。

完整事件代码

flavor_ice.10 = {
	type = country_event
	fire_only_once = yes	
	title = flavor_ice.10.title
	desc = flavor_ice.10.desc
	trigger = {
		tag = ICE
		is_subject = yes
		religion = religion:catholic
		location:holar = {
			owner = ROOT
			num_pop_type:clergy > 0.010
			dominant_religion = religion:catholic
		}
		location:skalholt = {
			owner = ROOT
			num_pop_type:clergy > 0.010
			dominant_religion = religion:catholic
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		location:holar = { 
			save_scope_as = target_location
		}
		location:skalholt = { save_scope_as = skalholt }
		overlord = { save_scope_as = overlord }
	}

	# support local
	option = {
		name = flavor_ice.10.a
		scope:target_location = {
			change_prosperity = prosperity_severe_bonus
		}
		overlord = {
			add_opinion = { target = root modifier = opinion_opposed_our_bishop }
		}
	}

	# support overlord
	option = {
		name = flavor_ice.10.b
		scope:skalholt = {
			change_prosperity = prosperity_severe_bonus
		}
		overlord = {
			add_opinion = { target = root modifier = opinion_supported_our_bishop }

			ordered_core_location = {
				order_by = { value = num_pop_type:clergy multiply = 1 }
				limit = {
					dominant_religion = root.religion
					dominant_culture = root.overlord.culture
				}
				max = 1

				add_migration = {
					owner = prev
					from = province_definition
					to = scope:skalholt.province_definition
					type = pop_type:clergy
					culture = root.overlord.culture
					religion = root.religion
					amount = 0.005
					months = 12
				}
			}
		}
	}
}