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_wls.15 三方协议

时间范围:1400.1.1 - 1420.1.1 (每月 20% 概率)

触发条件

  • 威尔士统治者 wls_owain_glyndwr 存活且是现任君主。
  • 人物 wls_edmund_mortimer_1376 存活。
  • 英格兰 (ENG) 拥有变量 tripartite_indentureransom_paid_edmund_mortimer

关键效果

  • 选项 A (历史选项)
    • 触发条件:英格兰拥有变量 tripartite_indenture
    • 效果:设置变量 tripartite_indenture。根据是否与英格兰处于战争状态,显示不同的自定义提示文本 (flavor_wls.15.tt1flavor_wls.15.tt2)。
  • 选项 B
    • 触发条件:英格兰拥有变量 tripartite_indenture
    • 效果:设置变量 tripartite_indenturetripartite_indenture_bribe。减少 12 倍规模的金钱。根据是否与英格兰处于战争状态,显示不同的自定义提示文本 (flavor_wls.15.tt3flavor_wls.15.tt4)。
  • 选项 C
    • 触发条件:英格兰拥有变量 tripartite_indenture
    • 效果:显示自定义提示文本 flavor_wls.15.tt5
  • 选项 D
    • 触发条件:英格兰拥有变量 ransom_paid_edmund_mortimer
    • 效果:获得相当于英格兰 (scope:england) 6 个月贸易与税收收入的金钱。显示自定义提示文本 flavor_wls.15.tt6

背景介绍: 此事件围绕 15 世纪初威尔士的独立斗争展开,核心人物是威尔士亲王欧文·格林杜尔。事件涉及与英格兰贵族(如珀西家族和莫蒂默家族)的复杂关系,特别是埃德蒙·莫蒂默的赎金问题以及可能达成的“三方协议”——这是一项旨在瓜分英格兰在威尔士和边境地区领土的秘密协定。事件反映了当时威尔士、英格兰边境贵族以及王权之间错综复杂的政治与军事博弈。

完整事件代码

flavor_wls.15 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
	title = flavor_wls.15.title
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = {	c:ENG = { has_variable = ransom_paid_edmund_mortimer } }
				desc = flavor_wls.15.desc_ransom_paid
			}
			triggered_desc = {
				trigger = { always = yes }
				desc = flavor_wls.15.desc
			}
		}
	}

	dynamic_historical_event = {
		tag = WLS
		from = 1400.1.1
		to = 1420.1.1
		monthly_chance = 20
	}

	trigger = {

		character:wls_owain_glyndwr ?= { is_alive = yes is_ruler = yes }

		character:wls_edmund_mortimer_1376 ?= { is_alive = yes }

		c:ENG = {
			OR = {
			has_variable = tripartite_indenture
			has_variable = ransom_paid_edmund_mortimer
			}
		}

	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		location:shrewsbury = { save_scope_as = shropshire }

		dynasty:percy_dynasty = { save_scope_as = percy_dynasty }

		dynasty:mortimer_dynasty = { save_scope_as = mortimer_dynasty }

		c:ENG = { save_scope_as = england }

		character:wls_edmund_mortimer_1376 ?= { save_scope_as = edmund_mortimer }

		province_definition:northumberland_province = { save_scope_as = northumberland }

		location:cardiff = { save_scope_as = target_location }

	}

	option = {
		historical_option = yes
		name = flavor_wls.15.a
		trigger = { c:ENG = { has_variable = tripartite_indenture } }

		set_variable = { name = tripartite_indenture }

		if = {
			limit = {
				NOT = { is_at_war_with = c:ENG }
			}
			custom_tooltip = flavor_wls.15.tt1
		}
		else = {
			custom_tooltip = flavor_wls.15.tt2
		}



	}

	option = {
		name = flavor_wls.15.b
		trigger = { c:ENG = { has_variable = tripartite_indenture } }

		set_variable = { name = tripartite_indenture }

		set_variable = { name = tripartite_indenture_bribe }

		change_gold_effect = { scale = -12 }

		if = {
			limit = {
				NOT = { is_at_war_with = c:ENG }
			}
			custom_tooltip = flavor_wls.15.tt3
		}
		else = {
			custom_tooltip = flavor_wls.15.tt4
		}

	}

	option = {
		name = flavor_wls.15.c
		trigger = { c:ENG = { has_variable = tripartite_indenture } }

		custom_tooltip = flavor_wls.15.tt5

	}


	option = {
		name = flavor_wls.15.d
		trigger = { c:ENG = { has_variable = ransom_paid_edmund_mortimer } }

		add_gold = {
			value = scope:england.monthly_income_trade_and_tax
			multiply = 6
		}

		custom_tooltip = flavor_wls.15.tt6

	}

}