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_ven.35 关系报告制度问题

时间范围:1500.1.1 - 1600.1.1(每月 1% 概率)

触发条件

  • 政府类型为共和国 (government_type = government_type:republic)
  • 已拥有 ven_state_inquisition 科技

关键效果

  • 选项 A (flavor_ven.35.a)

    • 增加 10 点共和传统 (add_republican_tradition = 10)
    • 解锁政府改革:标准化关系报告制度 (unlock_government_reform_effect = { type = standardized_relazioni_reform })
    • 社会价值观变化:中央化 vs 去中央化,大幅向左移动(趋向中央化) (change_societal_value = { type = centralization_vs_decentralization value = societal_value_large_move_to_left })
    • 所有阶层(神职人员、贵族、市民)满意度小幅下降 (add_estate_satisfaction = { value = estate_satisfaction_mild_penalty })
  • 选项 B (flavor_ven.35.b)

    • 减少 10 点共和传统 (add_republican_tradition = -10)
    • 所有阶层(神职人员、贵族、市民)满意度小幅提升 (add_estate_satisfaction = { value = estate_satisfaction_mild_bonus })

背景介绍: 在16世纪,威尼斯共和国面临如何管理其广泛外交网络和情报收集系统的关键决策。共和国需要决定是否正式确立并标准化其驻外大使提交的“关系报告”(Relazioni)制度,这些报告详细记录了驻在国的政治、军事、经济和社会状况。这一决策不仅关系到国家行政效率,也触及了共和国传统的权力平衡与各阶层的利益。

完整事件代码

flavor_ven.35 = { # The Question of Relazioni
	type = country_event
	title = flavor_ven.35.title
	desc = flavor_ven.35.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = VEN
		from = 1500.1.1
		to = 1600.1.1
		monthly_chance = 1
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}

	trigger = {
		government_type = government_type:republic
		has_advance = ven_state_inquisition
	}

	option = {
		name = flavor_ven.35.a
		add_republican_tradition = 10
		unlock_government_reform_effect = { type = standardized_relazioni_reform }
		change_societal_value = {
			type = centralization_vs_decentralization
			value = societal_value_large_move_to_left
		}
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_penalty
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_penalty
		}
		add_estate_satisfaction = {
			type = estate_type:burghers_estate
			value = estate_satisfaction_mild_penalty
		}
	}

	option = {
		name = flavor_ven.35.b
		add_republican_tradition = -10
		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}
		add_estate_satisfaction = {
			type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}
		add_estate_satisfaction = {
			type = estate_type:burghers_estate
			value = estate_satisfaction_mild_bonus
		}
	}
}