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_eng.200 伊莎贝拉与法国王室关系

时间范围

1345.1.1 - 1600.1.1,每月 1% 概率触发

触发条件

  • 政府类型为君主制 (government_type = government_type:monarchy)
  • 当前统治者是人物 eng_edward_iii
  • 人物 eng_isabella_of_france 存活且属于本国

关键效果

选项 A (历史选项)

  • 触发条件:列表 french_countries 中至少存在一个国家
  • 效果:
    • 在法国文化圈内,选取一个与本国处于外交距离内且大国分数最高的国家,对其列表 french_countries 中的每个国家添加 1 点关系
    • 该目标国家对本国添加观点修正 eng_capetian_mother
    • 社会价值观 belligerent_vs_conciliatory 向右移动(趋向好战)

选项 B

  • 效果:
    • 获得少量威望 (add_prestige = prestige_mild_bonus)
    • 社会价值观 belligerent_vs_conciliatory 向左移动(趋向和解)

背景介绍

此事件模拟了英格兰国王爱德华三世时期,其母亲——法国卡佩王朝的伊莎贝拉对英法关系的影响。作为法国公主,伊莎贝拉的存在为英格兰王室提供了与法国诸贵族建立特殊联系的纽带,这一关系在英法百年战争的背景下,可能被用作外交筹码以争取法国内部的支持,或强化英格兰自身的王室权威与好战立场。

完整事件代码

flavor_eng.200 = {
	type = country_event

	title = flavor_eng.200.title
	desc = flavor_eng.200.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1345.1.1
		to = 1600.1.1
		monthly_chance = 1
	}

	trigger = {
		government_type = government_type:monarchy
		ruler ?= { this = character:eng_edward_iii }

		character:eng_isabella_of_france ?= {
			is_alive = yes
			owner = ROOT
		}
	}
	
	illustration_tags = {
		10 = regular
		10 = interior
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		character:eng_isabella_of_france = { save_scope_as = isabella }
		culture:french = {
			every_country_in_culture = {
				limit = {
					within_diplomatic_range = root
				}
				add_to_list = french_countries
			}
		}
	}

	option = {
		name = flavor_eng.200.a
		historical_option = yes
		trigger = {
			list_size = { name = french_countries value >= 1 }
		}

		culture:french = {
			ordered_country_in_culture = {
				limit = {
					within_diplomatic_range = root
				}
				order_by = modifier:great_power_score
				max = {
					every_in_list = {
						list = french_countries
						add = 1
					}
				}
				add_opinion = {
					target = root
					modifier = eng_capetian_mother
				}
			}
		}

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_right
		}
	}

	option = {
		name = flavor_eng.200.b

		add_prestige = prestige_mild_bonus

		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_left
		}
	}
}