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_sco.303 艾奥纳法令

时间范围:1605.1.1 - 1616.1.1 (每月 25% 概率)

触发条件

  • 国家拥有统治者。
  • 满足以下任一条件:
    • 拥有阶层特权 estate_privilege:scottish_clans(苏格兰氏族特权)。
    • 拥有阶层特权 estate_privilege:tribes_scotland_gaelic_heritage(苏格兰盖尔遗产部落特权)。

关键效果

  • 选项 A:实施法令(历史选项)

    • 解锁阶层特权 sco_statutes_of_iona(艾奥纳法令)。
    • 若拥有 estate_privilege:scottish_clans,则撤销该特权。
    • 若拥有 estate_privilege:tribes_scotland_gaelic_heritage,则撤销该特权。
    • 授予阶层特权 estate_privilege:sco_statutes_of_iona
    • 增加少量稳定度。
    • AI 选择概率:75%。
  • 选项 B:允许氏族保留自治权

    • 设置变量 preserved_clan_autonomy = 1
    • 若拥有 estate_privilege:scottish_clans,则撤销该特权并授予 estate_privilege:autonomous_scottish_clans(自治苏格兰氏族特权)。
    • 若拥有 estate_privilege:tribes_scotland_gaelic_heritage,则撤销该特权并授予 estate_privilege:autonomous_tribes_scotland_gaelic_heritage(自治苏格兰盖尔遗产部落特权)。
    • 大幅增加贵族阶层和部落阶层的满意度。
    • AI 选择概率:25%。

背景介绍: 艾奥纳法令是苏格兰国王詹姆斯六世(后成为英格兰国王詹姆斯一世)于1609年颁布的一系列法规,旨在削弱苏格兰西部群岛和北部高地的盖尔氏族首领的权力,并推广英语、新教信仰和低地法律,以加强王室对边远地区的控制。这一事件标志着苏格兰中央政府试图整合其境内仍保持半独立状态的盖尔文化区域。

完整事件代码

flavor_sco.303 = { # The Statutes of Iona
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
 	title = flavor_sco.303.title
 	desc = flavor_sco.303.desc

	dynamic_historical_event = {
		tag = SCO
		from = 1605.1.1
		to = 1616.1.1
		monthly_chance = 25
	}

 	trigger = {
		has_ruler = yes
		OR = {
			has_estate_privilege = estate_privilege:scottish_clans
			has_estate_privilege = estate_privilege:tribes_scotland_gaelic_heritage
		}
 	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

    immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = sco_ruler
        }
	}

 	option = { # Implement the Statutes
		name = flavor_sco.303.a
		historical_option = yes
		unlock_estate_privilege_effect = { type = sco_statutes_of_iona }
		if = {
			limit = { has_estate_privilege = estate_privilege:scottish_clans }
			revoke_estate_privilege = estate_privilege:scottish_clans
		}
		if = {
			limit =  { has_estate_privilege = estate_privilege:tribes_scotland_gaelic_heritage }
			revoke_estate_privilege = estate_privilege:tribes_scotland_gaelic_heritage
		}
		grant_estate_privilege = estate_privilege:sco_statutes_of_iona
		add_stability = stability_mild_bonus
		ai_chance = {
			factor = 0.75
		}
 	}

 	option = { # Allow the clans to retain their autonomy
		name = flavor_sco.303.b
		set_variable = { name = preserved_clan_autonomy value = 1 }
		if = {
			limit = { has_estate_privilege = estate_privilege:scottish_clans }
			revoke_estate_privilege = estate_privilege:scottish_clans
			grant_estate_privilege = estate_privilege:autonomous_scottish_clans
		}
		if = {
			limit =  { has_estate_privilege = estate_privilege:tribes_scotland_gaelic_heritage }
			revoke_estate_privilege = estate_privilege:tribes_scotland_gaelic_heritage
			grant_estate_privilege = estate_privilege:autonomous_tribes_scotland_gaelic_heritage
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_severe_bonus }
		add_estate_satisfaction = { type = estate_type:tribes_estate value = estate_satisfaction_severe_bonus }
		ai_chance = {
			factor = 0.25
		}
 	}
}