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_pap.9002 归还罗马

时间范围:无特定时间范围(事件触发取决于条件) 触发概率:无特定月度概率(事件触发取决于条件)

触发条件

  • 国际组织 catholic_church 存在。
  • 国家 PAP(教皇国)存在。

关键效果

选项 A:flavor_pap.9002.a

  • AI 选择倾向:基础值为 1,并受以下修正影响:
    • modifier:tolerance_own 值乘以 2。
    • num_cardinals 值增加。
    • societal_value:spiritualist_vs_humanist 值乘以 -0.1。
  • 如果国家 PAP 存在,则将 location:rome 的所有权变更为 PAP
  • 对所有天主教国家(除自身外)添加对事件发起国的 returned_rome 观点修正。

选项 B:flavor_pap.9002.b

  • AI 选择倾向:基础值为 5。
  • 对所有天主教国家(除自身外)添加对事件发起国的 declined_return_rome 观点修正。

背景介绍

该事件涉及罗马的归属问题。作为天主教的中心,罗马的统治权对教皇国及其在天主教世界中的权威具有重要象征意义。事件可能反映了历史上教廷与世俗政权之间关于罗马控制权的争议或协商,选项代表了是否将罗马正式归还给教皇国统治的不同立场,这一决定将直接影响教皇国与其他天主教国家的外交关系。

完整事件代码

flavor_pap.9002 = {
	type = country_event
	title = flavor_pap.9002.title
	desc = flavor_pap.9002.desc

	trigger = {
		exists = international_organization:catholic_church
		country_exists = c:PAP
	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		location:rome = { save_scope_as = target_location }
	}

	option = {
		name = flavor_pap.9002.a

		ai_will_select = {
			value = 1

			add = {
				value = modifier:tolerance_own
				multiply = 2
			}

			add = {
				value = num_cardinals
			}

			add = {
				value = societal_value:spiritualist_vs_humanist
				multiply = -0.1
			}
		}

		if = {
			limit = { country_exists = c:PAP }
		}
		location:rome = {
			change_location_owner = c:PAP
		}

		custom_tooltip = {
			text = accepted_to_return_rome_tt
			religion:catholic = {
				every_country_in_religion = {
					limit = { this != root }
					add_opinion = {
						target = ROOT
						modifier = returned_rome
					}
				}
			}
		}
		
	}
	option = {
		name = flavor_pap.9002.b

		ai_will_select = {		#AI can have a little bit of opportunism as a treat
			value = 5
		}
		
		custom_tooltip = {
			text = declined_to_return_rome_tt
			religion:catholic = {
				every_country_in_religion = {
					limit = { this != root }
					add_opinion = {
						target = ROOT
						modifier = declined_return_rome
					}
				}
			}
		}
	}
}