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_vol.1000 指定继承人卡齐米日

时间范围: 1337.1.1 - 1340.1.1(每月 25% 概率) 所属文件: temp/vol/flavor_vol.1000.txt

触发条件

  • 当前国家拥有统治者。
  • 当前统治者为人物 vol_boleslaw_jerzy_ii_piast
  • 当前国家没有继承人。
  • 国家 POL(波兰)、LIT(立陶宛)、VOL(沃里尼亚)均存在。

关键效果

选项 A:选择卡齐米日

  • 历史选项:
  • 触发条件: 人物 pol_casimir_iii_piast 存活。
  • 效果:
    • 设置变量 vol_heir_casimir
    • 增加 nobles_estate(贵族阶层)的阶层满意度,数值为 estate_satisfaction_radical_penalty

选项 B:选择柳巴尔塔斯·格迪米纳斯

  • 触发条件: 人物 lit_liubartas_gediminds 存活。
  • 效果:
    • 设置变量 vol_heir_liubartas
    • 增加 nobles_estate(贵族阶层)的阶层满意度,数值为 estate_satisfaction_radical_penalty

选项 C:选择德米特罗·德德科

  • 触发条件: 人物 vol_dmytro_dedko 存活。
  • 效果:
    • 设置变量 vol_heir_dedko
    • 增加 nobles_estate(贵族阶层)的阶层满意度,数值为 estate_satisfaction_mild_bonus
    • POL(波兰):
      • 添加对 HAL(加利西亚-沃里尼亚王国)的 casus_belli:cb_claim_throne(宣称王位)宣战理由,持续20年。
      • 非静默触发事件 flavor_vol.1001
    • 如果人物 lit_liubartas_gediminds 存活:
      • LIT(立陶宛):
        • 添加对 VOL(沃里尼亚)的 casus_belli:cb_claim_throne(宣称王位)宣战理由,持续20年,关联人物为 lit_liubartas_gediminds
        • 非静默触发事件 flavor_vol.1001

选项 D:我们将等待尤里二世的孩子

  • 效果:
    • 设置变量 vol_waiting_for_heir

背景介绍

该事件模拟了14世纪中叶沃里尼亚公国面临的继承危机。在统治者博莱斯瓦夫-尤里二世·皮雅斯特(Bolesław Jerzy II Piast)去世且无直系继承人的情况下,公国需要从几位候选人中指定继承人。主要竞争者包括波兰国王卡齐米日三世(历史选项)、立陶宛大公家族的柳巴尔塔斯,以及本地贵族德米特罗·德德科。不同的选择将深刻影响沃里尼亚的未来,可能将其引向波兰、立陶宛或维持本地统治,并可能引发邻国的王位宣称与军事干预。

完整事件代码

flavor_vol.1000 = { #Designation of Casimir as heir
	type = country_event
	title = flavor_vol.1000.title
	desc = flavor_vol.1000.desc
	historical_info = flavor_vol.1000.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAL
		from = 1337.1.1
		to = 1340.1.1
		monthly_chance = 25
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		ruler = {
			save_scope_as = target_ruler
		}
		save_scope_as = target_country

		character:lit_liubartas_gediminds ?= {
			save_scope_as = lit_target_claimant
		}
	}

	trigger = {
		has_ruler = yes
		ruler = character:vol_boleslaw_jerzy_ii_piast
		has_heir = no
		country_exists = c:POL
		country_exists = c:LIT
		country_exists = c:VOL
	}

	option = { # Pick Casimir
		name = flavor_vol.1000.a
		historical_option = yes

		trigger = {
			character:pol_casimir_iii_piast = {
				is_alive = yes
			}
		}
		custom_tooltip = flavor_vol.1000.a.tt
		set_variable = vol_heir_casimir
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_radical_penalty }
	}

	option = { #Pick Liubartas Gediminid
		name = flavor_vol.1000.b

		trigger = {
			character:lit_liubartas_gediminds = {
				is_alive = yes
			}
		}
		custom_tooltip = flavor_vol.1000.b.tt
		set_variable = vol_heir_liubartas
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_radical_penalty }
	}

	option = { #Pick Dmytro Dedko
		name = flavor_vol.1000.c

		trigger = {
			character:vol_dmytro_dedko = {
				is_alive = yes
			}
		}
		custom_tooltip = flavor_vol.1000.c.tt
		set_variable = vol_heir_dedko
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }

		c:POL = {
			add_casus_belli = {
				type = casus_belli:cb_claim_throne
				target = c:HAL
				years = 20
			}
			trigger_event_non_silently = flavor_vol.1001
		}
		if = {
			limit = {
				scope:lit_target_claimant = {
					is_alive = yes
				}
			}
			c:LIT = {
				add_casus_belli = {
					type = casus_belli:cb_claim_throne
					target = c:VOL
					character = scope:lit_target_claimant
					years = 20
				}
				trigger_event_non_silently = flavor_vol.1001
			}
		}
	}

	option = { #We will wait for a child of Yuri II
		name = flavor_vol.1000.d

		set_variable = vol_waiting_for_heir
	}
}