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_ven.26 耶路撒冷的解放

时间范围:1343.1.1 - 1836.1.1(每月 50% 概率触发) 触发条件:玩家国家拥有耶路撒冷(location:jerusalem)地区。

关键效果

  • 选项 A (flavor_ven.26.a):

    • 获得巨额威望(prestige_extreme_bonus)。
    • 获得巨额宗教影响力(religious_influence_extreme_bonus)。
  • 选项 B (flavor_ven.26.b):

    • 在耶路撒冷地区移除玩家国家的核心,并为耶路撒冷王国(c:KOJ)添加核心。
    • 在玩家拥有的地区中,为耶路撒冷王国创建国家。
    • 使耶路撒冷王国成为玩家的附庸国(类型:subject_type:vassal)。
    • 将耶路撒冷王国的国教改为天主教(religion:catholic),并改变其统治者及家族的信仰。
    • 将耶路撒冷王国的政府类型改为君主制(government_type:monarchy)。
    • 为耶路撒冷王国拥有的所有地区添加其核心。
  • 选项 C (flavor_ven.26.c):

    • 在玩家拥有的所有黎凡特地区(area:levant_area)移除玩家国家的核心,并为耶路撒冷王国(c:KOJ)添加核心。
    • 在玩家拥有的地区中,为耶路撒冷王国创建国家。
    • 使耶路撒冷王国成为玩家的附庸国(类型:subject_type:vassal)。
    • 将耶路撒冷王国的国教改为天主教(religion:catholic),并改变其统治者及家族的信仰。
    • 将耶路撒冷王国的政府类型改为君主制(government_type:monarchy)。
    • 为耶路撒冷王国拥有的所有地区添加其核心。

背景介绍: 该事件模拟了威尼斯共和国(VEN)在控制圣城耶路撒冷后可能面临的政治与宗教抉择。作为中世纪地中海的重要贸易与海上力量,威尼斯对黎凡特地区有着深远的影响。事件提供了几种处理这一战略要地的方式:直接宣称其带来的威望与宗教影响力,或通过建立附庸的耶路撒冷王国来间接统治,后者可能涉及仅解放耶路撒冷城或整个黎凡特地区。这反映了十字军东征后期及近代早期,欧洲天主教势力试图在圣地重建基督教统治的复杂历史背景。

完整事件代码

flavor_ven.26 = { #Liberation of Jerusalem
	type = country_event
	title = flavor_ven.26.title
	desc = flavor_ven.26.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = VEN
		from = 1343.1.1
		to = 1836.1.1
		monthly_chance = 50
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

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

	trigger = {
		owns = location:jerusalem
	}

	option = {
		name = flavor_ven.26.a
		add_prestige = prestige_extreme_bonus
		add_religious_influence_if_valid = { VALUE = religious_influence_extreme_bonus }
	}

	option = {
		name = flavor_ven.26.b
		custom_tooltip = {
			text = flavor_ven.26.b.tt
			location:jerusalem = {
				remove_core = root
				add_core = c:KOJ
			}
			create_country_from_cores_in_our_locations = c:KOJ
			c:KOJ = {
				make_subject_of = { target = root type = subject_type:vassal }
				change_religion = religion:catholic
				change_religion_for_ruler_and_family = { country = c:KOJ religion = religion:catholic }
				change_government_type = government_type:monarchy
				every_owned_location = { add_core = c:KOJ }
			}
		}
	}

	option = {
		name = flavor_ven.26.c
		custom_tooltip = {
			text = flavor_ven.26.c.tt
			every_owned_location = {
				limit = {
					area = area:levant_area
				}
				remove_core = root
				add_core = c:KOJ
			}
			create_country_from_cores_in_our_locations = c:KOJ
			c:KOJ = {
				make_subject_of = { target = root type = subject_type:vassal }
				change_religion = religion:catholic
				change_religion_for_ruler_and_family = { country = c:KOJ religion = religion:catholic }
				change_government_type = government_type:monarchy
				every_owned_location = { add_core = c:KOJ }
			}
		}
	}
}