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_mam.50] 船用物资需求上升

时间范围:1300.1.1 - 1800.1.1(每月 1% 概率)

触发条件

  • 国家拥有变量 mam_enable_exploration_events
  • 国家拥有至少一位正在执行探索任务的领袖。

关键效果

  • 选项 A (flavor_mam.50.a):

    • 增加市民阶层满意度(轻微增益)。
    • 首都市场添加临时需求:类型为 demands_of_ships,持续 240 个月,人口规模系数为 0.002。
  • 选项 B (flavor_mam.50.b):

    • 减少 4 金币。
    • 增加市民阶层满意度(显著增益)。
    • 首都市场添加临时需求:类型为 demands_of_ships,持续 240 个月,人口规模系数为 0.008。
    • 所有拥有建筑 building_type:naval_supplies_guild(海军物资行会)的省份,获得繁荣度(显著增益)。

背景介绍: 随着马穆鲁克苏丹国(MAM)的探索活动日益活跃,远航船只的建造与维护需求激增。这导致首都市场对木材、绳索、帆布等船用物资的需求急剧上升,为相关产业和商人阶层带来了新的机遇与挑战。

完整事件代码

flavor_mam.50 = { #Rising Demand of Ship Supplies
	type = country_event
	title = flavor_mam.50.title
	desc = flavor_mam.50.desc
	image = "gfx/interface/icons/trade_goods/illustrations/icon_goods_naval_supplies.dds"

	fire_only_once = yes

	dynamic_historical_event = {
		tag = MAM
		from = 1300.1.1
		to = 1800.1.1
		monthly_chance = 1
	}

	trigger = {
		has_variable = mam_enable_exploration_events
		any_exploration_from_country = {
			has_leader = yes
		}
	}

	option = {
		name = flavor_mam.50.a
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_mild_bonus }
		capital = {
			market = {
				add_temporary_demand = { type = demand:demands_of_ships months = 240 scale_with_pop = 0.002 }
			}
		}
	}

	option = {
		name = flavor_mam.50.b
		change_gold_effect = { scale = -4 }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_severe_bonus }
		capital = {
			market = {
				add_temporary_demand = { type = demand:demands_of_ships months = 240 scale_with_pop = 0.008 }
			}
		}
		custom_tooltip = {
			text = flavor_mam.50.b.tt
			every_owned_location = {
				if = {
					limit = {
						has_building = building_type:naval_supplies_guild
					}
					change_prosperity = prosperity_severe_bonus
				}
			}
		}
	}
}