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_vij.1102] 泰米尔叛军领袖被流放

时间范围
无明确 fromto 日期限制,事件通过脚本或条件触发,无 monthly_chance 概率设定。

触发条件
事件代码中未直接定义 trigger 字段,通常由游戏脚本或前置事件(如设置变量 vij_tamil_rebellion)触发。事件执行时会移除变量 vij_tamil_rebellion 并设置变量 vij_exiled_or_killed_rebel_leader

关键效果

  • 历史选项:无明确 historical_option = yes 标记。
  • 选项 flavor_vij.1102.a 效果:
    • 对目标角色(scope:target_character)添加持续 20年 的修正 vij_curtailed_tamil_rebels(模式为叠加并延长)。
    • 所有由玩家控制的、文化为泰米尔(culture:tamil)的省份中,每个泰米尔人口减少 10点 满意度(通过 pop_satisfaction_mild_penalty 实现)。

背景介绍
该事件描述了维贾亚纳加尔帝国(或相关国家)在镇压泰米尔地区叛乱后,将叛军领袖流放的处理结果。流放领袖虽能暂时削弱叛乱组织,但也激化了泰米尔人口的不满,可能导致长期的文化对立与统治不稳。

完整事件代码

flavor_vij.1102 = { #Tamil Rebel Leader is exiled
	type = country_event
	title = flavor_vij.1102.title
	desc = flavor_vij.1102.desc

	illustration_tags = {
		10 = armed
		10 = exterior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:burghers background = pop_type:soldiers }
		set_variable = vij_exiled_or_killed_rebel_leader
		remove_variable = vij_tamil_rebellion
	}

	option = {
		name = flavor_vij.1102.a

		scope:target_character = {
			add_character_modifier = {
				modifier = vij_curtailed_tamil_rebels
				years = 20
				mode = add_and_extend
			}
		}

		custom_tooltip = {
			text = VIJ_EVERY_TAMIL_POP_LOSES_10_SATISFACTION
			every_owned_location = {
				limit = {
					any_pop = {
						owner = root
						culture = culture:tamil
					}
				}
				every_pop = {
					limit = {
						owner = root
						culture = culture:tamil
					}
					add_pop_satisfaction = pop_satisfaction_mild_penalty
				}
			}
		}
	}
}