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_flo.51 美第奇长颈鹿

时间范围:1485.1.1 - 1500.12.30 (每月 20% 概率)

触发条件

  • 国家拥有统治者。
  • 满足以下条件之一:
    • 国家 MAM (马穆鲁克) 存在。
    • 埃及地区 (egypt_region) 内存在一个首都省份。

关键效果

  • 选项 A (历史选项)
    • egyptian_tag (埃及地区国家) 互相获得观点修正 flo_medici_giraffe_opinion
    • 获得国家修正 flo_medici_giraffe_renown,持续时间为永久 (years = -1)。
    • 显示自定义提示 FLO_giraffe_death_information
    • 在 90 至 180 天后,静默触发事件 flavor_flo.52
  • 选项 B
    • 条件效果:如果本国宗教为天主教,且 egyptian_tag 的宗教与本国不同,则 papal_tag (教宗国) 可能对本国获得观点修正 flo_not_accepting_gifts_from_heathens
    • 增加 clergy_estate (教士阶层) 的阶层满意度 estate_satisfaction_mild_bonus

背景介绍: 在文艺复兴时期的意大利,佛罗伦萨的美第奇家族以其对艺术、科学和异域珍奇的赞助而闻名。本事件模拟了美第奇家族可能从埃及地区获得一只长颈鹿作为礼物的历史轶事。这种来自非洲的奇特动物在当时欧洲被视为权力、财富与国际联系的象征,其到来既能提升统治者的声望,也可能因其来源涉及非基督教地区而引发宗教上的微妙反应。

完整事件代码

flavor_flo.51 = { # Medici Giraffe
	hide_portraits = yes
	type = country_event
	title = flavor_flo.51.title
	desc = flavor_flo.51.desc
	fire_only_once = yes

	dynamic_historical_event = {
		tag = FLO
		tag = TUS
		from = 1485.1.1
		to = 1500.12.30
		monthly_chance = 20
	}

	trigger = {
		has_ruler = yes
		OR = {
			country_exists = c:MAM
			region:egypt_region = {
				any_location_in_region = {
					is_capital = yes
				}
			}
		}
	}

	illustration_tags = {
        10 = happy
        10 = exterior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		ruler = { save_scope_as = country_ruler }
		if = {
			limit = {
				country_exists = c:MAM
			}
			c:MAM = { save_scope_as = egyptian_tag }
		}
		else = {
			region:egypt_region = {
				random_location_in_region = {
					limit = {
						is_capital = yes
					}
					owner = {
						save_scope_as = egyptian_tag
					}
				}
			}
		}
		c:PAP ?= {
			save_scope_as = papal_tag
		}
	}

	option = {
		name = flavor_flo.51.a

		historical_option = yes

		add_opinion_mutual_effect = {
			target = scope:egyptian_tag
			modifier = flo_medici_giraffe_opinion
		}

		add_country_modifier = {
			modifier = flo_medici_giraffe_renown
			years = -1
		}

		custom_tooltip = FLO_giraffe_death_information

		trigger_event_silently = {
			id = flavor_flo.52
			days = { 90 180 }
		}
	}

	option = {
		name = flavor_flo.51.b

		if = {
			limit = {
				religion = religion:catholic
				NOT = { scope:egyptian_tag.religion = ROOT.religion }
			}
			scope:papal_tag ?= {
				add_opinion = {
					modifier = flo_not_accepting_gifts_from_heathens
					target = ROOT
				}
			}
		}

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_mild_bonus
		}
	}
}