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_ven.94 咖啡馆争议

时间范围:1750.1.1 - 1836.1.1(每月 1% 概率)

触发条件

  • 国家存在首都。
  • 首都所在市场有咖啡贸易。
  • 国家拥有威尼斯地区。

关键效果

  • 选项 A (历史选项)
    • 威尼斯地区:繁荣度轻微下降。
    • 市民阶层满意度:严重下降。
    • 神职人员阶层满意度:严重提升。
    • 贵族阶层满意度:严重提升。
    • 首都市场:添加一个持续10年的临时需求 ven_coffeehouses_banned
  • 选项 B
    • 威尼斯地区:繁荣度轻微提升。
    • 市民阶层满意度:严重提升。
    • 神职人员阶层满意度:严重下降。
    • 贵族阶层满意度:严重下降。

背景介绍: 在18世纪至19世纪初的威尼斯,咖啡馆作为新兴的社交与商业场所,引发了社会各阶层的争议。市民阶层(商人、手工业者)视其为促进贸易与交流的场所,而传统势力如神职人员和贵族则可能担忧其对社会秩序、道德观念或自身特权的影响。该事件模拟了威尼斯共和国在面对咖啡文化兴起时,需要在促进商业繁荣与维护传统社会结构之间做出的抉择。

完整事件代码

flavor_ven.94 = { #The Coffeehouse Controversy
	type = country_event
	title = flavor_ven.94.title
	desc = flavor_ven.94.desc

	fire_only_once = yes

	historical_info = flavor_ven.94.historical_info

	dynamic_historical_event = {
		tag = VEN
		from = 1750.1.1
		to = 1836.1.1
		monthly_chance = 1
	}

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

	trigger = {
		exists = capital
		capital.market ?= {
			is_traded_in_market = goods:coffee
		}
		owns = location:venice
	}

	option = {
		name = flavor_ven.94.a
		historical_option = yes
		location:venice = {
			change_prosperity = prosperity_mild_penalty
		}
		add_estate_satisfaction = { type = estate_type:burghers_estate
			value = estate_satisfaction_severe_penalty
		}
		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_bonus
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_bonus
		}
		capital.market = {
			add_temporary_demand = {
				type = demand:ven_coffeehouses_banned
				years = 10
			}
		}
	}

	option = {
		name = flavor_ven.94.b
		location:venice = {
			change_prosperity = prosperity_mild_bonus
		}
		add_estate_satisfaction = { type = estate_type:burghers_estate
			value = estate_satisfaction_severe_bonus
		}
		add_estate_satisfaction = { type = estate_type:clergy_estate
			value = estate_satisfaction_severe_penalty
		}
		add_estate_satisfaction = { type = estate_type:nobles_estate
			value = estate_satisfaction_severe_penalty
		}
	}
}