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.1176 巩固诺曼底领地

时间范围:1380.1.1 - 1410.1.1,每月 12% 概率触发

触发条件

  • 国家存在变量 disloyal_normandy_fired
  • 国家拥有统治者。
  • 国家 NRM(诺曼底)存在。
  • 国家 NRM 需满足以下所有条件:
    • 没有国家修正 fra_nrm_seeking_support_abroad
    • FRA(法兰西)的附庸国。
    • 附庸忠诚度大于 85。
    • 拥有的省份数量少于 30。

关键效果

  • 选项 A (历史选项)
    • 社会价值观 centralization_vs_decentralization 向“集权”方向轻微移动。
    • 吞并国家 NRM
    • 隐藏效果:为 NRM 的所有核心省份添加 FRA 的核心,并将这些省份的整合等级设置为“核心”。
  • 选项 B
    • 增加少量正统性。
    • 为国家 NRM 添加持续 25 年的国家修正 fra_loyal_nrm_lands

背景介绍: 在百年战争期间,法兰西王室持续面临内部整合的挑战。诺曼底公国作为法兰西王权下的重要封地,其忠诚度与稳定对王国的统一至关重要。此事件反映了法兰西国王在14世纪末至15世纪初,面对一个相对忠诚但独立的诺曼底附庸时,所面临的政治抉择:是选择直接吞并以加强中央集权,还是通过授予特权来维持其忠诚。

完整事件代码

flavor_fra.1176 = { # Consolidating the Norman Domain
	type = country_event
	title = flavor_fra.1176.title
	desc = flavor_fra.1176.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = FRA
		from = 1380.1.1
		to = 1410.1.1
		monthly_chance = 12
	}

	trigger = {
		has_variable = disloyal_normandy_fired
		has_ruler = yes
		country_exists = c:NRM
		c:NRM ?= {
			NOT = { has_country_modifier = fra_nrm_seeking_support_abroad }
			is_subject_of = c:FRA
			subject_loyalty > 85
			num_locations < 30
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:nobles_estate }
		ruler ?= {
            save_scope_as = fra_ruler
        }
		c:NRM ?= {
			save_scope_as = norman_nation
		}
	}

	illustration_tags = {
		10 = happy
		10 = interior
	}

	option = {
		name = flavor_fra.1176.a
		historical_option = yes
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_minor_move_to_left
		}
		annex_country = { country = c:NRM }
		hidden_effect = {
			c:NRM = {
				every_core_location = {
					add_core = c:FRA
					change_integration_level = core
				}
			}
		}
	}
	
	option = {
		name = flavor_fra.1176.b
		add_legitimacy = legitimacy_mild_bonus
		c:NRM = {
			add_country_modifier = { modifier = fra_loyal_nrm_lands years = 25 mode = add }
		}
	}
	
	after = {
		remove_variable = disloyal_normandy_fired
		remove_variable = norman_lords_disloyal
	}
}