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_jap.144 方济各·沙勿略抵达日本

时间范围:1546.1.1 - 1570.1.1(每月 40% 概率触发)

触发条件

  • 国家拥有统治者。
  • 国家拥有至少 3 个港口。
  • 至少有一个港口位于 japan_region(日本地区)。
  • 国际组织 japanese_shogunate(日本幕府):
    • 拥有变量 nanban_trade(南蛮贸易)。
    • 启用政策 policy:sakoku_enabled(锁国政策)。

关键效果

  • 选项 A (历史选项):允许方济各·沙勿略留下并传教
    • 获得 stability_mild_bonus(少量稳定度加成)。
    • 将创建的人物 jesuit_francis_xavier(耶稣会士方济各·沙勿略)移动至本国。
  • 选项 B:封锁任何试图改变我国民众信仰的行为
    • 获得 stability_weak_penalty(少量稳定度惩罚)。
    • 将创建的人物 jesuit_francis_xavier(耶稣会士方济各·沙勿略)移动至本国。
    • 为国家添加名为 jap_conversion_lockdown(日本改宗封锁)的修正,持续 20 年。

背景介绍: 该事件模拟了耶稣会传教士方济各·沙勿略于16世纪中叶抵达日本的历史时刻。沙勿略是第一位进入日本传教的西方传教士,他的到来标志着天主教在日本传播的开端,也象征着南蛮贸易(葡萄牙与日本的贸易)带来的文化与宗教交流。事件发生时,日本幕府尚未实行严格的锁国政策,为基督教在日本的初期传播提供了可能。

完整事件代码

flavor_jap.144 = { # Francis Xavier
	type = country_event
	title = flavor_jap.144.title
	desc = flavor_jap.144.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = JAP
		from = 1546.1.1
		to = 1570.1.1 # Passed Xavier historical death, but made plausible
		monthly_chance = 40
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		has_ruler = yes
		num_of_ports >= 3
		any_port_in_country = {
			region = region:japan_region
		}
		international_organization:japanese_shogunate ?= {
			has_variable = nanban_trade
			NOT = { international_organization_has_policy = policy:sakoku_enabled }
		}
	}

	immediate = {
		ruler ?= {
			save_scope_as = our_ruler
		}
		random_port_in_country = {
			limit = {
				region = region:japan_region
			}
			save_scope_as = arrival_location
		}
		create_character = {
			first_name = name_francis
			last_name = name_xavier
			create_in_limbo = yes
			adm = { 60 80 }
			dip = { 60 70 }
			mil = { 15 20 }
			culture = culture:portuguese # Born basque, however representative of Portugal
			birth_location = location:sanguesa # Xavier
			religion = religion:catholic
			birth_date = 1506.4.7
			estate = estate_type:clergy_estate
			script = francis_xavier
			save_scope_as = jesuit_francis_xavier
		}
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
	}

	option = { # Allow Francis Xavier to stay and preach
		name = flavor_jap.144.a
		historical_option = yes
		add_stability = stability_mild_bonus
		scope:jesuit_francis_xavier = { move_country = root }
	}
	option = { # Lock down any attempts to convert our populace
		name = flavor_jap.144.b
		add_stability = stability_weak_penalty
		scope:jesuit_francis_xavier = { move_country = root }
		add_country_modifier = { modifier = jap_conversion_lockdown years = 20 mode = add }
	}
}