[flavor_fra.25] 金缕地会晤
时间范围:无明确 from 和 to 日期限制。事件通过游戏机制触发,无 monthly_chance 概率设定。
触发条件:
事件本身未定义 trigger 字段,其触发依赖于游戏内其他脚本或条件。
关键效果:
-
选项 A (历史选项):
- 设置变量
fields_of_the_cloth_of_gold_accepted = 1。 - 在首都市场添加一个持续12个月的临时需求
demand:field_of_the_cloth_of_gold。 - 对本国和目标国无声触发事件
flavor_eng.119。 - 显示自定义提示
flavor_fra.25.tt1和flavor_fra.25.tt2。 - AI选择此选项的基础权重因子为9,但在破产状态下权重为0,贷款超过5笔时权重减半。
- 设置变量
-
选项 B:
- 设置变量
fields_of_the_cloth_of_gold_declined = 1。 - 对目标国无声触发事件
flavor_eng_diplomacy.2。 - 显示自定义提示
flavor_fra.25.tt3。 - AI选择此选项的权重因子为1。
- 设置变量
背景介绍: 此事件模拟了历史上著名的“金缕地会晤”。1520年,英格兰国王亨利八世与法国国王弗朗索瓦一世在法国加莱附近举行了一场盛大的外交峰会,旨在展示两国的财富与权力,并试图巩固和平。会场装饰奢华,铺满金线织物,故得名“金缕地”。尽管场面极其壮观,但此次会晤并未达成任何实质性的长期政治或军事协议,更多是两位君主个人威望与竞争的一次展示。
完整事件代码:
flavor_fra.25 = {
hide_portraits = yes
type = country_event
title = flavor_fra.25.title
desc = {
first_valid = {
triggered_desc = {
trigger = {
scope:target_root_country = { character:eng_thomas_wolsey ?= { is_alive = yes in_cabinet = yes } }
}
desc = flavor_fra.25.desc_wolsey
}
triggered_desc = {
trigger = { always = yes }
desc = flavor_fra.25.desc
}
}
}
illustration_tags = {
10 = happy
10 = interior
}
immediate = {
event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
scope:target_root_country = { capital = { save_scope_as = target_location } ruler = { save_scope_as = target_character } }
save_scope_as = sender
}
option = {
historical_option = yes
name = flavor_fra.25.a
set_variable = { name = fields_of_the_cloth_of_gold_accepted value = 1 }
capital.market = {
add_temporary_demand = {
type = demand:field_of_the_cloth_of_gold
months = 12
}
}
trigger_event_silently = { id = flavor_eng.119 days = 0 }
scope:target_root_country = { trigger_event_silently = { id = flavor_eng.119 days = 0 } }
custom_tooltip = flavor_fra.25.tt1
custom_tooltip = flavor_fra.25.tt2
ai_chance = {
factor = 9
modifier = {
factor = 0
is_during_bankruptcy = yes
}
modifier = {
factor = 0.5
num_loans > 5
}
}
}
option = {
name = flavor_fra.25.b
set_variable = { name = fields_of_the_cloth_of_gold_declined value = 1 }
scope:target_root_country = { trigger_event_silently = { id = flavor_eng_diplomacy.2 days = 0 } }
custom_tooltip = flavor_fra.25.tt3
ai_chance = {
factor = 1
}
}
}