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_ayu.1001] 素可泰/阿瑜陀耶问题(另一方)

时间范围

  • 起始日期:未指定(代码中未包含 from 字段)
  • 结束日期:未指定(代码中未包含 to 字段)
  • 触发概率:未指定(代码中未包含 monthly_chance 字段)

触发条件

  • 代码中未包含 trigger 字段,具体触发条件需参考其他事件或游戏机制。

关键效果

  • 选项A:接受
    • 类型:历史选项(historical_option = yes
    • 效果:目标国家(scope:target_country)将当前继承人(scope:target_heir)设置为新统治者(set_new_ruler)。
  • 选项B:拒绝
    • 效果:目标国家(scope:target_country)增加严重以上的独立倾向(add_liberty_desire = liberty_desire_severe_plus)。

背景介绍
该事件涉及素可泰与阿瑜陀耶之间的历史纠葛,可能反映了14至15世纪暹罗地区政权更迭或继承权争议。事件中一方需决定是否接受对方提出的继承人安排,选择接受将确立新统治者,拒绝则可能加剧附属关系的紧张,引发更高的独立倾向。

完整事件代码

flavor_ayu.1001 = { #The issue of Sukhothai/Ayutthaya (other side)
	type = country_event
	title = flavor_ayu.1001.title
	desc = flavor_ayu.1001.desc

	historical_info = flavor_ayu.1000.historical_info

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = { #Accept
		name = flavor_ayu.1001.a
		historical_option = yes
		scope:target_country = {
			set_new_ruler = scope:target_heir
		}
	}
	option = { #Refuse
		name = flavor_ayu.1001.b
		scope:target_country = {
			add_liberty_desire = liberty_desire_severe_plus
		}
	}

	after = {
		scope:target_origin_country = {
			trigger_event_non_silently = { id = flavor_ayu.1002 }
		}
	}
}