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.1901] 萨姆森·韦特海默登场

事件类型:国家事件(仅触发一次)

时间范围

  • 起始日期:1680.1.1
  • 结束日期:1724.1.1
  • 触发概率:每月 1% 概率

触发条件

  • 角色 hab_samuel_oppenheimer 必须在内阁中(in_cabinet = yes
  • 国家必须拥有变量 samuel_oppenheimer_hired

关键效果

选项 Aflavor_hab.1901.a):

  • 国库减少 2 单位黄金(change_gold_effect = { scale = -2 }
  • 将新创建的角色 target_character(萨姆森·韦特海默)移动至本国

选项 Bflavor_hab.1901.b):

  • 将新创建的角色 target_character(萨姆森·韦特海默)驱逐出境(banish_character = yes

背景介绍

萨姆森·韦特海默(1658-1724)是神圣罗马帝国时期一位重要的犹太金融家、外交官和学者。他出生于沃尔姆斯,后成为维也纳宫廷的“宫廷犹太人”,为哈布斯堡王朝提供财政支持,并担任犹太社区的领袖。此事件模拟了在萨缪尔·奥本海默(另一位著名宫廷犹太人)已在哈布斯堡宫廷任职的前提下,韦特海默作为其潜在继任者或合作者登场的可能性。玩家可选择招募他(付出一定资金)或拒绝其服务。

完整事件代码

flavor_hab.1901 = {  #Samson Wertheimer
	type = country_event
	title = flavor_hab.1901.title
	desc = flavor_hab.1901.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = HAB
		from = 1680.1.1
		to = 1724.1.1
		monthly_chance = 1
	}

	illustration_tags = {
		10 = regular
		10 = interior
	}

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

		character:hab_samuel_oppenheimer = {
			save_scope_as = target_mentor
		}

		create_character = {
			first_name = name_samson
			last_name = wertheimer
			birth_date = 1658.1.17
			birth_location = location:worms
			adm = 84
			dip = 73
			mil = 41
			estate = estate_type:burghers_estate
			religion = religion:judaism
			create_in_limbo = yes
			save_scope_as = target_character
			script = hab_samson_wertheimer
		}
	}

	trigger = {
		character:hab_samuel_oppenheimer = {
			in_cabinet = yes
		}
		has_variable = samuel_oppenheimer_hired
	}

	option = {
		name = flavor_hab.1901.a

		change_gold_effect = { scale = -2 }
		scope:target_character = {
			move_country = root
		}
	}

	option = {
		name = flavor_hab.1901.b
		scope:target_character = { banish_character = yes }
	}
}