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_maj.14 坎迪苏拉瓦纳神庙

时间范围:1350.1.1 - 1402.6.1(每月 10% 概率触发)

触发条件

  • 国家已拥有变量 maj_had_temples_event_variable
  • 国家未处于战争状态。
  • 国家未处于破产状态。
  • 国家拥有统治者。
  • 位于达哈(Daha)的省份:
    • 拥有建筑 temple(寺庙)。
    • 所有者为满者伯夷(MAJ)。

关键效果

  • 选项 A:建造它

    • 在达哈(Daha)省份建造一座 cathedral(大教堂)。
    • 为国家增加 prestige_mild_bonus(适度的威望奖励)。
  • 选项 B:不建造

    • clergy_estate(教士阶层)增加 estate_satisfaction_extreme_penalty(极度的阶层满意度惩罚)。
    • 在达哈(Daha)省份,所有属于本国(root)的人口(pop)增加 pop_satisfaction_weak_penalty(轻微的人口满意度惩罚)。

背景介绍: 该事件反映了14世纪中后期满者伯夷王国(Majapahit)在达哈地区(今印度尼西亚爪哇岛)的宗教与建筑活动。随着王国统治的巩固和财富的积累,统治者面临是否在已有寺庙的基础上,进一步建造更宏伟的大教堂(或大型宗教建筑)以彰显国力与虔诚的抉择。这一决定不仅关乎王室的威望,也直接影响到教士阶层和当地民众的满意度,是王国治理与宗教政策的一个缩影。

完整事件代码

flavor_maj.14 = {  #Candi Surawana
	hide_portraits = yes
	type = country_event
	title = flavor_maj.14.title
	desc = flavor_maj.14.desc
	historical_info = flavor_maj.14.historical_info
	fire_only_once = yes
	dynamic_historical_event = {
		tag = MAJ
		from = 1350.1.1
		to = 1402.6.1
		monthly_chance = 10
	}
	trigger = {
		has_variable = maj_had_temples_event_variable
		at_war = no
		is_during_bankruptcy = no
		has_ruler = yes
		location:daha = {
			has_building = building_type:temple
			owner = c:MAJ
		}
	}

	immediate = {
		save_scope_as = target_country
		ruler_or_regent = { save_scope_as = target_character }
		location:daha = { save_scope_as = target_location }
	}

	option = { #Build it
		name = flavor_maj.14.a

		location:daha = {
			construct_building = { building_type = building_type:cathedral }
		}

		add_prestige = prestige_mild_bonus
	}

	option = { #No
		name = flavor_maj.14.b

		add_estate_satisfaction = {
			type = estate_type:clergy_estate
			value = estate_satisfaction_extreme_penalty
		}

		location:daha = {
			every_pop = {
				limit = {
					owner = root
				}
				add_pop_satisfaction = pop_satisfaction_weak_penalty
			}
		}
	}
}