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_khm.1101 捕获翡翠佛像

时间范围
事件无明确 fromto 日期限制,触发概率未指定(代码中无 monthly_chance 字段)。

触发条件
事件为动态触发,无显式 trigger 字段。从 immediate 部分推断,事件可能在特定条件下自动触发,涉及:

  • 存在地点 angkor
  • 该地点处于围城状态(siege
  • 存在名为 emerald_buddha 的艺术品(work_of_art

关键效果

  • 选项 Aflavor_khm.1101.a):
    • 增加少量威望(add_prestige = prestige_mild_bonus

背景介绍
该事件描述了在吴哥(Angkor)地区围城期间,围攻方成功捕获了著名的“翡翠佛像”(Emerald Buddha)这一历史性时刻。翡翠佛像是东南亚佛教文化中极具象征意义的圣物,其易手往往标志着地区权力与宗教影响力的重大转移。事件反映了中世纪东南亚王国间在战争中对宗教圣物的争夺,以及这类事件对国家威望的直接影响。

完整事件代码

flavor_khm.1101 = { #Capture of the Emerald Buddha
	hide_portraits = yes
	type = country_event
	title = flavor_khm.1101.title
	desc = flavor_khm.1101.desc

	illustration_tags = {
		10 = happy
		10 = exterior
	}

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

		location:angkor = {
			save_scope_as = target_location
		}
		scope:target_location.siege = {
			random_besieging_unit = {
				owner = {
					save_scope_as = siege_leader
				}
			}
		}
		random_work_of_art = {
			limit = { this = work_of_art:emerald_buddha }
			save_scope_as = target_art
		}
	}

	option = {
		name = flavor_khm.1101.a

		add_prestige = prestige_mild_bonus
	}
}