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_chi_por.3] 提议的回应

时间范围

  • 起始日期:未指定(from 字段缺失)
  • 结束日期:未指定(to 字段缺失)
  • 触发概率:未指定(monthly_chance 字段缺失)

触发条件

  • 事件类型:国家事件(type = country_event
  • 触发机制:事件通过其他机制(如决策、事件链)触发,而非基于时间或概率。具体触发条件未在代码中明确定义。

关键效果

选项 Aflavor_chi_por.3.a

  • 效果取决于先前的选择
    1. 如果先前接受了提议(存在本地变量 accepted_offer):
      • 改变社会价值观:mercantilism_vs_free_trade 向右侧(重商主义方向)大幅移动。
    2. 如果先前拒绝了提议(不存在本地变量 accepted_offer):
      • 添加外交观点修正:对目标国家(scope:target_country)添加 chi_insulted_us 负面修正。

背景介绍

此事件似乎是某个外交或商业提议流程的后续环节。它模拟了一个国家在收到来自另一方的提议(可能是贸易协定、联盟请求或其他形式的合作)后,根据其先前的回应(接受或拒绝)所产生的不同后果。如果先前接受了提议,国家会进一步强化其重商主义政策倾向;如果先前拒绝了提议,则会因冒犯对方而损害两国关系。

完整事件代码

flavor_chi_por.3 = {
	type = country_event
	title = flavor_chi_por.3.title
	desc = {
		first_valid = {
			triggered_desc = {
				desc = flavor_chi_por.3.desc_success
				trigger = {
					has_local_variable = accepted_offer
				}
			}
			triggered_desc = {
				desc = flavor_chi_por.3.desc_failure
				trigger = {
					NOT = { has_local_variable = accepted_offer }
				}
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

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

	option = {
		name = flavor_chi_por.3.a
		
		if = {
			limit = {
				has_local_variable = accepted_offer
			}
			change_societal_value = {
				type = mercantilism_vs_free_trade
				value = societal_value_large_move_to_right
			}
		}
		else = {
			add_opinion = {
				modifier = chi_insulted_us
				target = scope:target_country
			}
		}
	}
}