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_eng.79 主显节叛乱

时间范围

  • 无明确 fromto 日期限制。
  • monthly_chance 字段,触发概率由游戏逻辑决定。

触发条件

  • 无明确 trigger 字段,触发条件由游戏引擎或父事件控制。

关键效果

选项 A:flavor_eng.79.a

  • 历史选项:是
  • 效果:
    • 显著提升 nobles_estate(贵族阶层)的满意度。
    • 50% 概率:
      • 创建一个名为 epiphany_rebellion_supportpretender(僭位者)叛军。
      • 角色 eng_john_montagueng_john_hollandeng_tom_holland 加入该叛军。
    • 50% 概率:
      • 角色 eng_john_montagueng_john_hollandeng_tom_holland 被统治者以 execution(处决)方式处死。

选项 B:flavor_eng.79.b

  • 效果:
    • 角色 eng_john_montagueng_john_hollandeng_tom_holland 被统治者以 execution(处决)方式处死。
    • 显著降低 nobles_estate(贵族阶层)的满意度。
    • 获得大量政府力量。

背景介绍

此事件描述了英格兰历史上可能围绕“主显节叛乱”发生的一场政治危机。事件涉及对约翰·蒙塔古、约翰·霍兰德和汤姆·霍兰德等关键人物的处置抉择。选择A(历史选项)反映了历史上统治者试图安抚贵族,但风险是部分贵族可能转而支持叛军或引发处决。选择B则代表统治者采取强硬手段,直接处决相关人物以巩固权力,但这会激怒贵族阶层。

代码块

flavor_eng.79 = {
	hide_portraits = yes
	type = country_event

	title = flavor_eng.79.title
	desc = flavor_eng.79.desc

	illustration_tags = {
        10 = armed
        10 = exterior
    }

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

		location:windsor = { save_scope_as = target_location }

	}

	option = {
		name = flavor_eng.79.a
		historical_option = yes

		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_bonus
		}

		random_list =  {
			50 = {
				create_rebel = {
					category = pretender
					name = epiphany_rebellion_support
					save_scope_as = epiphany_rebellion_support
				}
				character:eng_john_montagu ?= { change_character_allegiance = scope:epiphany_rebellion_support }
				character:eng_john_holland ?= { change_character_allegiance = scope:epiphany_rebellion_support }
				character:eng_tom_holland ?= { change_character_allegiance = scope:epiphany_rebellion_support }
			}
			50 = {
				character:eng_john_montagu ?= {
					kill_character = {
						target = this
						reason = execution
						killer = ruler
					}
				}
				character:eng_john_holland ?= {
					kill_character = {
						target = this
						reason = execution
						killer = ruler
					}
				}
				character:eng_tom_holland ?= {
					kill_character = {
						target = this
						reason = execution
						killer = ruler
					}
				}
			}
		}

	}

	option = {
		name = flavor_eng.79.b

		character:eng_john_montagu ?= {
			kill_character = {
				target = this
				reason = execution
				killer = ruler
			}
		}
		character:eng_john_holland ?= {
			kill_character = {
				target = this
				reason = execution
				killer = ruler
			}
		}
		character:eng_tom_holland ?= {
			kill_character = {
				target = this
				reason = execution
				killer = ruler
			}
		}

		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_penalty
		}

		add_government_power = government_power_extreme_bonus

	}

}