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.6 吉利支丹(Kirishitan)

时间范围:1400.1.1 - 1700.1.1,每月 10% 概率触发

触发条件

  • 国家中天主教(Catholic)信仰的人口比例大于 0%。

关键效果

  • 选项 A (历史选项)
    • 名称:flavor_jap.6.a
    • 效果:所有由本国拥有的、信仰天主教的民众,其满意度将受到终极惩罚(pop_satisfaction_ultimate_penalty)。
  • 选项 B
    • 名称:flavor_jap.6.b
    • 效果:
      • 国家威望受到极端惩罚(prestige_extreme_penalty)。
      • 国家稳定度受到极端惩罚(stability_extreme_penalty)。
      • 在本国拥有的、非天主教占主导的地区中,选取人口最多的一个地区(最多选取一个,若存在非农村地区,则数量增加其数量的20%)。在该地区内,随机选取一个非天主教信仰的民众群体,将其中的 20% 人口分裂出来,并使其改信天主教。

背景介绍: 该事件反映了16世纪至17世纪日本与欧洲传教士接触后,天主教(在日本被称为“吉利支丹”)在日本的传播与遭遇。初期,天主教在部分大名和民众中取得一定影响力。但随着统一政权的巩固和对西方势力渗透的担忧,幕府最终采取了严厉的镇压政策,导致了著名的“岛原之乱”和对天主教徒的迫害。此事件模拟了日本统治者面对境内天主教人口时,选择镇压(历史选项)或容忍(导致社会动荡和部分人口改信)的决策点。

完整事件代码

flavor_jap.6 = { #Kirishitan
	type = country_event
	title = flavor_jap.6.title
	desc = flavor_jap.6.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = JAP
		from = 1400.1.1
		to = 1700.1.1
		monthly_chance = 10
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	trigger = {
		"religion_percentage_in_country(religion:catholic)" > 0
	}

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

	option = {
		name = flavor_jap.6.a
		historical_option = yes
		custom_tooltip = {
			text = flavor_jap.6.a.tt
			every_owned_location = {
				every_pop = {
					limit = {
						owner = root
						religion = religion:catholic
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
				}
			}
		}
	}
	option = {
		name = flavor_jap.6.b
		add_prestige = prestige_extreme_penalty
		add_stability = stability_extreme_penalty
		ordered_owned_location = {
			limit = {
				NOT = { dominant_religion = religion:catholic }
			}
			order_by = population
			max = {
				value = 1
				add = {
					value = num_of_non_rural
					multiply = 0.2
				}
			}
			random_pop = {
				limit = {
					not = { religion = religion:catholic }
				}

				split_pop = {
					fraction = 0.20
					religion = religion:catholic
				}

			}
		}
	}
}