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.206] 苏格兰议会的衰落

时间范围:1485.1.1 - 1510.1.1(每月 20% 概率)

触发条件

  • 国家拥有统治者。
  • 国家未处于战争状态。

关键效果

  • 选项 A:议会只在需要时召开。
    • 历史选项:是
    • 效果:
      • 获得大量威望加成。
      • 获得轻微稳定性惩罚。
      • 添加国家修正 sco_decline_of_parliament,持续12年(叠加并延长)。
      • AI选择权重:50%
  • 选项 B:让我们像过去一样重新召开议会。
    • 效果:
      • 获得轻微正统性加成。
      • 获得轻微稳定性加成。
      • 添加国家修正 sco_summoning_of_parliament,持续12年(叠加并延长)。
      • AI选择权重:50%

背景介绍: 在15世纪末至16世纪初,苏格兰王国的议会制度经历了显著的衰落。随着王权的加强和行政管理的中央化,苏格兰议会(或称“三级会议”)的召开频率和实际权力逐渐减弱。国王倾向于只在面临重大事务(如战争、税收或法律改革)时才召集议会,这削弱了议会作为国家常设立法和监督机构的传统角色。这一事件反映了苏格兰从封建议会政治向更为集权的君主制过渡的关键时期。

完整事件代码

flavor_sco.206 = { # The Decline of the Scottish Parliament
	type = country_event
	fire_only_once = yes
 	title = flavor_sco.206.title
 	desc = flavor_sco.206.desc

	dynamic_historical_event = {
		tag = SCO
		from = 1485.1.1
		to = 1510.1.1
		monthly_chance = 20
	}

 	trigger = {
		has_ruler = yes
		at_war = no
 	}

	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 = { # The parliament will only be summoned when needed.
		name = flavor_sco.206.a
		historical_option = yes
		add_prestige = prestige_severe_bonus
		add_stability = stability_mild_penalty
		add_country_modifier = { modifier = sco_decline_of_parliament years = 12 mode = add_and_extend }
		ai_chance = {
			factor = 0.5
		}
 	}

 	option = { # Let us move to reconvene parliament like the days of old.
		name = flavor_sco.206.b
		add_legitimacy = legitimacy_mild_bonus
		add_stability = stability_mild_bonus
		add_country_modifier = { modifier = sco_summoning_of_parliament years = 12 mode = add_and_extend }
		ai_chance = {
			factor = 0.5
		}
 	}
}