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_hab.42 马丁·西本布格尔的审判

时间范围:1520.1.1 - 1550.1.1(每月 1% 概率)

触发条件

  • 国家拥有变量 siebenburger_trial
  • 国家拥有维也纳(Vienna)地区。

关键效果

  • 选项 A
    • 获得大量威望。
    • 将目标人物(马丁·西本布格尔)移动至本国。
    • 贵族阶层与市民阶层满意度大幅下降。
  • 选项 B(历史选项)
    • 处决目标人物(马丁·西本布格尔)。
    • 贵族阶层与市民阶层满意度小幅提升。

背景介绍: 该事件模拟了16世纪上半叶,哈布斯堡君主国(奥地利)对来自特兰西瓦尼亚的市民阶层人物马丁·西本布格尔的审判。马丁·西本布格尔可能因其背景、活动或主张,在维也纳引发了政治风波。事件反映了当时中央政权与地方精英、不同社会阶层(贵族与市民)之间的紧张关系。统治者面临选择:是接纳此人并承担阶层不满,还是顺应贵族与市民的意愿将其处决以稳定局面。

完整事件代码

flavor_hab.42 = { #The Trial of Martin Siebenbürger
	type = country_event
	title = flavor_hab.42.title
	desc = flavor_hab.42.desc

	fire_only_once = yes

	historical_info = flavor_hab.42.historical_info

	dynamic_historical_event = {
		tag = HAB
		from = 1520.1.1
		to = 1550.1.1
		monthly_chance = 1
	}

	trigger = {
		has_variable = siebenburger_trial
		owns = location:vienna
	}

	immediate = {
		create_character = {
			first_name = name_martin
			last_name = Siebenburger
			birth_date = 1475.1.1
			birth_location = location:sibiu
			estate = estate_type:burghers_estate
			adm = { 20 70 }
			dip = { 20 70 }
			mil = { 20 70 }
			culture = culture:german_transylvanian
			save_scope_as = target_character
			script = hab_martin_siebenburger
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_hab.42.a
		add_prestige = prestige_severe_bonus
        scope:target_character = {
            move_country = root
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_severe_penalty }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_severe_penalty }
	}

	option = {
		name = flavor_hab.42.b
		historical_option = yes
		kill_character = {
			target = scope:target_character
			reason = execution
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_bonus }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_bonus }
	}

	after = {
		remove_variable = siebenburger_trial
	}
}