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_eng.13] 南北争端

时间范围:1337.1.1 - 1600.1.1(每月 1% 概率触发)

触发条件

  • 国家不存在 c:NOL
  • 首都位于 area:home_counties_area
  • 完全拥有 area:northumbria_areaarea:home_counties_area 两个区域。

关键效果

  • 支持北方:为 area:northumbria_area 区域内所有本国拥有的省份增加 prosperity_weak_bonus 的繁荣度。
  • 支持南方:为 area:home_counties_area 区域内所有本国拥有的省份增加 prosperity_weak_bonus 的繁荣度。
  • 调解(历史选项)
    • 触发条件:完全拥有 area:midlands_area 区域。
    • 效果:
      1. area:midlands_area 区域内所有本国拥有的省份增加 prosperity_very_weak_bonus 的繁荣度。
      2. 社会价值观 individualism_vs_communalism 向右侧(个人主义方向)移动 societal_value_large_move_to_right

背景介绍: 在英格兰王国整合其领土的过程中,不同地区之间,尤其是北方与南方之间,时常因资源分配、政策倾斜或文化差异而产生矛盾。中央政府需要在这些区域争端中做出抉择,是偏袒一方以快速平息事态,还是尝试居中调解以维持王国整体的稳定与团结。这一事件反映了中世纪晚期至近代早期英格兰内部的地域政治动态。

完整事件代码

flavor_eng.13 = {
	hide_portraits = yes
	type = country_event
	title = flavor_eng.13.title
	desc = flavor_eng.13.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1337.1.1
		to = 1600.1.1
		monthly_chance = 1
	}

	trigger = {

		NOT = { country_exists = c:NOL }

		capital = {
			area = area:home_counties_area
		}

		own_entire_area = area:northumbria_area
		own_entire_area = area:home_counties_area

	}

	illustration_tags = {
        10 = angry
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		area:northumbria_area = {
			save_scope_as = north
		}
		area:midlands_area = {
			save_scope_as = midlands
		}
		area:home_counties_area = {
			save_scope_as = south
		}
	}

	# Support the North
	option = {
		name = flavor_eng.13.a

		custom_tooltip = {
			text = flavor_eng.13.a.custom
			scope:north = {
				every_location_in_area = {
					limit = { owner ?= root }
					change_prosperity = prosperity_weak_bonus
				}
			}
		}

	}

	# Support the South
	option = {
		name = flavor_eng.13.b

		custom_tooltip = {
			text = flavor_eng.13.b.custom
			scope:south = {
				every_location_in_area = {
					limit = { owner ?= root }
					change_prosperity = prosperity_weak_bonus
				}
			}
		}

	}

	# Mediate
	option = {
		name = flavor_eng.13.c
		trigger = {
			own_entire_area = area:midlands_area
		}

		custom_tooltip = {
			text = flavor_eng.13.c.custom
			scope:midlands = {
				every_location_in_area = {
					limit = { owner ?= root }
					change_prosperity  = prosperity_very_weak_bonus
				}
			}
		}

		change_societal_value = {
			type = individualism_vs_communalism
			value = societal_value_large_move_to_right
		}

	}

	historical_info = flavor_eng.13.historical_info

}