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_tur.100 君士坦丁堡之夜

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

触发条件

  • 国家宗教属于穆斯林宗教组。
  • 国家拥有首都。
  • 首都省份存在至少一个 clergy(神职人员)阶层的人口。

关键效果

  • 选项 A (历史选项)
    • 首都所有属于本国的 clergy 阶层人口获得 pop_satisfaction_severe_penalty(人口满意度严重惩罚)。
    • 如果首都存在 burghers(市民)阶层人口,则所有属于本国的 burghers 阶层人口获得 pop_satisfaction_mild_bonus(人口满意度轻微增益)。
    • 获得相当于当前月度收入 2 倍的金币。
  • 选项 B
    • 首都所有属于本国的 clergy 阶层人口获得 pop_satisfaction_mild_penalty(人口满意度轻微惩罚)。
    • 获得相当于当前月度收入 1 倍的金币。
  • 选项 C
    • 国家稳定性获得 stability_weak_penalty(稳定性微弱惩罚)。
    • 首都所有属于本国的 clergy 阶层人口获得 pop_satisfaction_severe_bonus(人口满意度严重增益)。
    • 如果首都存在 burghers(市民)阶层人口,则所有属于本国的 burghers 阶层人口获得 pop_satisfaction_mild_penalty(人口满意度轻微惩罚)。
    • 社会思潮 mysticism_vs_jurisprudence(神秘主义 vs 法学)向右侧(法学方向)移动 societal_value_tiny_move_to_right(微小距离)。

背景介绍: 此事件模拟了奥斯曼帝国统治下首都君士坦丁堡(伊斯坦布尔)可能面临的夜间治理或社会秩序挑战。作为帝国的政治与宗教中心,首都的夜间活动管理牵动着不同社会阶层(尤其是具有影响力的神职人员与市民阶层)的神经,统治者需要权衡维持秩序、财政收入与社会各群体满意度之间的关系,其决策将对首都的稳定和国家的思潮产生影响。

完整事件代码

flavor_tur.100 = { #Constantinople by Night
	type = country_event
	title = flavor_tur.100.title
	desc = flavor_tur.100.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = TUR
		from = 1537.1.1
		to = 1837.1.1
		monthly_chance = 5
	}

	historical_info = flavor_tur.100.historical_info

	trigger = {

		religion.group = religion_group:muslim

		exists = capital

		capital = {
			any_pop = {
				pop_type = pop_type:clergy
			}
		}
	}

	immediate =  {

		capital = {
			save_scope_as = capital_location
		}
	}

	option = {
		name = flavor_tur.100.a
		historical_option = yes

		custom_tooltip = {
			text = flavor_tur.100.clergy_angry.tt
			scope:capital_location = {
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:clergy
					}
					add_pop_satisfaction = pop_satisfaction_severe_penalty
				}
			}
		}

		if = {
			limit = {
				scope:capital_location = {
					any_pop = {
						pop_type = pop_type:burghers
					}
				}
			}
			custom_tooltip = {
				text = flavor_tur.100.burghers_happy.tt
				scope:capital_location = {
					every_pop = {
						limit = {
							owner = root
							pop_type = pop_type:burghers
						}
						add_pop_satisfaction = pop_satisfaction_mild_bonus
					}
				}
			}
		}

		change_gold_effect = { scale = 2 }
	}

	option = {
		name = flavor_tur.100.b

		custom_tooltip = {
			text = flavor_tur.100.clergy_moderately_angry.tt
			scope:capital_location = {
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:clergy
					}
					add_pop_satisfaction = pop_satisfaction_mild_penalty
				}
			}
		}

		change_gold_effect = { scale = 1}
	}

	option = {
		name = flavor_tur.100.c

		custom_tooltip = crackdown.tt

		add_stability = stability_weak_penalty

		custom_tooltip = {
			text = flavor_tur.100.clergy_happy.tt
			scope:capital_location = {
				every_pop = {
					limit = {
						owner = root
						pop_type = pop_type:clergy
					}
					add_pop_satisfaction = pop_satisfaction_severe_bonus
				}
			}
		}

		if = {
			limit = {
				scope:capital_location = {
					any_pop = {
						pop_type = pop_type:burghers
					}
				}
			}
			custom_tooltip = {
				text = flavor_tur.100.burghers_unhappy.tt
				scope:capital_location = {
					every_pop = {
						limit = {
							owner = root
							pop_type = pop_type:burghers
						}
						add_pop_satisfaction = pop_satisfaction_mild_penalty
					}
				}
			}
		}

		change_societal_value = { type = mysticism_vs_jurisprudence value = societal_value_tiny_move_to_right }
	}
}