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_teu.5] 条顿骑士团的十字军热忱

时间范围
无明确 fromto 日期限制,事件触发后仅发生一次 (fire_only_once = yes)。

触发条件

  • 国家标签为 TEU(条顿骑士团)。
  • 国家宗教为 天主教 (religion = religion:catholic)。
  • 存在至少一个邻国满足以下所有条件:
    • 国家标签为 NOR
    • 宗教属于 基督教组 (religion.group = religion_group:christian)。
    • 对条顿骑士团(ROOT)持 友好 态度 (is_friendly_with = ROOT)。
    • 对条顿骑士团的 看法 ≥ 100
    • 是条顿骑士团的 盟友 (is_allied_with = { target = ROOT })。

关键效果

  • 选项 A (flavor_teu.5.a)
    • 历史选项 (historical_option = yes)。
    • 激活 TEU_increase_crusader_fervor_bonus 效果(提升十字军热忱奖励)。
    • 获得针对目标国家 (scope:target_nation) 的 吞并宣战理由 (casus_belli:cb_annex)。
    • 增加 轻度奉献值 (add_devotion = devotion_mild_bonus)。
  • 选项 B (flavor_teu.5.b)
    • 社会价值观向 灵性主义 方向轻微偏移 (change_societal_value = { type = spiritualist_vs_humanist value = societal_value_minor_move_to_left })。

背景介绍
作为中世纪波罗的海地区的主要天主教军事修会,条顿骑士团长期致力于向周边异教地区传播信仰并扩张领土。此事件模拟了骑士团在面对一个关系友好、同为基督教邻国(挪威)时可能面临的内外抉择:是遵循其十字军使命与扩张传统,利用盟友的信任寻求领土兼并;还是转向更内省与灵性的发展道路,反思其军事修会的本质。

完整事件代码

flavor_teu.5 = {
	type = country_event
	title = flavor_teu.5.title
	desc = flavor_teu.5.desc

	trigger = {
		tag = TEU
		religion = religion:catholic
		any_neighbor_country = {
			NOR = {
				religion.group = religion_group:christian
				is_friendly_with = ROOT
				opinion = {
					target = ROOT
					value >= 100
				}
				is_allied_with = { target = ROOT }
			}
		}
	}

	illustration_tags = {
		10 = armed
		10 = exterior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:clergy background = pop_type:soldiers }
		random_neighbor_country = {
			limit = {
				NOR = {
					religion.group = religion_group:christian
					is_friendly_with = ROOT
					opinion = {
						target = ROOT
						value >= 100
					}
					is_allied_with = { target = ROOT }
				}
			}
			save_scope_as = target_nation
		}
	}

	fire_only_once = yes

	option = {
		name = flavor_teu.5.a

		historical_option = yes

		TEU_increase_crusader_fervor_bonus = yes

		add_casus_belli = {
			type = casus_belli:cb_annex
			target = scope:target_nation
		}

		add_devotion = devotion_mild_bonus
	}
	option = {
		name = flavor_teu.5.b

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_minor_move_to_left
		}
	}
}