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_ori.1002 葡萄牙商馆投资计划

时间范围
事件未定义 fromto 日期,也未指定 monthly_chance,因此该事件通常由特定条件或脚本触发,而非定期发生。

触发条件
事件代码中未包含明确的 trigger 字段。该事件通常作为其他事件或决策的结果被调用,其触发逻辑可能依赖于外部脚本或前置条件(例如,特定国家与目标国的关系、目标省份的状态等)。

关键效果
事件提供两个选项:

  • 选项 A (flavor_ori.1002.a)
    在目标地点(scope:target_location)为事件所有者(root)建造一座名为 ori_portuguese_quarters 的建筑。

  • 选项 B (flavor_ori.1002.b)
    事件所有者与目标国家(scope:target_country)互相添加名为 ori_rejected_investment_plan 的意见修正。此选项未标记为历史选项。

背景介绍
该事件模拟了葡萄牙(或具有类似贸易扩张模式的国家)在海外寻求建立贸易据点的情景。选项A代表接受当地统治者或社区的投资提议,建立葡萄牙商馆(ori_portuguese_quarters),以巩固贸易网络并获取经济利益。选项B则代表拒绝该投资计划,可能导致双方关系恶化,互相产生负面看法(ori_rejected_investment_plan)。这反映了近代早期欧洲殖民势力与当地政权在贸易特权与主权问题上的常见互动与摩擦。

完整事件代码

flavor_ori.1002 = {
	type = country_event
	title = flavor_ori.1002.title
	desc = flavor_ori.1002.desc
	major = yes
	major_trigger = {
		this = scope:target_country
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

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

	option = {
		name = flavor_ori.1002.a

		scope:target_location = {
			construct_building = {
				building_type = building_type:ori_portuguese_quarters
				owner = root
			}
		}
	}

	option = {
		name = flavor_ori.1002.b

		add_opinion = {
			modifier = ori_rejected_investment_plan
			target = scope:target_country
		}

		scope:target_country = {
			add_opinion = {
				modifier = ori_rejected_investment_plan
				target = root
			}
		}
	}
}