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_pap.2] 关键人物登场

时间范围:1575.1.1 - 1625.1.1(每月 5% 概率)

触发条件

  • 国家没有摄政王 (has_regent = no)

关键效果

  • 选项 A (flavor_pap.2.a) - 历史选项
    • 统治者获得修正项 pap_burned_heretic,持续时间为 -1 个月(模式为叠加并延长)。
    • 杀死目标人物 target_character
  • 选项 B (flavor_pap.2.b)
    • 国家获得少量威望 (add_prestige = prestige_mild_bonus)。
    • 将目标人物 target_character 移动至本国 (move_country = root)。

背景介绍: 该事件模拟了文艺复兴时期哲学家乔尔丹诺·布鲁诺(Giordano Bruno)的遭遇。布鲁诺因支持哥白尼日心说和提出无限宇宙论等异端思想,于1600年在罗马被宗教裁判所判处火刑。事件反映了教廷在反宗教改革时期对异端思想的严厉镇压,以及科学与宗教权威之间的冲突。

完整事件代码

flavor_pap.2 = {
	type = country_event
	title = flavor_pap.2.title
	desc = flavor_pap.2.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = PAP
		from = 1575.1.1
		to = 1625.1.1
		monthly_chance = 5
	}

	trigger = {
		has_regent = no
	}

	illustration_tags = {
        10 = angry
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		create_character = {
			first_name = name_jordan
			last_name = name_bruno
			culture = culture:neapolitan
			religion = religion:catholic
			estate = estate_type:clergy_estate
			birth_date = 1548.1.30
			adm = 50
			dip = 50
			mil = 50
			save_scope_as = target_character
			create_in_limbo = yes
		}
	}

	option = {
		name = flavor_pap.2.a
		historical_option = yes
		ruler = { add_character_modifier = { modifier = pap_burned_heretic months = -1 mode = add_and_extend } }
		kill_character = scope:target_character
	}
	option = {
		name = flavor_pap.2.b
		add_prestige = prestige_mild_bonus
		scope:target_character = { move_country = root }
	}
}