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_dlh.1100] 孟加拉附庸整合

时间范围:1340.1.1 - 1380.1.1(每月 3% 概率) 触发条件

  • 国家 BNG 不存在。
  • 国家 STN 存在,是事件触发国的附庸,且由AI控制。
  • 国家 GAU 存在,是事件触发国的附庸,且由AI控制。
  • 国家 SGN 存在,是事件触发国的附庸,且由AI控制。

关键效果

  • 选项 A (flavor_dlh.1100.a):
    • target_country(即人口最多的孟加拉附庸国)触发事件 flavor_dlh.1101
  • 选项 B (flavor_dlh.1100.b):
    • 所有孟加拉附庸国的 liberty_desire(独立倾向)降低 20。

背景介绍: 在14世纪中后期,统治着多个孟加拉地区附庸国的势力面临着一个关键的政治抉择。这些附庸国(如STN、GAU、SGN)在文化和地域上同属孟加拉,而宗主国则有机会通过不同的策略来整合或安抚这一地区。此事件模拟了宗主国如何应对这一局面:是选择推动其中一个主要附庸国进行更深层次的整合,还是普遍性地施以恩惠,降低所有附庸的独立倾向以维持现状。

完整事件代码

flavor_dlh.1100 = {
	hide_portraits = yes
	type = country_event
	title = flavor_dlh.1100.title
	desc = flavor_dlh.1100.desc

	illustration_tags = {
		10 = interior
		10 = regular
	}

	dynamic_historical_event = {
		tag = DLH
		from = 1340.1.1
		to = 1380.1.1
		monthly_chance = 3
	}

	fire_only_once = yes

	trigger = {
		NOT = { exists = c:BNG }
		c:STN ?= {
			exists = yes
			is_subject_of = root
			is_ai = yes
		}
		c:GAU ?= {
			exists = yes
			is_subject_of = root
			is_ai = yes
		}
		c:SGN ?= {
			exists = yes
			is_subject_of = root
			is_ai = yes
		}
	}

	immediate = {
		event_illustration_government_estate_effect = yes
		ordered_subject = {
			order_by = total_population
			limit = {
				is_bengali_country =  yes
			}
			max = 1
			save_scope_as = target_country
			ruler_or_regent ?= {
				save_scope_as = target_character
			}
		}
		ruler_or_regent ?= {
			save_scope_as = target_character2
		}

		save_scope_as = target_country2
	}

	option = {
		name = flavor_dlh.1100.a

		scope:target_country = {
			trigger_event_non_silently = flavor_dlh.1101
		}
	}

	option = {
		name = flavor_dlh.1100.b
		
		every_subject = {
			limit = {
				is_bengali_country = yes
			}
			add_liberty_desire = -20
		}
	}
}