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.242 北美殖民地的通信委员会

时间范围

1770年1月1日 - 1790年1月1日,每月有 1% 的概率触发。

触发条件

  • 事件仅对 英格兰 (ENG)大不列颠 (GBR) 国家触发。
  • 事件仅能触发一次。
  • 必须至少拥有一个满足以下条件的殖民领属国:
    • 属国类型为 colonial_nation(殖民领)。
    • 其首都位于 region:east_coast_region(东海岸地区)。
    • liberty_desire(独立倾向)大于等于 25

关键效果

事件提供三个选项:

选项 A (历史选项)

  • 获得少量威望加成 (prestige_mild_bonus)。
  • 所有位于东海岸地区的殖民领属国将获得国家修正 committees_of_correspondence,持续 10 年(若已有则延长持续时间)。
  • 显示自定义提示 flavor_eng.242.tt1flavor_eng.242.tt2

选项 B

  • 遭受少量威望惩罚 (prestige_mild_penalty)。
  • 本国获得国家修正 smugglers_dominating,持续 10 年(若已有则延长持续时间)。
  • 显示自定义提示 flavor_eng.242.tt3

选项 C

  • 触发条件:当前统治者的外交能力 (dip) 大于等于 75
  • 社会价值观 belligerent_vs_conciliatory(好战 vs 安抚)向“安抚”方向移动。
  • 所有位于东海岸地区的殖民领属国的独立倾向 (liberty_desire) 轻微降低 (liberty_desire_mild_minus)。
  • 显示自定义提示 flavor_eng.242.tt4

背景介绍

该事件模拟了18世纪后期,英国北美殖民地独立倾向日益高涨的时期。随着殖民地与母国矛盾的加深,旨在协调各殖民地行动、传递信息的“通信委员会”开始出现,成为推动独立运动的重要组织网络。英国政府对此的反应——无论是试图压制、忽视还是安抚——都将对殖民地的忠诚度产生深远影响。

完整事件代码

flavor_eng.242 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.242.title
	desc = flavor_eng.242.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1770.1.1
		to = 1790.1.1
		monthly_chance = 1
	}

	trigger = {
		any_subject = {
			is_subject_type = colonial_nation
			capital.region = region:east_coast_region
			liberty_desire >= 25
		}
	}
	
	illustration_tags = {
		10 = regular
		10 = interior
	}
	
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:nobles_estate }
		random_subject = {
			limit = {
				is_subject_type = colonial_nation
				capital.region = region:east_coast_region
			}
			save_scope_as = target_country
			capital = {
				save_scope_as = target_location
			}
			ruler = {
				 save_scope_as = target_character
			}
		}
		root = { save_scope_as = target_root_country }
	}

	option = {
		name = flavor_eng.242.a
		historical_option = yes
		add_prestige = prestige_mild_bonus
		random_subject = {
			limit = {
				is_subject_type = colonial_nation
				capital.region = region:east_coast_region
			}
			add_country_modifier = {
				modifier = committees_of_correspondence
				years = 10
				mode = add_and_extend
			}
		}
		custom_tooltip = flavor_eng.242.tt1
		custom_tooltip = flavor_eng.242.tt2
	}

	option = {
		name = flavor_eng.242.b
		add_prestige = prestige_mild_penalty
		add_country_modifier = {
			modifier = smugglers_dominating
			years = 10
			mode = add_and_extend
		}
		custom_tooltip = flavor_eng.242.tt3
	}

	option = {
		name = flavor_eng.242.c
		trigger = {
			ruler = { dip >= 75 }
		}
		change_societal_value = { type = belligerent_vs_conciliatory value = societal_value_move_to_right }
		random_subject = {
			limit = {
				is_subject_type = colonial_nation
				capital.region = region:east_coast_region
			}
			add_liberty_desire = liberty_desire_mild_minus
		}
		custom_tooltip = flavor_eng.242.tt4
	}

	historical_info = flavor_eng.242.historical_info
}