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_fra.24 萨缪尔·德·尚普兰与休伦人

时间范围:1610.1.1 - 1620.1.1(每月 8% 概率)

触发条件

  • 国家拥有统治者。
  • 存在一个休伦国家,且其首都被法兰西发现。
  • 存在一个易洛魁国家,且其首都被法兰西发现。
  • 角色 samuel_de_champlain 存活。

关键效果

  • 选项 A (flavor_fra.24.a)
    • 设置全局变量 iro_champlain_huron_contact
    • 所有被法兰西发现首都的休伦国家获得对法兰西的“萨缪尔·德·尚普兰”好感度修正。
  • 选项 B (flavor_fra.24.b)
    • 所有被法兰西发现首都的易洛魁国家获得对法兰西的“萨缪尔·德·尚普兰”好感度修正。

背景介绍: 该事件反映了17世纪初法国探险家萨缪尔·德·尚普兰在北美大陆的活动。尚普兰致力于探索圣劳伦斯河流域,并在此过程中与当地的休伦人和易洛魁人建立了联系。他的行动对法国在北美的殖民策略、毛皮贸易网络以及与土著部落的外交关系产生了深远影响,塑造了该地区早期的地缘政治格局。

完整事件代码

flavor_fra.24 = { # Samuel de Champlain and the Hurons
	type = country_event
	title = flavor_fra.24.title
	desc = flavor_fra.24.desc


	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1610.1.1
		to = 1620.1.1
		monthly_chance = 8
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		character:samuel_de_champlain ?= {
			save_scope_as = target_character
		}
	}

	trigger = {
		has_ruler = yes
		any_other_country = {
			is_huron_country = yes
			capital = {
				is_discovered_by = c:FRA
			}
		}

		any_other_country = {
			is_iroquois_country = yes
			capital = {
				is_discovered_by = c:FRA
			}
		}

		character:samuel_de_champlain ?= { is_alive = yes }

	}

	option = {
		name = flavor_fra.24.a
		set_global_variable = iro_champlain_huron_contact
		every_other_country = {
			limit = {
				is_huron_country = yes
				capital = {
					is_discovered_by = c:FRA
				}
			}
			add_opinion = { target = c:FRA modifier = samuel_de_champlain }
		}
	}
	option = {
		name = flavor_fra.24.b
		every_other_country = {
			limit = {
				is_iroquois_country = yes
				capital = {
					is_discovered_by = c:FRA
				}
			}
			add_opinion = { target = c:FRA modifier = samuel_de_champlain }
		}
	}
}