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_dai.2 大越与占婆的融合

时间范围:1337.1.1 - 1837.1.1(每月 5% 概率)

触发条件

  • 国家为 大越 (DAI)占婆 (CHA)
  • 当国家为 大越 时,占婆 必须不存在;反之,当国家为 占婆 时,大越 必须不存在。
  • 控制 红河三角洲地区 (red_river_delta_area) 至少 65% 的地块。
  • 控制 占婆地区 (champa_area) 至少 65% 的地块。
  • 拥有 升龙 (thang_long)毗阇耶 (vijaya) 两地。

关键效果

  • 选项 A (flavor_dai.2.a) - 历史选项

    • 若未接受目标文化,则将其添加为 已接受文化
    • 根文化与目标文化之间的 文化观感 各提升 1 点。
    • 根文化获得 文化传统:轻微惩罚
    • 目标文化获得 文化影响力:轻微加成
    • 国家 稳定度 获得微弱加成。
    • 社会价值观向 人文主义 (Humanist) 方向大幅移动。
  • 选项 B (flavor_dai.2.b)

    • 国家 稳定度 获得轻微加成。
  • 选项 C (flavor_dai.2.c)

    • 若已接受目标文化,则将其从 已接受文化 中移除。
    • 根文化与目标文化之间的 文化观感 各降低 1 点。
    • 根文化获得 文化影响力:轻微加成
    • 目标文化获得 文化传统:轻微惩罚
    • 触发一次从根文化所在地(升龙或毗阇耶)向目标文化所在地的 移民,持续极长时间,规模为 0.1。

背景介绍: 此事件模拟了历史上大越(越南)与占婆王国在东南亚大陆的长期互动与冲突。当一方国家(大越或占婆)成功征服并稳固控制了对方的核心领土(红河三角洲与占婆地区)及两座关键城市后,将面临如何处理被征服民族文化的抉择。历史路径(选项A)倾向于文化融合与接纳,而其他选项则代表了不同程度的同化或排斥政策,反映了该地区复杂的历史整合过程。

完整事件代码

flavor_dai.2 = {
	type = country_event
	title = flavor_dai.2.title
	desc = flavor_dai.2.desc
	fire_only_once = yes
	dynamic_historical_event = {
		tag = DAI
		tag = CHA
		from = 1337.1.1
		to = 1837.1.1
		monthly_chance = 5
	}
	trigger = {
		OR = {
			AND = {
				tag = CHA
				NOT = { country_exists = c:DAI }
			}
			AND = {
				tag = DAI
				NOT = { country_exists = c:CHA }
			}
		}
		area:red_river_delta_area = {
			any_location_in_area = {
				owner = root
				percent >= 0.65
			}
		}
		area:champa_area = {
			any_location_in_area = {
				owner = root
				percent >= 0.65
			}
		}
		owns = location:thang_long
		owns = location:vijaya
	}
	illustration_tags = {
		10 = regular
		10 = exterior
	}
	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:nobles background = pop_type:soldiers }
		culture = { save_scope_as = root_culture }
		if = {
			limit = { tag = DAI }
			location:thang_long = { save_scope_as = root_location }
			location:vijaya = { save_scope_as = target_location }
			c:CHA = {
				save_scope_as = target_country
				culture = { save_scope_as = target_culture }
			}
			area:champa_area = { save_scope_as = target_area }
		}
		else = {
			location:thang_long = { save_scope_as = target_location }
			location:vijaya = { save_scope_as = root_location }
			c:DAI = {
				save_scope_as = target_country
				culture = { save_scope_as = target_culture }
			}
			area:red_river_delta_area = { save_scope_as = target_area }
		}
	}
	option = {
		name = flavor_dai.2.a
		historical_option = yes
		if = {
			limit = { NOT = { has_accepted_culture = scope:target_culture } }
			add_accepted_culture = scope:target_culture
		}
		scope:root_culture = {
			change_cultural_view = { target = scope:target_culture change = 1 }
			add_cultural_tradition = cultural_tradition_mild_penalty
		}
		scope:target_culture = {
			change_cultural_view = { target = scope:root_culture change = 1 }
			add_cultural_influence = cultural_influence_mild_bonus
		}
		add_stability = stability_weak_bonus
		change_societal_value = { type = spiritualist_vs_humanist value = societal_value_large_move_to_right }
	}
	option = {
		name = flavor_dai.2.b
		add_stability = stability_mild_bonus
	}
	option = {
		name = flavor_dai.2.c
		if = {
			limit = { has_accepted_culture = scope:target_culture }
			remove_accepted_culture = scope:target_culture
		}
		scope:root_culture = {
			change_cultural_view = { target = scope:target_culture change = -1 }
			add_cultural_influence = cultural_influence_mild_bonus
		}
		scope:target_culture = {
			change_cultural_view = { target = scope:root_culture change = -1 }
			add_cultural_tradition = cultural_tradition_mild_penalty
		}
		add_migration = {
			owner = ROOT
			from = scope:root_location.province_definition
			to = scope:target_location.province_definition
			culture = scope:root_culture
			months = modifier_duration_months_very_long
			amount = 0.1
		}
	}
	after = {
		scope:target_area = {
			custom_tooltip = {
				text = flavor_dai.2.tt
				every_location_in_area = {
					limit = { owner = ROOT }
					change_integration_progress = integration_progress_mild_bonus
				}
			}
		}
	}
}