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.502] 沙皇来访

时间范围:1717年1月1日 - 1736年1月1日(每月 10% 概率)

触发条件

  • 本国拥有统治者。
  • 国家 RUS(俄罗斯)存在。
  • 本国与 RUS 既不是盟友,也不是宿敌。
  • 本国是独立国家或自治附庸国。
  • 国家 RUS 满足以下条件:
    • 拥有统治者。
    • 不是 FRA(法兰西)的宿敌。
    • 是独立国家或自治附庸国。

关键效果

  • 选项 A:沙皇在宫廷永远受欢迎(历史选项)
    • 获得少量威望加成。
    • 本国统治者外交能力 +8。
    • RUS 互相获得 fra_impressed_russian_tsar 好感度修正。
    • AI选择概率:55%。
  • 选项 B:欢迎来访者,但拒绝其未来访问宫廷的愿望
    • 获得微弱威望加成。
    • 获得微弱正统性加成。
    • 本国统治者外交能力 +8。
    • RUS 互相获得 fra_impressed_russian_tsar_quicker_decay 好感度修正(衰减更快)。
    • AI选择概率:25%。
  • 选项 C:赠予沙皇一份“侮辱性”的离别礼物
    • 本国统治者军事能力 +8,外交能力 -3。
    • RUS 获得对 FRA 的宣战理由 casus_belli:cb_insulted_us
    • AI选择概率:20%。

背景介绍: 此事件基于18世纪初的历史背景,反映了俄罗斯沙皇彼得一世(彼得大帝)及其继任者访问法国宫廷的可能性。彼得一世曾于1717年访问巴黎,旨在考察法国的政治、军事和文化,并寻求对抗瑞典的盟友。该事件模拟了法国宫廷如何应对这样一位强大且意图复杂的君主来访,不同的接待方式将对两国关系产生深远影响。

完整事件代码

flavor_fra.502 = { # A Visit from the Russian Tsar (Based on historical event)
	type = country_event
	fire_only_once = yes
 	title = flavor_fra.502.title
 	desc = flavor_fra.502.desc

	dynamic_historical_event = {
		tag = FRA
		from = 1717.1.1
		to = 1736.1.1
		monthly_chance = 10
	}

 	trigger = {
		has_ruler = yes
		country_exists = c:RUS
		NOT = { is_allied_with = { target = c:RUS } }
		NOT = { is_rival_of = c:RUS	}
		is_independent_or_autonomous_subject = yes
		c:RUS = {
			has_ruler = yes
			NOT = { is_rival_of = c:FRA	}
			is_independent_or_autonomous_subject = yes
		}
 	}

	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
        }
		c:RUS = {
        	ruler ?= {
            	save_scope_as = rus_ruler
        	}
		}
	}

 	option = { # The Tsar will always be welcomed at Court
		name = flavor_fra.502.a
		historical_option = yes
		add_prestige = prestige_mild_bonus
		scope:fra_ruler = {
			add_dip = 8
        }
		add_opinion = { target = c:RUS modifier = fra_impressed_russian_tsar }
		c:RUS = {
			add_opinion = { target = c:FRA modifier = fra_impressed_russian_tsar }
		}
		ai_chance = {
			factor = 0.55
		}
 	}

 	option = { # A welcome vistor, but reject any future desires to visit court
		name = flavor_fra.502.b
		add_prestige = prestige_weak_bonus
		add_legitimacy = legitimacy_weak_bonus
		scope:fra_ruler = {
			add_dip = 8
        }
		add_opinion = { target = c:RUS modifier = fra_impressed_russian_tsar_quicker_decay }
		c:RUS = {
			add_opinion = { target = c:FRA modifier = fra_impressed_russian_tsar_quicker_decay }
		}
		ai_chance = {
			factor = 0.25
		}
 	}

 	option = { # Give the Russian Tsar an 'insulting' parting gift
		name = flavor_fra.502.c
		scope:fra_ruler = {
			add_mil = 8
			add_dip = -3
        }
		c:RUS = {
			add_casus_belli = {
				target = c:FRA
				type = casus_belli:cb_insulted_us
			}
		}
		ai_chance = {
			factor = 0.2
		}
 	}
}