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.40] 约翰·坎塔库泽诺斯出逃

时间范围:1337年1月1日 - 1453年6月1日(每月 5% 概率触发)

触发条件

  • 拜占庭帝国(c:BYZ)存在。
  • 玩家国家与拜占庭帝国处于战争状态。
  • 人物 byz_john_kantakouzenos(约翰·坎塔库泽诺斯)满足以下所有条件:
    • 存活。
    • 不是统治者。
    • 不是摄政。
    • 所属国家为拜占庭帝国。

关键效果

  • 选项 A (flavor_ser.40.a)
    • 将人物 byz_john_kantakouzenos(约翰·坎塔库泽诺斯)转移至玩家国家。
    • 减少玩家国家金钱(scale = -4)。
    • 对拜占庭帝国(c:BYZ)增加100点间谍网络。
    • 为玩家军队增加大量传统(army_tradition_extreme_bonus)。
    • 为拜占庭帝国(c:BYZ)静默触发事件 flavor_ser.41
  • 选项 B (flavor_ser.40.b)
    • 为玩家国家增加少量威望(prestige_mild_bonus)。

背景介绍: 此事件模拟了14世纪拜占庭帝国贵族约翰·坎塔库泽诺斯在帝国陷入内乱与外部战争时,可能选择出逃并投靠敌对国家(如塞尔维亚)的历史情境。坎塔库泽诺斯作为当时重要的政治和军事人物,他的倒戈可能为接纳国带来军事经验与情报优势,但也伴随着外交与财政成本。

完整事件代码

flavor_ser.40 = { #The Flight of [target_character.GetNameWithNoTooltip]
	type = country_event
	title = flavor_ser.40.title
	desc = flavor_ser.40.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = SER
		from = 1337.1.1
		to = 1453.6.1
		monthly_chance = 5
	}

	trigger = {
		country_exists = c:BYZ
		is_at_war_with = c:BYZ
		character:byz_john_kantakouzenos = {
			is_alive = yes
			is_ruler = no
			is_regent = no
			owner = c:BYZ
		}
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		character:byz_john_kantakouzenos = { save_scope_as = target_character }
		set_variable = ser_completed_conquests_variable
	}

	option = {
		name = flavor_ser.40.a

		character:byz_john_kantakouzenos = { move_country = ROOT }
		change_gold_effect = { scale = -4 }
		add_spy_network = {
			target = c:BYZ
			value = 100
		}
		add_army_tradition = army_tradition_extreme_bonus
		custom_tooltip = flavor_ser.40_for_byz_tt
		c:BYZ = { trigger_event_silently = flavor_ser.41 }
	}

	option = {
		name = flavor_ser.40.b

		add_prestige = prestige_mild_bonus
	}
}