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_hab.1303 约翰内斯·库斯皮尼安登场

时间范围:1493.1.1 - 1530.1.1 (每月 1% 概率)

触发条件

  • 国家拥有统治者。
  • 国家拥有变量 habsburg_renaissance_prince
  • 国家拥有地点 vienna
  • 地点 vienna 拥有建筑 building_type:university (大学)。

关键效果

  • 选项 A (flavor_hab.1303.a)

    • 花费金钱:change_gold_effect = { scale = -2 }
    • 将创建的库斯皮尼安人物移动至本国。
    • 为国家添加持续20年的修正 cuspinian_educator (模式为叠加并延长)。
  • 选项 B (flavor_hab.1303.b)

    • 花费金钱:change_gold_effect = { scale = -2 }
    • 将创建的库斯皮尼安人物移动至本国。
    • 为国家添加持续20年的修正 cuspinian_diplomacy (模式为叠加并延长)。
  • 选项 C (flavor_hab.1303.c)

    • 损失少量正统性:add_legitimacy = legitimacy_mild_penalty
    • 放逐创建的库斯皮尼安人物。

背景介绍: 该事件模拟了文艺复兴时期人文主义者、外交官约翰内斯·库斯皮尼安(Johannes Cuspinian,原名Johannes Spießheimer)在哈布斯堡宫廷登场的可能性。库斯皮尼安出生于施韦因富特,是一位杰出的学者和外交家,曾服务于神圣罗马帝国皇帝马克西米利安一世。此事件要求维也纳已建立大学,反映了当时人文主义学术与宫廷政治结合的历史背景。玩家可以选择聘请他作为教育者或外交顾问,或者拒绝他的服务。

完整事件代码

flavor_hab.1303 = { #Johannes Cuspinian
	hide_portraits = yes
	type = country_event
	title = flavor_hab.1303.title
	desc = flavor_hab.1303.desc
	#historical_info = flavor_hab.1303.historical_info

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		tag = TIR
		tag = STY
		from = 1493.1.1
		to = 1530.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:burghers   background = pop_type:burghers }

		create_character = {
			first_name = name_john # alternative Johannes
			last_name = cuspinian
			birth_date = 1473.1.1
			birth_location = location:schweinfurt
			culture = culture:east_franconian
			adm = 83
			dip = 96
			mil = 64
			estate = estate_type:burghers_estate
			create_in_limbo = yes
			save_scope_as = target_character
		}
		ruler = { save_scope_as = target_ruler }
	}

	trigger = {
		has_ruler = yes
		has_variable = habsburg_renaissance_prince
		owns = location:vienna
		location:vienna = {
			has_building = building_type:university
		}
	}

	option = {
		name = flavor_hab.1303.a

		change_gold_effect = { scale = -2 }
		scope:target_character = { move_country = root }
		add_country_modifier = {
            modifier = cuspinian_educator
            years = 20
            mode = add_and_extend
        }
	}

	option = {
		name = flavor_hab.1303.b

		change_gold_effect = { scale = -2 }
		scope:target_character = { move_country = root }
		add_country_modifier = {
            modifier = cuspinian_diplomacy
            years = 20
            mode = add_and_extend
        }
	}

	option = {
		name = flavor_hab.1303.c

		add_legitimacy = legitimacy_mild_penalty
		scope:target_character = { banish_character = yes }
	}
}