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_kni.12 新世界的骑士团

时间范围:1600.1.1 - 1700.1.1,每月 10% 概率触发

触发条件

  • 全球变量 new_world_discovered 已存在。
  • 国家在 caribbean_region 地区拥有存在度。
  • caribbean_region 地区内至少有一个省份的所有者为本国,且该省份不是本国的首都省份。
  • 国家的宗教属于 religion_group:christian(基督教宗教组)。

关键效果

  • 选项 A (flavor_kni.12.a) - 历史选项
    • 社会价值观 outward_vs_inward 向“外向”方向发生巨大转变。
    • 社会价值观 land_vs_naval 向“海军”方向发生巨大转变。
    • 触发一次人口迁移:从首都省份迁移至 caribbean_region 地区内一个随机的、非首都的、本国拥有的省份。迁移人口为本国主流文化的 pop_type:peasants(农民阶层),迁移量为 0.05,持续 80 个月。
  • 选项 B (flavor_kni.12.b)
    • 社会价值观 outward_vs_inward 向“内向”方向发生转变。
    • 社会价值观 land_vs_naval 向“陆军”方向发生转变。

背景介绍: 该事件模拟了医院骑士团(KNI)在发现新世界后,于17世纪在加勒比地区建立据点的可能性。作为一支以海军和远征传统著称的基督教军事修会,骑士团面临着是否将重心转向海外扩张的战略抉择。选择向新世界殖民将强化其外向型和海军导向的价值观,而拒绝扩张则会巩固其内向型和陆权传统。

完整事件代码

flavor_kni.12 = { #The Knights of the New World
	type = country_event
	title = flavor_kni.12.title
	desc = flavor_kni.12.desc
	fire_only_once = yes
	historical_info = flavor_kni.12.historical_info

	dynamic_historical_event = {
		tag = KNI
		from = 1600.1.1
		to = 1700.1.1
		monthly_chance = 10
	}

	trigger = {
		has_global_variable = new_world_discovered
		has_presence_in = region:caribbean_region
		region:caribbean_region = {
			any_location_in_region = {
				owner ?= root
				province_definition != root.capital.province_definition
			}
		}
		religion.group = religion_group:christian
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		region:caribbean_region = {
			random_location_in_region = {
				limit = {
					owner ?= root
					province_definition != root.capital.province_definition
				}
				save_scope_as = target_location
			}
		}
	}

	option = {
		name = flavor_kni.12.a
		historical_option = yes
		change_societal_value = { type = outward_vs_inward value = societal_value_huge_move_to_left }
		change_societal_value = { type = land_vs_naval value = societal_value_huge_move_to_right }
		add_migration = {
			owner = this
			from = capital.province_definition
			to = scope:target_location.province_definition
			culture = scope:target_country.culture
			amount = 0.05
			months = 80
			type = pop_type:peasants
		}
	}

	option = {
		name = flavor_kni.12.b
		change_societal_value = { type = outward_vs_inward value = societal_value_move_to_right }
		change_societal_value = { type = land_vs_naval value = societal_value_move_to_left }
	}
}