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_usa.1000] 殖民地革命与联邦领导

时间范围
该事件为一次性事件(fire_only_once = yes),无具体起止日期,仅在满足触发条件时可能发生。

触发条件

  • 当前国家正处于“殖民地革命”局势(is_situation_active = situation:colonial_revolution)。
  • 国家主流文化属于不列颠文化组(culture_group:british_group)。
  • 国家不是附庸国(is_subject = no)。
  • 国家首都存在(exists = capital)且位于东海岸地区(region:east_coast_region)。
  • 国家是某一“殖民联邦”类型国际组织的领导者(is_leader_of_international_organization_of_type = { type = colonial_federation })。

关键效果

  • 选项 A(历史选项)
    • 名称:flavor_usa.1000.a
    • 标记为历史选项(historical_option = yes)。
    • 效果:
      • 增加少量稳定度惩罚(add_stability = stability_mild_penalty)。
      • 增加少量威望(add_prestige = prestige_weak_bonus)。
      • 在30天后非静默触发事件 flavor_usa.1001
  • 选项 B
    • 名称:flavor_usa.100.b
    • 效果:
      • 增加少量稳定度奖励(add_stability = stability_mild_bonus)。

背景介绍
在18世纪中后期的北美东海岸,由不列颠文化群体主导的殖民地社会正经历着深刻的内部变革与外部压力。“殖民地革命”局势反映了殖民地与母国之间日益紧张的关系以及对自治权利的追求。作为殖民联邦的领导者,该国正处于决定是否沿着历史轨迹推动独立进程,或是选择更为保守的调和路线的关键十字路口。此事件模拟了领导层在革命前夕所面临的政治抉择及其对国内稳定与后续历史发展的影响。

完整事件代码

flavor_usa.1000 = {
	type = country_event
	title = flavor_usa.1000.title
	desc = flavor_usa.1000.desc

	fire_only_once = yes

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		random_international_organizations_member_of = {
			limit = {
				international_organization_type = international_organization_type:colonial_federation
				leader_country = root
			}
			save_scope_as = target_io
		}
	}

	trigger = {
		is_situation_active = situation:colonial_revolution
		culture = {
			has_culture_group = culture_group:british_group
		}
		is_subject = no
		exists = capital
		capital.region = region:east_coast_region

		is_leader_of_international_organization_of_type = {
			type = colonial_federation
		}
	}

	option = {
		name = flavor_usa.1000.a
		historical_option = yes

		add_stability = stability_mild_penalty
		add_prestige = prestige_weak_bonus
		trigger_event_non_silently = {
			id = flavor_usa.1001
			days = 30
		}
	}

	option = {
		name = flavor_usa.100.b

		add_stability = stability_mild_bonus
	}
}