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_csu.210 一个狡诈的计划

时间范围:1350.1.1 - 1400.1.1(每月 5% 概率)

触发条件

  • 国家 CSU 必须存在。
  • 国家 CSUAYA(事件触发国)的 opinion(看法)值 ≤ 25。
  • 国家 CSU 的继承人必须满足以下所有条件:
    • 存活 (is_alive = yes)。
    • 未成年 (is_adult = no)。
    • 年龄 ≤ 15 岁 (age_in_years <= 15)。
  • 事件触发国 (AYA) 的内阁中至少有一位成员 (any_cabinet_character 数量 > 0)。

关键效果

  • 选项 A:绑架 (历史选项)

    • CSU 的继承人转移到 AYA(事件触发国)。
    • 在 5 天后,为 CSU 静默触发事件 flavor_csu.211
    • CSUAYA 增加 opinion_angry 看法修正。
    • AYA 获得 legitimacy_weak_penalty(合法性小幅惩罚)。
  • 选项 B:拒绝该计划

    • minister(随机选择的内阁成员)从内阁中移除。
    • AYA 获得 legitimacy_mild_bonus(合法性小幅增益)。

背景介绍: 在14世纪下半叶,安第斯地区的库斯科王国(CSU)与阿亚尔马卡(AYA)之间的关系紧张。阿亚尔马卡国内的一些谋士提出了一个大胆而狡诈的计划:绑架库斯科年幼的继承人,以此作为政治筹码或削弱对手的手段。这一事件反映了前印加时期安第斯各政治实体间复杂而充满算计的互动关系。

完整事件代码

flavor_csu.210 = { #A Devious Plan
	type = country_event
	title = flavor_csu.210.title
	desc = flavor_csu.210.desc
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = AYA
		from = 1350.1.1
		to = 1400.1.1
		monthly_chance = 5
	}
	
	trigger = { #Qusqu exists, and hates Ayarmaca. Heir is alive and a kid
		country_exists = c:CSU
		c:CSU = {
			opinion = {
				target = root
				value <= 25 
			}
			heir ?= {
				is_alive = yes
				is_adult = no
				age_in_years <= 15 
			}
		}
		#There is at least a cabinet member
		any_cabinet_character = {
			count > 0
		}
	}
	
	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		random_cabinet_character = {
			save_scope_as = minister
		}
		c:CSU = {
			heir ?= {
				save_scope_as = kidnapped_heir
			}
		}
	}

	option = { #Kidnap
		name = flavor_csu.210.a
		historical_option = yes
		c:CSU = {
			heir ?= {
				move_country = root
			}
			trigger_event_silently = { id = flavor_csu.211 days = 5 }
			add_opinion = { target = root modifier = opinion_angry }
		}
		add_legitimacy = legitimacy_weak_penalty
		
	}
	
	option = { #Reject the plan
		name = flavor_csu.210.b
		
		remove_from_cabinet = scope:minister
		add_legitimacy = legitimacy_mild_bonus
	}
	
}