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_maj.27] 关键人物登场

时间范围
无明确起止日期(fromto 未定义),事件在满足触发条件时可能发生。

触发条件

  • 目标角色 scope:target_character 必须存活(is_alive = yes)。

关键效果

  • 选项 Aflavor_maj.27.a):
    • 将目标角色 scope:target_character 设置为新统治者(set_new_ruler)。
    • 使当前国家成为 scope:from 的附庸国(subject_type:vassal)。
    • 将国家标签更改为 PGRchange_country_tag = PGR)。
    • 隐藏效果:
      • 设置国家标志为 PGR
      • 更改国家形容词为 PGR_ADJ
      • 更改国家颜色为 map_PGR
      • 更改国家名称为 PGR

背景介绍
该事件涉及马来半岛或印度尼西亚地区的一个政治变动,通过拥立一位关键人物为新统治者,并使其国家成为另一势力的附庸,同时完成国家身份的重塑(包括标签、名称、颜色等)。这通常反映了当地政权在外部影响下的更迭或重组。

完整事件代码

flavor_maj.27 = {
	type = country_event
	title = flavor_maj.27.title
	desc = flavor_maj.27.desc

	major = yes
	major_trigger = {
		OR = {
			this = scope:from
			capital ?= {
				OR = {
					area = area:malay_peninsula_area
					region = region:indonesia_region
				}
			}
		}
	}

	trigger = {
		scope:target_character = {
			is_alive = yes
		}
	}

	option = {
		name = flavor_maj.27.a

		set_new_ruler = scope:target_character
		make_subject_of = {
			target = scope:from
			type = subject_type:vassal
		}
		change_country_tag = PGR
		hidden_effect = {
			change_country_flag = PGR
			change_country_adjective = PGR_ADJ
			change_country_color = map_PGR
			change_country_name = PGR
		}
	}
}