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_vij.24 维贾亚纳加尔的城市发展

时间范围

1337.1.1 - 1450.1.1,每月有 1% 的概率触发。

触发条件

  • 国家必须拥有 vijayanagar 地区。
  • 国库黄金储备必须大于或等于国家 4个月 的月收入(贸易与税收之和)。

关键效果

选项 A: flavor_vij.24.a

  • 效果
    • vijayanagar 地区:
      • 如果该地区尚未拥有 灌溉系统 建筑,则以 50% 的折扣(赞助理由:burghers_cheap_sponsorship)建造一个。
      • 为该地区增加 development_mild_bonus 级别的发展度。
    • 国库黄金减少 2个月 的月收入。

选项 B: flavor_vij.24.b

  • 效果
    • 国家声望受到 prestige_mild_penalty 级别的惩罚。

背景介绍

该事件反映了14至15世纪维贾亚纳加尔帝国在其核心地区进行城市与农业基础设施投资的历史可能性。作为南印度的重要强国,维贾亚纳加尔通过发展灌溉系统和促进城市繁荣来巩固其经济与政治基础。事件中的选择体现了统治者如何在财政支出与国家长远发展之间进行权衡。

完整事件代码

flavor_vij.24 = {
	type = country_event
	title = flavor_vij.24.title
	desc = flavor_vij.24.desc

	fire_only_once = yes

	dynamic_historical_event = {
		tag = VIJ
		from = 1337.1.1
		to = 1450.1.1
		monthly_chance = 1
	}

	trigger = {
		owns = location:vijayanagar
		gold >= {
			value = root.monthly_income_trade_and_tax
			multiply = 4
		}
	}

	immediate = {
		ruler_or_regent ?= {
			save_scope_as = target_character
		}

		location:vijayanagar = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_vij.24.a

		scope:target_location = {
			if = {
				limit = {
					NOT = {
						has_building = building_type:irrigation_systems
					}
				}
				construct_building = {
					building_type = building_type:irrigation_systems
					cost_multiplier = 0.50
					cost_multiplier_reason = "burghers_cheap_sponsorship"
				}
			}
			change_development = development_mild_bonus
		}
		change_gold_effect = { scale = -2 }
	}

	option = {
		name = flavor_vij.24.b

		add_prestige = prestige_mild_penalty
	}
}