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_kor.10] 高丽与双城总管府的领土争端

时间范围

1337.1.1 - 1400.1.1 (每月 5% 概率触发)

触发条件

  • 高丽 (KOR) 不拥有 hwaju_province 省份的全部地区。
  • 双城总管府 (c:SSG) 国家存在。
  • 双城总管府 (c:SSG) 拥有 hwaju 地区。
  • 双城总管府 (c:SSG) 处于以下状态之一:
    • 未处于战争状态 (at_war = no)。
    • 在其参与的任何战争中,所有战争参与者 (any_war_participant) 都满足以下条件之一:
      • 参与者不是高丽 (NOT = { this = ROOT })。
      • 参与者与双城总管府 (c:SSG) 处于战争状态 (is_at_war_with = c:SSG)。

关键效果

选项 A: flavor_kor.10.a (历史选项)

  • 向目标国家 (scope:target_country,即双城总管府) 宣战。
  • 宣战理由 (casus_belli) 为:征服省份 (cb_conquer_province)。
  • 目标省份为:hwaju 地区所在的省份 (location:hwaju.province)。

选项 B: flavor_kor.10.b

  • 与目标国家 (scope:target_country,即双城总管府) 增加停战协议 (add_truce_with)。
  • 国家威望受到轻微惩罚 (add_prestige = prestige_mild_penalty)。

背景介绍

此事件模拟了14世纪高丽王朝与元朝在朝鲜半岛北部设立的行政机构“双城总管府”之间的领土争端。双城总管府控制着包括和州(hwaju)在内的区域,而高丽一直视这些地区为其历史领土的一部分。随着元朝统治的衰落,高丽寻求机会收复失地,这导致了边境地区的紧张局势和潜在的军事冲突。

事件代码

flavor_kor.10 = {
	type = country_event
	title = flavor_kor.10.title
	desc = flavor_kor.10.desc
	fire_only_once = yes
	dynamic_historical_event = {
		tag = KOR
		from = 1337.1.1
		to = 1400.1.1
		monthly_chance = 5
	}
	trigger = {
		NOT = { own_entire_province = province_definition:hwaju_province }
		country_exists = c:SSG
		c:SSG = {
			owns = location:hwaju
			OR = {
				at_war = no
				any_current_war = {
					any_war_participant = {
						OR = {
							NOT = { this = ROOT }
							is_at_war_with = c:SSG
						}
						count = all
					}
				}
			}
		}
	}
	illustration_tags = {
        10 = regular
        10 = exterior
    }
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		c:SSG = { save_scope_as = target_country }
	}
	option = {
		name = flavor_kor.10.a
		historical_option = yes
		declare_war_with_cb = {
			target = scope:target_country
			type = casus_belli:cb_conquer_province
			target_province = location:hwaju.province
		}
	}
	option = {
		name = flavor_kor.10.b
		add_truce_with = { target = scope:target_country }
		add_prestige = prestige_mild_penalty
	}
}