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_mos.45 印刷术的引入

时间范围:1530.1.1 - 1560.1.1 (每月 10% 概率)

触发条件

  • 首都由本国控制。
  • 存在任意邻国,该邻国是 LITLIT 的附庸国。
  • 本国没有任何省份是印刷术制度的起源地。
  • 本国拥有至少一个省份,其相邻省份中存在已发展印刷术制度的省份。

关键效果

  • 选项 A (历史选项)

    • 获得研究进展:advance_type:printing_press_shop_advance
    • 在首都建造建筑:building_type:printing_press_shop
    • 在首都为印刷术制度增加进度:institution_progress_ultimate_bonus
    • 如果社会价值观 outward_vs_inward ≥ 20,则降低少量稳定度,并显示自定义提示 flavor_mos.45.tt1
    • 降低神职人员阶层少量满意度:estate_satisfaction_mild_penalty
    • 显示自定义提示 flavor_mos.45.tt2
    • 将创建的人物 ivan_fyodorov 移动至本国。
    • AI选择权重因子:1。
  • 选项 B

    • 大幅提高神职人员阶层满意度:estate_satisfaction_severe_bonus
    • 将社会价值观 traditionalist_vs_innovative 向左移动(偏向传统主义)。
    • 随机选择一个符合条件(是 LITLIT 的附庸国)的邻国,并将创建的人物 ivan_fyodorov 移动至该国。
    • AI选择权重因子:0.5。

背景介绍: 16世纪中叶,印刷术从西欧逐渐向东欧传播。对于莫斯科大公国(及其后继者俄罗斯)而言,这项技术既是文化传播和知识普及的强大工具,也可能因其挑战传统手抄本和教会对知识的垄断而引发社会保守势力的抵制。此事件模拟了印刷术通过邻国(特别是与立陶宛相关的地区)传入俄罗斯的过程,以及国内不同势力对此的反应。

完整事件代码

flavor_mos.45 = {
	type = country_event
	fire_only_once = yes
	title = flavor_mos.45.title
	desc = flavor_mos.45.desc
	image = "gfx/interface/illustrations/institutions/printing_press.dds"

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1530.1.1
		to = 1560.1.1
		monthly_chance = 10
	}

	trigger = {

		capital = {
			controller = root
		}

		any_neighbor_country = {
			OR = {
				tag = LIT
				is_subject_of = c:LIT
			}
		}

		NOT = {
			any_owned_location = {
				institution:printing_press = {
					origin ?= prev
				}
			}
		}

		any_owned_location = {
			any_neighbor_location = {
				has_institution = institution:printing_press
			}
		}

	}

	immediate = {

		capital = {
			save_scope_as = target_location
		}

		create_character = {
			first_name = name_john
			last_name = Fyodorov
			estate = estate_type:burghers_estate
			adm = 41
			dip = 30
			mil = 15
			birth_date = 1510.1.1
			birth_location = location:moscow
			artist_skill = 0.7
			artist = writer
			save_scope_as = ivan_fyodorov
			script = mos_ivan_fyodorov
			create_in_limbo = yes
		}

		root = { save_scope_as = target_root_country }

	}

	option = {
		name = flavor_mos.45.a
		historical_option = yes

		research_advance = advance_type:printing_press_shop_advance

		capital = {
			construct_building = { building_type = building_type:printing_press_shop }
			change_institution_progress = { type = institution:printing_press value = institution_progress_ultimate_bonus }
		}

		if = {
			limit = {
				societal_value:outward_vs_inward >= 20
			}
			add_stability = stability_mild_penalty
			custom_tooltip = flavor_mos.45.tt1
		}

		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_mild_penalty
		}

		custom_tooltip = flavor_mos.45.tt2
		scope:ivan_fyodorov = { move_country = root }

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.45.b

		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_bonus
		}

		change_societal_value = {
			type = traditionalist_vs_innovative
			value = societal_value_move_to_left
		}

		random_neighbor_country = {
			limit = {
				OR = {
					is_subject_of = c:LIT
					tag = LIT
				}
			}
			scope:ivan_fyodorov = {
				move_country = prev
			}
		}

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.45.historical_info

}