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_gen.9 热那亚的意大利政治抉择

时间范围:1400.1.1 - 1550.1.1,每月 2% 概率触发

触发条件

  • 国家 FRA(法兰西)必须存在。
  • 玩家国家必须是共和制政府类型(government_type:republic)。
  • 国家 FRA 不能是神圣罗马帝国(international_organization:hre)的领导者。
  • 国家 FRA 必须拥有至少 10 个非农村省份(num_of_non_rural >= 10)。

关键效果

  • 选项 A (flavor_gen.9.a)
    • 历史选项:是
    • 效果:
      • 国家 FRA 对玩家国家增加“亲圭尔夫派”观点修正(gen_pro_guelph)。
      • 神圣罗马帝国的领导者国家对玩家国家增加“反吉伯林派”观点修正(gen_anti_ghibellines)。
  • 选项 B (flavor_gen.9.b)
    • 效果:
      • 神圣罗马帝国的领导者国家对玩家国家增加“亲吉伯林派”观点修正(gen_pro_ghibellines)。
      • 国家 FRA 对玩家国家增加“反圭尔夫派”观点修正(gen_anti_guelph)。

背景介绍: 在15至16世纪,意大利半岛的政治格局深受外部强权干涉和内部派系斗争的影响。作为重要的海洋共和国,热那亚的对外政策选择不仅关乎自身利益,也牵动着法国与神圣罗马帝国在意大利的势力平衡。圭尔夫派(通常支持教皇和法国)与吉伯林派(通常支持神圣罗马帝国皇帝)的古老对立,在这一时期以新的形式影响着各城邦的外交取向。此事件反映了热那亚共和国在复杂的国际环境中,需要在两大势力之间做出明确的政治站队。

完整事件代码

flavor_gen.9 = {
	type = country_event
	title = flavor_gen.9.title
	desc = flavor_gen.9.desc
	
	fire_only_once = yes
	dynamic_historical_event = {
		tag = GEN
		from = 1400.1.1
		to = 1550.1.1
		monthly_chance = 2
	}
	illustration_tags = {
		10 = regular
		10 = interior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
	}
	trigger = {
		country_exists = c:FRA
		government_type = government_type:republic
		NOT = { c:FRA = international_organization:hre.leader_country }

		c:FRA = {
			num_of_non_rural >= 10
		}
	}

	option = {
		name = flavor_gen.9.a
		historical_option = yes
		c:FRA = { add_opinion = { target = root modifier = gen_pro_guelph }	}
		international_organization:hre.leader_country = {	add_opinion = { target = root modifier = gen_anti_ghibellines }	}
	}
	option = {
		name = flavor_gen.9.b
		international_organization:hre.leader_country = {	add_opinion = { target = root modifier = gen_pro_ghibellines } 	}
		c:FRA = {	add_opinion = { target = root modifier = gen_anti_guelph } }
	}
}