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.107 山名氏与大内氏的归顺

时间范围:1361.1.1 - 1390.1.1 (每月 14% 概率触发)

触发条件

  • 日本(JAP)必须存在统治者,且统治者拥有家族。
  • 日本(JAP)未处于战争状态。
  • 大内氏(OUC)与山名氏(YMN)两个国家必须存在。
  • 在“日本幕府”国际组织中,大内氏(OUC)与山名氏(YMN)都必须拥有“守护大名”的特殊地位。

关键效果

  • 选项 A:欢迎他们的归顺 (历史选项)
    • 日本(JAP)获得:稳定性小幅增益正统性小幅增益
    • 大内氏(OUC)与山名氏(YMN)各自获得:
      • 若其信仰拥有“荣誉”机制,则获得荣誉小幅增益;否则获得正统性小幅增益
      • 获得国家修正 jap_shugo_autonomy_for_submission,持续20年。
      • 对日本(JAP)增加jap_submission_to_the_shogunate 好感度修正。
  • 选项 B:拒绝,我们不会给予任何守护大名特权!
    • 日本(JAP)获得:威望极大增益
    • 若日本(JAP)的信仰拥有“荣誉”机制,则获得荣誉小幅减益;否则获得正统性小幅减益
    • 大内氏(OUC)与山名氏(YMN)各自对日本(JAP)增加jap_refused_submission_offer 好感度修正。

背景介绍: 此事件模拟了日本南北朝至室町幕府初期,两位强大的守护大名——山名氏与大内氏——向幕府将军表示臣服的历史进程。他们的归顺是室町幕府巩固其统治、整合地方武家势力的关键步骤。幕府将军可以选择接受归顺以换取稳定和忠诚,也可以为了维护中央权威的纯粹性而拒绝给予地方领主特殊待遇。

完整事件代码

flavor_jap.107 = { # Submission of the Yamana and Ouchi clans
	type = country_event
	title = flavor_jap.107.title
	desc = flavor_jap.107.desc


	fire_only_once = yes
	dynamic_historical_event = {
		tag = JAP
		from = 1361.1.1
		to = 1390.1.1
		monthly_chance = 14
	}

	illustration_tags = {
		10 = angry
		10 = interior
	}


	trigger = {
		has_ruler = yes
		ruler = { has_dynasty = yes }
		at_war = no
		country_exists = c:OUC
		country_exists = c:YMN
		international_organization:japanese_shogunate = {
			country_has_special_status = {
				type = special_status:shugo_daimyo
				country = c:OUC
			}
			country_has_special_status = {
				type = special_status:shugo_daimyo
				country = c:YMN
			}
		}
	}

	immediate = {
		ruler ?= {
			save_scope_as = our_ruler
		}
	}

	option = { # Welcome their submission
		name = flavor_jap.107.a
		historical_option = yes
		add_stability = stability_mild_bonus
		add_legitimacy = legitimacy_mild_bonus
		c:OUC ?= {
			if = {
				limit = {
					religion = { has_honor = yes }
				}
				add_honor = honor_mild_bonus
			}
			else = {
				add_legitimacy = legitimacy_mild_bonus
			}
			add_country_modifier = { modifier = jap_shugo_autonomy_for_submission years = 20 mode = add }
			add_opinion = { target = c:JAP modifier = jap_submission_to_the_shogunate }
		}
		c:YMN ?= {
			if = {
				limit = {
					religion = { has_honor = yes }
				}
				add_honor = honor_mild_bonus
			}
			else = {
				add_legitimacy = legitimacy_mild_bonus
			}
			add_country_modifier = { modifier = jap_shugo_autonomy_for_submission years = 20 mode = add }
			add_opinion = { target = c:JAP modifier = jap_submission_to_the_shogunate }
		}
	}
	option = { # Refuse, we will not offer special privileges to any Shugos!
		name = flavor_jap.107.b
		add_prestige = prestige_extreme_bonus
		if = {
			limit = {
				religion = { has_honor = yes }
			}
			add_honor = honor_mild_penalty
		}
		else = {
			add_legitimacy = legitimacy_mild_penalty
		}
		c:OUC ?= {
			add_opinion = { target = c:JAP modifier = jap_refused_submission_offer }
		}
		c:YMN ?= {
			add_opinion = { target = c:JAP modifier = jap_refused_submission_offer }
		}
	}
}