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_brapru.33 马铃薯之王

时间范围:1700.1.1 - 1836.1.1,每月 1% 概率触发

触发条件

  • 国家拥有君主。
  • 国家在欧洲大陆的任一市场中,至少有一个省份出产 goods:potato(马铃薯)。
  • north_german_region(北德意志地区)中,至少有 3 个由本国控制的省份出产 goods:wheat(小麦)。

关键效果

  • 选项 A (历史选项)
    • 获得 estate_satisfaction_severe_bonus(大量增加)的 estate_type:peasants_estate(农民阶层)满意度。
    • 将事件触发时随机选定的两个本国小麦产地省份(scope:target_locationscope:target_location2)的产出资源改为 goods:potato(马铃薯)。
    • 上述两个省份获得 prosperity_mild_bonus(轻度)的繁荣度增长。
  • 选项 B
    • 使社会价值观 traditionalist_vs_innovative(传统主义 vs 创新)向“传统主义”方向移动一级(societal_value_move_to_left)。

背景介绍: 该事件反映了18世纪至19世纪初普鲁士及德意志地区农业改革的历史进程,特别是“马铃薯之王”腓特烈大帝(腓特烈二世)推广马铃薯种植以应对饥荒、保障粮食安全的政策。面对传统谷物(如小麦)种植的局限和频繁的粮食危机,普鲁士统治者通过行政命令和农业革新,强制或鼓励农民改种高产且适应性强的马铃薯,深刻改变了当地的农业结构和饮食文化,为人口增长和工业化奠定了基础。事件中的选项体现了接受改革或坚持传统的不同路径。

完整事件代码

flavor_brapru.33 = { #The Potato King
	type = country_event
	title = flavor_brapru.33.title
	desc = flavor_brapru.33.desc

	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_potato.dds"

	fire_only_once = yes

	historical_info = flavor_brapru.33.historical_info

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	dynamic_historical_event = {
		tag = BRA
		tag = PRU
		from = 1700.1.1
		to = 1836.1.1
		monthly_chance = 1
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		ruler_or_regent ?= {
			save_scope_as = target_ruler
		}
		region:north_german_region = {
			random_location_in_region = {
				limit = {
					owner = root
					raw_material = goods:wheat
				}
				save_scope_as = target_location
			}
			random_location_in_region = {
				limit = {
					owner = root
					raw_material = goods:wheat
					NOT = { this = scope:target_location }
				}
				save_scope_as = target_location2
			}
		}
	}

	trigger = {
		has_ruler = yes
		any_market_with_merchants = {
			location.continent = continent:europe
            any_location_in_market = {
                raw_material ?= goods:potato
            }
        }
		region:north_german_region = {
			any_location_in_region = {
				count > 2
				owner = root
				raw_material = goods:wheat
			}
		}
	}

	option = {
		name = flavor_brapru.33.a
		historical_option = yes
		add_estate_satisfaction = { type = estate_type:peasants_estate value = estate_satisfaction_severe_bonus }
		scope:target_location = {
			change_raw_material = goods:potato
			change_prosperity = prosperity_mild_bonus
		}
		scope:target_location2 = {
			change_raw_material = goods:potato
			change_prosperity = prosperity_mild_bonus
		}
	}

	option = {
		name = flavor_brapru.33.b
		change_societal_value = { type = traditionalist_vs_innovative value = societal_value_move_to_left }
	}
}