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.17] 殖民革命与土著冲突

时间范围
事件为动态历史事件,无固定 fromto 日期。触发概率取决于 trigger 条件满足时的月度检查(无指定 monthly_chance,通常为默认概率)。

触发条件

  • 国家正在经历“殖民革命”局势(situation:colonial_revolution)。
  • 国家主流文化属于不列颠文化组(culture_group:british_group)。
  • 国家不是附庸国(is_subject = no)。
  • 国家首都存在(exists = capital)。
  • 首都位于东海岸地区(region:east_coast_region)。
  • 国家正在与至少一个主流文化为美洲原住民(is_culture_native_american = yes)的国家交战。

关键效果

  • 选项flavor_usa.17.a
    • 效果:对首都(root.capital)投下“对抗性炸弹”,应用“计划入侵”修正(antagonism_planned_invasion)。

背景介绍
在殖民革命时期,由不列颠文化背景主导的北美殖民地在东海岸地区建立政权并寻求独立。此事件反映了殖民地与周边美洲原住民部落之间因领土扩张、资源竞争而爆发的武装冲突。当殖民地与土著国家交战时,首都可能面临被计划入侵的紧张局势,体现了边疆地区的不稳定与军事对抗的常态化。

完整事件代码

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

	illustration_tags = {
		10 = armed
		10 = exterior
	}

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

		random_country_at_war_with = {
			limit = {
				culture = { is_culture_native_american =yes }
			}
			save_scope_as = target_country
		}
	}

	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

		any_country_at_war_with = {
			culture = { is_culture_native_american =yes }
		}
	}

	option = {
		name = flavor_usa.17.a

		drop_antagonism_bomb = {
			target = root.capital
			modifier = antagonism_planned_invasion
		}
	}
}