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.2022 库尔与马穆鲁克苏丹谈判

时间范围:1436.1.1 - 1452.1.1(每月 20% 概率)

触发条件

  • 法国(FRA)必须拥有统治者。
  • 马穆鲁克苏丹国(c:MAM)必须存在。
  • 人物“雅克·库尔”(character:jacques_coeur)必须存在且存活。
  • 马穆鲁克苏丹国必须拥有统治者,并且控制开罗(location:cairo)。

关键效果

  • 选项 A(历史选项):这将加强与黎凡特的贸易准入
    • 获得大量金钱(change_gold_effect = { scale = 6 })。
    • 在法国首都市场添加持续240个月的临时需求“fra_trade_with_mamluks”。
    • 在马穆鲁克首都市场添加持续240个月的临时需求“mam_trade_with_france”。
    • 法国首都和开罗地区获得“发展度大幅提升”(development_severe_bonus)和“繁荣度小幅提升”(prosperity_mild_bonus)。
  • 选项 B:拒绝库尔谈判的条约!
    • 获得“威望大幅提升”(prestige_severe_bonus)。
    • 获得“稳定度小幅提升”(stability_mild_bonus)。
    • 获得“教士阶层满意度小幅提升”(estate_satisfaction_weak_bonus)。

背景介绍: 15世纪中叶,法国商人雅克·库尔作为国王查理七世的财政官和贸易代表,积极拓展法国的海外商业网络。他试图与地中海南岸强大的马穆鲁克苏丹国建立直接的贸易关系,以获取东方的奢侈品和资源,从而增强法国的经济实力和王室收入。此事件模拟了库尔与马穆鲁克统治者进行关键谈判的历史可能性。

完整事件代码

flavor_fra.2022 = { # Couer Negotiates with Mamluks Sultans
	type = country_event
	title = flavor_fra.2022.title
	desc = flavor_fra.2022.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1436.1.1
		to = 1452.1.1
		monthly_chance = 20
	}

	trigger = {
		has_ruler = yes
		country_exists = c:MAM
		exists = character:jacques_coeur
		character:jacques_coeur ?= {
			is_alive = yes
		}
		c:MAM ?= {
			has_ruler = yes
			owns = location:cairo
		}
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
		character:jacques_coeur ?= {
			save_scope_as = target_character
		}
		c:MAM ?= {
			save_scope_as = mamluk_country
        	ruler ?= {
            	save_scope_as = mam_ruler
        	}
		}
		capital = { save_scope_as = capital_location }
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	option = { # This will strengthen trade access to the Levant
		name = flavor_fra.2022.a
		historical_option = yes
		change_gold_effect = { scale = 6 }
		capital.market = {
			add_temporary_demand = {
				type = demand:fra_trade_with_mamluks
				months = 240
			}
		}
		c:MAM ?= {
			capital.market = {
				add_temporary_demand = {
					type = demand:mam_trade_with_france
					months = 240
				}
			}
		}
		scope:capital_location = {
			change_development = development_severe_bonus
			change_prosperity = prosperity_mild_bonus
		}

		location:cairo = {
			change_development = development_severe_bonus
			change_prosperity = prosperity_mild_bonus
		}
	}
	
	option = { # Reject the treaty negotiated by Couer!
		name = flavor_fra.2022.b
		add_prestige = prestige_severe_bonus
		add_stability = stability_mild_bonus
		add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_weak_bonus }
	}
}