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_lit.38 立陶宛的欧洲粮仓

时间范围:1400.1.1 - 1600.1.1(每月 2% 概率)

触发条件

  • 国家为 LIT(立陶宛)
  • ruthenia_region(鲁塞尼亚地区) 拥有至少 5% 的可拥有地块。
  • 这些地块的原材料必须是 goods:wheat(小麦)

关键效果

  • 选项 A (flavor_lit.38.a)

    • 为鲁塞尼亚地区所有拥有的小麦产地添加一个名为 lit_grain_supply_of_europe 的地点修正,持续 20 年。
    • 农民阶层(estate_type:peasants_estate) 满意度 轻微下降(estate_satisfaction_mild_penalty)
  • 选项 B (flavor_lit.38.b)

    • 农民阶层(estate_type:peasants_estate) 满意度 轻微提升(estate_satisfaction_mild_bonus)
    • 获得一笔金钱,效果规模为 2

背景介绍: 在14至16世纪,立陶宛大公国,特别是其广阔的鲁塞尼亚(今白俄罗斯、乌克兰等地)领土,以其肥沃的黑土平原成为欧洲重要的粮食产区。随着农业技术的传播和土地开垦,该地区的小麦产量大幅增长,不仅满足了本地需求,还通过贸易网络出口到中欧和西欧,为立陶宛带来了巨大的财富和政治影响力。此事件反映了立陶宛如何利用其“欧洲粮仓”的地位,以及在发展农业经济与平衡国内社会阶层利益之间所做的抉择。

完整事件代码

flavor_lit.38 = {
	type = country_event
	title = flavor_lit.38.title
	desc = flavor_lit.38.desc

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

	dynamic_historical_event = {
		tag = LIT
		from = 1400.1.1
		to = 1600.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		region:ruthenia_region = {
			any_ownable_location_in_region = {
				percent >= 0.05
				raw_material = goods:wheat
				owner ?= root
			}
		}
	}

	option = {
		name = flavor_lit.38.a

		custom_tooltip = {
			text = lit_cheaper_granaries_in_ruthenia_tt
			every_owned_location = {
				limit = {
					region = region:ruthenia_region
					raw_material = goods:wheat
				}
				add_location_modifier = {
					mode = add_and_extend
					modifier = lit_grain_supply_of_europe
					years = 20
				}
			}
		}

		add_estate_satisfaction = {
			type = estate_type:peasants_estate
			value = estate_satisfaction_mild_penalty
		}
	}

	option = {
		name = flavor_lit.38.b

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

		change_gold_effect = { scale = 2 }
	}
}