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.1175 诺曼底领主不忠

时间范围:1376.1.1 - 1395.1.1 (每月 100% 概率)

触发条件

  • 法国(FRA)拥有统治者。
  • 法国拥有变量 norman_lords_disloyal
  • 诺曼底国家(NRM)存在。
  • 诺曼底是法国的附属国。
  • 满足以下条件之一:
    • 法国是英格兰(ENG)的宿敌。
    • 英格兰是法国的宿敌,并且英格兰是独立或自治的附属国。
  • “百年战争”局势处于活跃状态。

关键效果

  • 选项 A:镇压诺曼领主
    • 历史选项:是
    • 效果:
      • 增加少量稳定度。
      • 诺曼底获得国家修正 fra_disloyal_norman_lords,持续10年。
      • 显示自定义提示 normandy_event_chain_reward
  • 选项 B:安抚诺曼领主,避免激怒其他附庸
    • 效果:
      • 减少少量正统性。
      • 法国获得国家修正 fra_appeasing_norman_lords,持续10年。
      • 诺曼底获得国家修正 fra_disloyal_norman_lords_appeased,持续10年。
      • 显示自定义提示 normandy_event_chain_reward

背景介绍: 在百年战争期间,法国王室对诺曼底地区的控制面临挑战。诺曼底的领主们可能因对法国王室政策的不满、英格兰的煽动或自身利益的考量而表现出不忠。法国国王需要决定是采取强硬手段镇压这些不安分的领主,还是通过安抚来维持王国的表面统一,避免其他地区效仿。

完整事件代码

flavor_fra.1175 = { # Disloyalty in Normandy
	type = country_event
	title = flavor_fra.1175.title
	desc = flavor_fra.1175.desc

	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1376.1.1
		to = 1395.1.1
		monthly_chance = 100
	}

	trigger = {
		has_ruler = yes
		has_variable = norman_lords_disloyal
		country_exists = c:NRM
		c:NRM ?= {
			is_subject_of = c:FRA
		}
		OR = {
			is_rival_of = c:ENG
			c:ENG = {
				is_rival_of = c:FRA
				is_independent_or_autonomous_subject = yes
			}
		}
		is_situation_active = situation:hundred_years_war
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		set_variable = { name = disloyal_normandy_fired value = 1 }
		c:NRM ?= {
			save_scope_as = norman_nation
		}
		c:ENG ?= {
			save_scope_as = english_nation
		}
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}

	option = { # Clamp down on the Norman lords
		name = flavor_fra.1175.a
		historical_option = yes
		add_stability = stability_mild_bonus
		c:NRM = {
			add_country_modifier = { modifier = fra_disloyal_norman_lords years = 10 mode = add }
		}
		custom_tooltip = normandy_event_chain_reward
	}
	
	option = { # Appease the Norman lords to avoid enraging other subjects
		name = flavor_fra.1175.b
		add_legitimacy = legitimacy_mild_penalty
		add_country_modifier = { modifier = fra_appeasing_norman_lords years = 10 mode = add }
		c:NRM = {
			add_country_modifier = { modifier = fra_disloyal_norman_lords_appeased years = 10 mode = add }
		}
		custom_tooltip = normandy_event_chain_reward
	}
}