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_ser.80 巴尔干之盾

时间范围:1375.1.1 - 1453.6.1(每月 1% 概率)

触发条件

  • 事件国家必须满足:
    • 国家等级为 country_rank:rank_empire(帝国)。
    • 宗教为 religion:orthodox(东正教)。
    • c:TUR(奥斯曼帝国)的战争分数 <= -0.25
  • 同时,c:TUR(奥斯曼帝国)必须是列强(is_great_power = yes)。

关键效果

  • 选项 A (flavor_ser.80.a)
    • 触发条件c:PAP(教宗国)必须存在且满足:不是附庸国、未处于破产状态、未处于战争状态。
    • 效果
      • 减少宗教影响力(add_religious_influence_if_valid = { VALUE = -20 })。
      • 大幅降低威望(add_prestige = prestige_extreme_penalty)。
      • 大幅降低神职人员阶层满意度(add_estate_satisfaction = { type = estate_type:clergy_estate value = estate_satisfaction_radical_penalty })。
      • 触发 c:PAP(教宗国)的事件 flavor_ser.81
  • 选项 B (flavor_ser.80.b)
    • 触发条件:存在一个由 immediate 代码块选定的目标国家(scope:target_country)。
    • 效果:触发该目标国家的事件 flavor_ser.82
  • 选项 C (flavor_ser.80.c)
    • 效果
      • 轻微增加战争疲劳度(add_war_exhaustion = war_exhaustion_mild_bonus)。
      • 轻微增加威望(add_prestige = prestige_mild_bonus)。

背景介绍: 在14世纪末至15世纪中叶,随着奥斯曼帝国在巴尔干地区的持续扩张,作为东正教世界和地区强权的塞尔维亚帝国面临着巨大的生存压力。此事件模拟了塞尔维亚在军事失利(对奥斯曼战争分数低下)后,作为“巴尔干之盾”所面临的关键抉择:是向西方天主教世界(以教宗国为代表)寻求可能代价高昂的援助,还是尝试联合其他东正教邻邦,抑或是依靠自身力量承受压力。

完整事件代码

flavor_ser.80 = { #Shield of the Balkans
	type = country_event
	title = flavor_ser.80.title
	desc = flavor_ser.80.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = SER
		from = 1375.1.1
		to = 1453.6.1
		monthly_chance = 1
	}

	trigger = {
		country_rank = country_rank:rank_empire
		war_score_versus = {
			target = c:TUR
			value <= -0.25
		}
		c:TUR = { is_great_power = yes }
		religion = religion:orthodox
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:nobles background = pop_type:soldiers }
		religion:orthodox = {
			ordered_country_in_religion = {
				order_by = total_population
				max = 1

				limit = {
					NOT = { has_truce_with = ROOT }
					NOT = { tag = SER }
					NOT = { is_enemy_of = ROOT }
					NOT = { is_rival_of = ROOT }
					NOT = { has_truce_with = ROOT }
					capital = { region = region:balkan_region }
				}
				save_scope_as = target_country
			}
		}
	}

	option = {
		name = flavor_ser.80.a
	
		trigger = {
			c:PAP = {
				is_subject = no
				is_during_bankruptcy = no
				at_war = no
			}
		}

		add_religious_influence_if_valid = { VALUE = -20 }
		add_prestige = prestige_extreme_penalty
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_radical_penalty
		}
		c:PAP = { trigger_event_non_silently = flavor_ser.81 }
	}

	option = {
		name = flavor_ser.80.b

		trigger = {
			exists = scope:target_country
		}
		scope:target_country = {
			trigger_event_non_silently = flavor_ser.82
		}
	}

	option = {
		name = flavor_ser.80.c

		add_war_exhaustion = war_exhaustion_mild_bonus
		add_prestige = prestige_mild_bonus
	}
}