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_ira.23 格鲁吉亚与亚美尼亚文化事务

时间范围:1337.1.1 - 1600.1.1(每月 5% 概率触发)

触发条件

  • 国家 tag = IRA
  • 国家人口中,culture:georgian_culture(格鲁吉亚文化)的占比大于0。
  • 国家拥有统治者 has_ruler = yes

关键效果

  • 选项 A flavor_ira.23.a

    • 增加 estate_type:nobles_estate(贵族阶层)的阶层满意度 estate_satisfaction_mild_penalty
    • 为该国所有拥有者 owner = root,且文化为 culture:georgian_culture(格鲁吉亚文化)或 culture:armenian_culture(亚美尼亚文化)的人口,增加 pop_satisfaction_severe_bonus(人口满意度大幅增益)。
  • 选项 B flavor_ira.23.b

    • 为国家主流文化增加 cultural_tradition_mild_bonus(文化传统轻度增益)。
    • 为该国所有拥有者 owner = root,且文化为 culture:georgian_culture(格鲁吉亚文化)或 culture:armenian_culture(亚美尼亚文化)的人口,增加 pop_satisfaction_mild_penalty(人口满意度轻度减益)。

背景介绍: 在14至16世纪,作为统治者的IRA国家,其境内生活着格鲁吉亚与亚美尼亚等重要的文化群体。如何对待这些具有独特历史与传统的民族,是国家治理面临的关键问题。统治者需要在安抚本土贵族阶层与促进国家文化融合之间做出抉择,不同的政策将直接影响这些少数民族的向心力与国家的稳定。

完整事件代码

flavor_ira.23 = {
	type = country_event
	title = flavor_ira.23.title
	desc = flavor_ira.23.desc

	dynamic_historical_event = {
		tag = IRA
		from = 1337.1.1
		to = 1600.1.1
		monthly_chance = 5
	}

	fire_only_once = yes

	trigger = {
		culture_percentage_in_country = {
			culture = culture:georgian_culture
			value > 0
		}
		has_ruler = yes
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = { save_scope_as = target_ruler }
	}

	option = {
		name = flavor_ira.23.a
		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_mild_penalty }
		custom_tooltip = {
			text = flavor_ira.23.a.tt
			every_pop = {
				limit = {
					owner = root
					OR = {
						culture = culture:georgian_culture
						culture = culture:armenian_culture
					}
				}
				add_pop_satisfaction = pop_satisfaction_severe_bonus
			}
		}
	}

	option = {
		name = flavor_ira.23.b
		culture = { add_cultural_tradition = cultural_tradition_mild_bonus }
		custom_tooltip = {
			text = flavor_ira.23.b.tt
			every_pop = {
				limit = {
					owner = root
					OR = {
						culture = culture:georgian_culture
						culture = culture:armenian_culture
					}
				}
				add_pop_satisfaction = pop_satisfaction_mild_penalty
			}
		}
	}
}