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_eng.23] 休·奥尼尔与蒂龙起义

时间范围:1580.1.1 - 1598.1.1(每月 20% 概率)

触发条件

  • 国家主流文化 不是 爱尔兰文化。
  • 国家人口中 爱尔兰文化人口。
  • 国家 拥有或控制 爱尔兰地区(Ireland Region)内的至少一个省份。
  • 奥尼尔王朝(o_neill_dynasty)存在,且该王朝中 活着的成年男性成员。

关键效果

  • 历史选项:选择选项 flavor_eng.23.a
    • 所有属于本国的爱尔兰文化人口满意度降至最低,并转而效忠于“蒂龙起义”叛军。
    • 目标人物(休·奥尼尔)加入“蒂龙起义”叛军。
    • 如果本国存在未与本国处于战争或停战状态的AI对手,则随机一个此类对手将支持“蒂龙起义”叛军。
  • 事件前置效果:
    • 如果奥尼尔王朝存在符合条件的成年男性成员,则随机选择一人作为目标人物。
    • 如果奥尼尔王朝不存在符合条件的成员,则创建一个名为“休”(Hugh)、属于奥尼尔王朝、出生于155年邓甘嫩(Dungannon)的爱尔兰天主教贵族人物,其行政、外交、军事能力值在50-100之间。
    • 创建一支名为“蒂龙起义”(Tyrone Rebellion)的爱尔兰文化民族主义叛军。
    • 将目标人物指派给这支叛军。

背景介绍: 该事件模拟了历史上著名的“九年战争”(1593-1603年)或“蒂龙起义”的爆发。在伊丽莎白一世统治时期,英格兰对爱尔兰的统治日益加强,引发了当地盖尔贵族,尤其是奥尼尔家族领导的大规模反抗。休·奥尼尔(Hugh O’Neill)作为蒂龙伯爵,成为了这场抵抗运动的核心人物,他联合了爱尔兰各地的力量,并一度寻求西班牙等外国势力的援助,与英格兰军队进行了长期的游击战争。

完整事件代码

flavor_eng.23 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
	title = flavor_eng.23.title
	desc = flavor_eng.23.desc
	historical_info = flavor_eng.23.historical_info

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1580.1.1
		to = 1598.1.1
		monthly_chance = 20
	}

	illustration_tags = {
		10 = exterior
		10 = armed
	}

	trigger = {
		"culture_percentage_in_country(culture:irish)" > 0
		culture != culture:irish
		region:ireland_region = {
			any_location_in_region = {
				OR = {
					top_owner ?= ROOT
					owner ?= ROOT
				}
			}
		}
		trigger_if = {
			limit = { dynasty_exists = o_neill_dynasty }
			dynasty:o_neill_dynasty ?= {
				any_character_in_dynasty = {
					count > 0
					is_alive = yes
					is_adult = yes
					is_female = no
				}
			}
		}
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		if = {
			limit = {
				dynasty_exists = o_neill_dynasty
				dynasty:o_neill_dynasty ?= {
					any_character_in_dynasty = {
						is_alive = yes
						is_adult = yes
						is_female = no
					}
				}
			}
			dynasty:o_neill_dynasty = {
				random_character_in_dynasty = {
					limit = {
						is_alive = yes
						is_adult = yes
						is_female = no
					}
					save_scope_as = target_character
				}
			}
		}
		else = {
			create_character = {
				first_name = name_hugh
				dynasty = dynasty:o_neill_dynasty
				estate = estate_type:nobles_estate
				adm = { 50 100 }
				dip = { 50 100 }
				mil = { 50 100 }
				birth_date = 1550
				birth_location = location:dungannon
				culture = culture:irish
				religion = religion:catholic
				script = eng_hugh_oneill
				save_scope_as = target_character
			}
		}

		create_rebel = {
			name = tyrone_rebellion
			category = nationalist
			culture = culture:irish
			save_scope_as = tyrone_rebels
		}

		scope:target_character = { change_character_allegiance = scope:tyrone_rebels }
	}

	option = {
		name = flavor_eng.23.a

		custom_tooltip = {
			text = irish_pops_rise_up_tt
			every_owned_location = {
				every_pop = {
					limit = {
						owner = root
						culture = culture:irish
					}
					add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					change_pop_allegiance = scope:tyrone_rebels
				}
			}
		}

		show_as_tooltip = {
			scope:target_character = { change_character_allegiance = scope:tyrone_rebels }
		}

		if = {
			limit = {
				any_rival = {
					NOT = { has_truce_with = root }
					at_war = no
					is_ai = yes
				}
			}
			random_rival = {
				limit = {
					NOT = { has_truce_with = root }
					at_war = no
					is_ai = yes
				}
				support_rebel = scope:tyrone_rebels
			}
		}
	}
}