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_pol.1001 波兰炼金术士米哈乌·森迪沃吉乌斯

时间范围:无明确起止日期(from/to 未定义),事件触发后仅发生一次(fire_only_once = yes)。

触发概率:无月度概率(monthly_chance 未定义),满足触发条件后即可能发生。

触发条件

  • 角色 pol_michael_sedziwoj(米哈乌·森迪沃吉乌斯)存活(is_alive = yes)。
  • 该角色当前由玩家控制的国家拥有(owner = root)。

关键效果

选项 A:flavor_pol.1001.a

  • 历史选项:是(historical_option = yes
  • 效果:
    • 国库减少 5 金币(change_gold_effect = { scale = -5 })。
    • 国家声望获得小幅提升(add_prestige = prestige_mild_bonus)。
    • 在首都创建一件艺术品:
      • 艺术家:米哈乌·森迪沃吉乌斯(artist = scope:michael_sedziwoj_scope)。
      • 品质:50(quality = 50)。
      • 类型:论文(type = work_of_art_type:treatise)。
      • 关键标识:new_chemical_light
    • 贵族阶层满意度小幅下降(add_estate_satisfaction = { type = estate_type:nobles_estate, value = estate_satisfaction_mild_penalty })。

选项 B:flavor_pol.1001.b

  • 效果:
    • 国家声望遭受小幅损失(add_prestige = prestige_mild_penalty)。
    • 角色米哈乌·森迪沃吉乌斯将离开,前往布拉格地区(location:prague)的所有者国家(move_country = location:prague.owner)。
    • 贵族阶层满意度小幅提升(add_estate_satisfaction = { type = estate_type:nobles_estate, value = estate_satisfaction_mild_bonus })。

背景介绍: 米哈乌·森迪沃吉乌斯是文艺复兴晚期波兰王国一位著名的炼金术士、医生和哲学家。他以其在化学领域的著作而闻名,尤其是一篇关于“新化学之光”的论文,该论文探讨了空气的成分,并被认为预示了后来氧气的发现。此事件反映了当时统治者面临的选择:是资助这位有争议的学者进行研究(可能引起传统贵族的不满),还是让他前往其他宫廷(如布拉格)寻求庇护,以安抚国内势力。

完整事件代码

flavor_pol.1001 = {
	type = country_event
	title = flavor_pol.1001.title
	desc = flavor_pol.1001.desc

	fire_only_once = yes
	trigger = {
		character:pol_michael_sedziwoj = {
			is_alive = yes
			owner = root
		}
	}

	image = "gfx/interface/illustrations/institutions/scientific_revolution.dds"


	immediate = {
		character:pol_michael_sedziwoj = {
			save_scope_as = michael_sedziwoj_scope
		}

	}

	option = {
		name = flavor_pol.1001.a
		historical_option = yes
		change_gold_effect = { scale = -5 }
		add_prestige = prestige_mild_bonus
		capital = {
			create_art = {#https://en.wikipedia.org/wiki/Michael_Sendivogius
				artist = scope:michael_sedziwoj_scope
				quality = 50
				type = work_of_art_type:treatise
				key = new_chemical_light
			}
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_mild_penalty
		}
	}

	option = {
		name = flavor_pol.1001.b
		add_prestige = prestige_mild_penalty

		scope:michael_sedziwoj_scope = {
			move_country = location:prague.owner
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_mild_bonus
		}
	}
}