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_dan_teu.8 条顿骑士团购买爱沙尼亚

时间范围:未指定具体 fromto 日期,事件触发概率未指定 monthly_chance

触发条件

  • 此事件由其他事件或脚本触发,代码中未直接定义 trigger 字段。

关键效果

  • 选项 A (历史选项)
    • 若爱沙尼亚省份定义(estonia_province)内的所有地块当前所有者为叛乱方(scope:the_rebellion),则将这些地块添加为核心领土给条顿骑士团(scope:teu_receives_estonia)。
    • 支付一笔金额为 local_var:teu_price_for_estonia 的黄金。
    • 工具提示显示:丹麦(scope:TEU_denmark_from)获得相同金额的黄金。
    • 设置丹麦变量 TEU_teutons_accepted
  • 选项 B
    • 获得少量威望(prestige_mild_bonus)。
    • 社会价值观向“中央集权 vs 地方分权”的左侧(即更倾向于中央集权)大幅移动(societal_value_large_move_to_left)。
    • 设置丹麦变量 TEU_teutons_denied

事件后续

  • 无论选择哪个选项,事件结束后都会立即触发丹麦(scope:TEU_denmark_from)的后续事件 flavor_dan_teu.9

背景介绍: 此事件模拟了历史上条顿骑士团从丹麦王国手中购买爱沙尼亚领土的交易。在13世纪,丹麦曾征服爱沙尼亚北部,但后来因统治成本和管理困难,选择将这片领土出售给条顿骑士团。这一交易巩固了条顿骑士团在波罗的海地区的势力,并影响了该地区后续的政治与宗教格局。

完整事件代码

flavor_dan_teu.8 = {
	type = country_event
	title = flavor_dan_teu.8.title
	desc = flavor_dan_teu.8.desc
	historical_info = flavor_dan_teu.8.historical_info

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	
	option = {
		name = flavor_dan_teu.8.a
		
		historical_option = yes

		
		province_definition:estonia_province = {
			every_location_in_province_definition = {
				limit = {
					owner = scope:the_rebellion
				}
				add_core = scope:teu_receives_estonia
			}
		}

		add_gold = {
			value = local_var:teu_price_for_estonia
			multiply = -1
		}
		show_as_tooltip = {
			scope:TEU_denmark_from = {
				add_gold = local_var:teu_price_for_estonia
			}
		}

		scope:TEU_denmark_from = { set_variable = TEU_teutons_accepted }
	}

	option = {
		name = flavor_dan_teu.8.b
		
		add_prestige = prestige_mild_bonus

		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_large_move_to_left
		}

		scope:TEU_denmark_from = { set_variable = TEU_teutons_denied }
	}

	after = {
		scope:TEU_denmark_from = {
			trigger_event_non_silently = flavor_dan_teu.9
		}
	}
}