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_mos.10 莫斯科的银币铸造

时间范围:1338.1.1 - 1378.1.1,每月 5% 概率触发

触发条件

  • 国家为 MOS(莫斯科)或 RUS(罗斯)。
  • 满足以下任一条件:
    • 首都 capital 不是市场中心 is_market_center = no
    • 月度贸易收入 monthly_trade_income 低于 5。
  • 国家拥有统治者 has_ruler = yes

关键效果

  • 选项 A (历史选项)
    • 在首都市场 capital.market 为国家 root 添加持续10年的商人力量加成 merchant_power_mild_bonus,关联键为 denga_ruble_key
    • 首都获得持续10年的微弱繁荣度加成 prosperity_weak_bonus
    • 首都市场添加持续10年的临时需求 demand:mos_silver_coinage_introduced
    • AI选择此选项的概率因子为 1
  • 选项 B
    • 首都获得持续10年的地点修正 denga(模式为添加并延长 add_and_extend)。
    • 首都市场添加持续5年的临时需求 demand:mos_silver_coinage_introduced
    • AI选择此选项的概率因子为 0.5
  • 选项 C
    • 首都获得持续10年的地点修正 ruble(模式为添加并延长 add_and_extend)。
    • 国家获得“趋向开放”的推动 nudge_towards_openness = yes
    • 首都市场添加持续5年的临时需求 demand:mos_silver_coinage_introduced
    • AI选择此选项的概率因子为 0.5

背景介绍: 在14世纪中叶,莫斯科大公国正处于巩固和扩张的关键时期。随着贸易活动的增加和中央集权的加强,原始的以物易物和外国货币流通体系已难以满足经济需求。首都莫斯科作为政治中心,其经济功能,特别是作为市场中心的地位亟待提升。此事件反映了莫斯科公国引入本地银币(如“坚卡”和“卢布”)以统一货币、刺激贸易、增加国库收入并加强经济自主性的历史进程。

完整事件代码

flavor_mos.10 = {
	hide_portraits = yes
	type = country_event
	fire_only_once = yes
	title = flavor_mos.10.title
	desc = flavor_mos.10.desc
	image = "gfx/interface/illustrations/institutions/banking.dds"

	dynamic_historical_event = {
		tag = MOS
		tag = RUS
		from = 1338.1.1
		to = 1378.1.1
		monthly_chance = 5
	}

	trigger = {

		OR = {
			capital = { is_market_center = no }
			monthly_trade_income < 5
		}
		has_ruler = yes
	}

	immediate = {

		capital = { save_scope_as = target_location }

		ruler ?= {
			save_scope_as = target_character
		}
	}

	option = {
		name = flavor_mos.10.a
		historical_option = yes

		capital = {
			market = {
				add_merchant_power = {
					country = root
					power = merchant_power_mild_bonus
					years = 10
					key = denga_ruble_key
				}
			}
			change_prosperity = prosperity_weak_bonus
		}

		capital.market = {
			add_temporary_demand = {
				type = demand:mos_silver_coinage_introduced
				years = 10
			}
		}

		ai_chance = {
			factor = 1
		}
	}

	option = {
		name = flavor_mos.10.b

		capital = {
			add_location_modifier = {
				modifier = denga
				years = 10
				mode = add_and_extend
			}
		}

		capital.market = {
			add_temporary_demand = {
				type = demand:mos_silver_coinage_introduced
				years = 5
			}
		}

		ai_chance = {
			factor = 0.5
		}
	}

	option = {
		name = flavor_mos.10.c

		capital = {
			add_location_modifier = {
				modifier = ruble
				years = 10
				mode = add_and_extend
			}
		}

		nudge_towards_openness = yes

		capital.market = {
			add_temporary_demand = {
				type = demand:mos_silver_coinage_introduced
				years = 5
			}
		}

		ai_chance = {
			factor = 0.5
		}
	}

	historical_info = flavor_mos.10.historical_info

}