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.7] 条顿骑士团接收爱沙尼亚

时间范围
无明确 fromto 日期,事件在满足触发条件时可能发生。无 monthly_chance 概率设定。

触发条件

  • 国家 TEU(条顿骑士团)正在参与一场特定的战争:TEU_independence_war_estonian(爱沙尼亚独立战争)。

关键效果

  • 选项 A (flavor_dan_teu.7.a) - 历史选项

    • 社会价值观变化:belligerent_vs_conciliatory(好战 vs 和解)向“好战”方向大幅移动(societal_value_large_move_to_right)。
    • 移除 ROOT(触发事件的国家)在爱沙尼亚省份定义(estonia_province)中所有由叛乱方(the_rebellion)控制的地区的核心。
    • teu_receives_estonia(接收爱沙尼亚的国家)添加在上述相同地区(由叛乱方控制)的核心。
    • 资金转移:teu_receives_estonia 获得 teu_price_for_estonia 金额的金钱,而 the_deciding_nation(最终决定国)支付等额金钱(金额为负)。
    • 触发后续事件:the_deciding_nation 将触发事件 flavor_dan_teu.8
  • 选项 B (flavor_dan_teu.7.b)

    • 移除 ROOT 在爱沙尼亚省份定义中所有由叛乱方控制的地区的核心。

背景介绍
该事件模拟了条顿骑士团在爱沙尼亚独立战争期间,面临是否接收爱沙尼亚领土的抉择。历史上,条顿骑士团曾与利沃尼亚骑士团(LIV)关系密切,并在该地区拥有重要利益。事件中,若利沃尼亚骑士团存在且为条顿骑士团的附庸,则由其决定接收事宜;否则由条顿骑士团自行决定。事件涉及领土核心的变更、社会价值观的调整以及可能的大额资金交易,反映了中世纪波罗的海地区领土争端与政治交易的复杂性。

完整事件代码

flavor_dan_teu.7 = {
	type = country_event
	title = flavor_dan_teu.7.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {
					scope:the_deciding_nation = scope:teu_receives_estonia
				}
				desc = flavor_dan_teu.7.desc_no_hyperlink
			}
			triggered_desc = {
				trigger = {
					always = yes
				}
				desc = flavor_dan_teu.7.desc_hyperlink
			}
		}
	}
	historical_info = flavor_dan_teu.7.historical_info

	trigger = {
		c:TEU = { 
			any_current_war = {
				this = scope:TEU_independence_war_estonian
			}
		}
	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {	
		scope:TEU_independence_war_estonian = {
			event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		}	
		if = {
			limit = {
				country_exists = c:LIV
				c:LIV = {
					is_subject_of = c:TEU 
				}
			}			
			c:LIV = { save_scope_as = teu_receives_estonia }
		}
		else = {
			c:TEU = { save_scope_as = teu_receives_estonia }
		}
		
		ruler_or_regent = {
			save_scope_as = ruler_or_regent_scope
		}
		scope:teu_receives_estonia = {
			save_scope_as = the_deciding_nation	
		}
		while = {
			limit = {
				scope:the_deciding_nation = {
					is_subject = yes
				}
			}
			scope:the_deciding_nation.overlord = {
				save_scope_as = the_deciding_nation
			}
		}
		scope:the_deciding_nation = {
			ruler_or_regent = {
				save_scope_as = ruler_or_regent_scope_receiver
			}
		}
		set_local_variable = {
			name = teu_price_for_estonia
			value = 0
		}
		province_definition:estonia_province = {
			every_location_in_province_definition = {
				limit = {
					owner = scope:the_rebellion
				}
				change_local_variable = {
					name = teu_price_for_estonia
					add = this.location_tax_base
				}
			}
		}
		change_local_variable = {
			name = teu_price_for_estonia
			multiply = 36
		}
	}

	option = {
		name = flavor_dan_teu.7.a
		
		historical_option = yes
		
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_large_move_to_right
		}

		province_definition:estonia_province = {
			every_location_in_province_definition = {
				limit = {
					owner = scope:the_rebellion
				}
				remove_core = ROOT
			}
		}

		custom_tooltip = teu_if_teutons_accept
		show_as_tooltip = {
			province_definition:estonia_province = {
				every_location_in_province_definition = {
					limit = {
						owner = scope:the_rebellion
					}
					add_core = scope:teu_receives_estonia
				}
			}
			add_gold = local_var:teu_price_for_estonia
			scope:the_deciding_nation = {
				add_gold = {
					value = local_var:teu_price_for_estonia
					multiply = -1
				}
			}
		}
		scope:the_deciding_nation = {
			trigger_event_non_silently = flavor_dan_teu.8
		}
	}

	option = {
		name = flavor_dan_teu.7.b
		
		province_definition:estonia_province = {
			every_location_in_province_definition = {
				limit = {
					owner = scope:the_rebellion
				}
				remove_core = ROOT
			}
		}
	}
}