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_boh.17 维谢格拉德首次会议

时间范围:1337.1.1 - 1345.1.1(每月 100% 概率) 触发条件

  • 国家 POL 存在。
  • 未与 POL 处于战争状态。

关键效果

  • 选项 A (历史选项)
    • 获得相当于 12 倍规模的金币。
    • 如果 POLHUN 是宿敌,则与对方互相移除宿敌关系。
    • POLHUN 互相增加 honored_congress_of_visegrad_modifier 观点修正。
    • 社会价值观 belligerent_vs_conciliatory 向“右”(调和)方向移动。
  • 选项 B
    • 获得对 POL 为期 15 年的 cb_claim_throne(宣称王位)宣战理由。
    • 所有未与我国结盟或为附庸的邻国,以及附庸国的此类邻国,对我国增加 violated_congress_of_visegrad_modifier 观点修正和 violated_congress_of_visegrad_antagonism 对抗值。
    • 社会价值观 belligerent_vs_conciliatory 向“左”(好战)方向大幅移动。

背景介绍: 1335年,波希米亚国王约翰、匈牙利国王查理一世和波兰国王卡齐米日三世在匈牙利维谢格拉德城堡举行会议。此次会议旨在解决领土争端、协调外交政策并促进贸易,是中欧三国早期合作的重要标志,为后来的维谢格拉德集团奠定了基础。

完整事件代码

flavor_boh.17 = { #The First Congress of Visegrad
	type = country_event
	title = flavor_boh.17.title
	desc = flavor_boh.17.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = BOH
		from = 1337.1.1
		to = 1345.1.1
		monthly_chance = 100
	}

	trigger = {
		country_exists = c:POL
		NOT = { is_at_war_with = c:POL }
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = {
		name = flavor_boh.17.a

		historical_option = yes
		change_gold_effect = { scale = 12 }
		if = {
			limit = {
				c:POL = { is_rival_of = root }
			}
			remove_rival = c:POL
		}
		if = {
			limit = {
				is_rival_of = c:POL
			}
			c:POL = { remove_rival = root }
		}

		if = {
			limit = {
				c:HUN = { is_rival_of = root }
			}
			remove_rival = c:HUN
		}
		if = {
			limit = {
				is_rival_of = c:HUN
			}
			c:HUN = { remove_rival = root }
		}


		c:POL = {
			add_opinion = {
				target = root
				modifier = honored_congress_of_visegrad_modifier
			}
		}

		c:HUN = {
			add_opinion = {
				target = root
				modifier = honored_congress_of_visegrad_modifier
			}
		}

		add_opinion = {
			target = c:POL
			modifier = honored_congress_of_visegrad_modifier
		}
		add_opinion = {
			target = c:HUN
			modifier = honored_congress_of_visegrad_modifier
		}
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_move_to_right
		}
	}

	option = {
		name = flavor_boh.17.b

		add_casus_belli = {
			target = c:POL
			type = casus_belli:cb_claim_throne
			years = 15
		}
		custom_tooltip = boh_every_neighboring_country_tt
		hidden_effect = {
			every_neighbor_country = {
				limit = {
					NOT = {
						is_allied_with = { target = root }
						is_subject_of = root
						is_in_list = neighbors_list
					}
				}
				add_to_temporary_list = neighbors_list
			}
			every_subject = {
				every_neighbor_country = {
					limit = {
						NOT = {
							this = root
							is_subject_of = root
							is_allied_with = { target = root }
							is_in_list = neighbors_list
						}
					}
					add_to_temporary_list = neighbors_list
				}
			}
			every_in_list = {
				list = neighbors_list
				add_opinion = {
					target = root
					modifier = violated_congress_of_visegrad_modifier
				}
				add_antagonism = {
					target = root
					modifier = violated_congress_of_visegrad_antagonism
				}
			}
		}
		change_societal_value = {
			type = belligerent_vs_conciliatory
			value = societal_value_large_move_to_left
		}
	}
}