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

ireland.10 吟游诗人的侮辱

时间范围
无特定 fromto 日期限制,事件在满足触发条件后可能发生。
触发概率
monthly_chance 设定,事件触发依赖于条件满足。

触发条件

  • 国家拥有统治者(has_ruler = yes)。
  • 国家满足“拥有吟游诗人”的触发条件(country_has_bards_trigger = yes)。
  • 任意邻国满足“吟游诗人事件10的邻国触发条件”(bard_10_neighbor_country_trigger = yes)。

关键效果

  • 选项 A:释放侮辱!ireland.10.a
    • 对邻国(scope:neighbor_country)触发无声事件 ireland.11,并应用“吟游诗人10邻国效果”(bard_10_neighbor_country_effect = yes)。
    • 改变社会价值观:使“好战 vs 和解”(belligerent_vs_conciliatory)向左移动(societal_value_move_to_left)。
  • 选项 B:保留侮辱!ireland.10.b
    • 增加“弱效合法性奖励”(add_legitimacy = legitimacy_weak_bonus)。
    • 改变社会价值观:使“好战 vs 和解”(belligerent_vs_conciliatory)向右移动(societal_value_move_to_right)。

背景介绍
在爱尔兰的文化传统中,吟游诗人不仅是艺术家,也是政治与社会评论的重要声音。他们创作的诗歌和歌曲能够颂扬领袖的功绩,也能以尖锐的讽刺攻击敌人。当一位吟游诗人针对邻国统治者创作了一首侮辱性的诗歌时,本国统治者面临抉择:是允许诗人公开传播这首诗歌以羞辱对手,还是出于外交谨慎而压制它?这一选择不仅影响两国关系,也反映了统治者自身对冲突与和解的态度。

完整事件代码

ireland.10 = {
	type = country_event	
	title = ireland.10.title
	desc = ireland.10.desc
	
	trigger = {
		has_ruler = yes
		country_has_bards_trigger = yes

		any_neighbor_country = {
			bard_10_neighbor_country_trigger = yes
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		save_scope_as = bard_country
		ruler = { save_scope_as = bard_ruler }
		random_neighbor_country = {
			save_scope_as = neighbor_country
			limit = {
				bard_10_neighbor_country_trigger = yes
			}
			ruler = {
				save_scope_as = neighbor_ruler
			}
		}
	}

	# Release the insult!
	option = {
		name = ireland.10.a
		scope:neighbor_country = {
			show_as_tooltip = {
				bard_10_neighbor_country_effect = yes
			}
			trigger_event_silently = ireland.11
		}
		
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_left
		}
	}

	# Withold the insult!
	option = {
		name = ireland.10.b
		add_legitimacy = legitimacy_weak_bonus
		
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_right
		}
	}
}