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.1180 圣女贞德登场

时间范围:1428.1.1 - 1431.1.1(每月 25% 概率触发)

触发条件

  • 国家 c:ENG(英格兰)必须存在。
  • 本国必须拥有君主或继承人。
  • 必须处于 situation:hundred_years_war(百年战争)情境中。
  • 满足以下条件之一:
    1. 拥有变量 recently_lost_to_england
    2. 正在进行的任何一场战争中,战争持续时间超过1年,且本国在这场战争中的战争分数 ≤ -0.33,并且英格兰是战争的攻击方或防御方领导者。
    3. region:france_region(法兰西地区)中,有超过45个地块的拥有者或其最高宗主国是英格兰。

关键效果

  • 选项 A (历史选项)

    • 若战争疲惫度 ≥ 5.00,则获得 war_exhaustion_severe_bonus 的战争疲惫度修正。
    • 获得 army_tradition_extreme_bonus 的陆军传统。
    • 角色 joan_of_arc(圣女贞德)将加入法国,并获得持续300个月的 maid_of_orleans(奥尔良少女)角色修正。
    • AI选择此选项的基础概率为90%。
  • 选项 B

    • 获得 legitimacy_severe_bonus 的合法性。
    • 获得 prestige_severe_bonus 的威望。
    • 角色 joan_of_arc(圣女贞德)将默默消失。
    • 获得 estate_satisfaction_mild_bonusestate_type:clergy_estate(教士阶层)满意度。
    • AI选择此选项的基础概率为10%。

背景介绍: 该事件模拟了百年战争期间,法国在军事上陷入困境时,传奇人物圣女贞德(Jeanne d’Arc)的登场。根据历史,贞德自称受到神启,带领法国军队扭转战局,尤其是在奥尔良围城战中取得关键胜利。事件反映了法国在战争低谷时期可能出现的民族英雄,以及王室和教会对此的不同态度。

完整事件代码

flavor_fra.1180 = { # Jeanne d'Arc
	type = country_event
	title = flavor_fra.1180.title
    desc = flavor_fra.1180.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = FRA
		from = 1428.1.1
		to = 1431.1.1
		monthly_chance = 25
	}

	trigger = {
		country_exists = c:ENG
		OR = {
			has_ruler = yes
			has_heir = yes
		}
		is_situation_active = situation:hundred_years_war
		OR = {
			has_variable = recently_lost_to_england
			any_current_war = {
				war_length_in_years > 1
				root = {
					war_score_in_war = {
						war = prev
						value <= -0.33
					}
				}
				OR = {
					attacker_leader = c:ENG
					defender_leader = c:ENG
				}
			}
			region:france_region = {
				any_location_in_region = {
					owner.top_overlord_or_this ?= c:ENG
					count > 45
				}
			}
		}
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		create_character = {
			first_name = name_joanna
			last_name = d_arc
			female = yes
			adm = { 30 100 }
			dip = { 80 100 }
			mil = { 60 100 }
			culture = culture:lorrain
			birth_location = location:la_mothe_en_bassigny
			religion = religion:catholic
			female = yes
			birth_date = 1412.1.1
			add_trait = trait:inspirational_leader_general
			estate = estate_type:peasants_estate
			save_scope_as = joan_of_arc
			script = joan_of_arc
		}
		ruler_or_heir_if_regent ?= {
			save_scope_as = fra_ruler
		}
	}

	option = {
		name = flavor_fra.1180.a
		historical_option = yes
		custom_tooltip = joan_of_arc_may_lead_tt
		if = {
			limit = {
				war_exhaustion >= 5.00
			}
			add_war_exhaustion = war_exhaustion_severe_bonus
		}
		ai_chance = {
			base = 90
		}
		add_army_tradition = army_tradition_extreme_bonus
		character:joan_of_arc = {
			move_country = c:FRA
			add_character_modifier = {
				modifier = maid_of_orleans
				months = 300
				mode = add
			}
		}
	}

	option = {
		name = flavor_fra.1180.b
		add_legitimacy = legitimacy_severe_bonus
		add_prestige = prestige_severe_bonus
		custom_tooltip = {
			text = joan_of_arc_disappears_tt
			kill_character_silently = scope:joan_of_arc
		}
		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}
		ai_chance = {
			base = 10
		}
	}
}