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_dlh.6] 孟加拉附庸的领土要求

时间范围:1340.1.1 - 1360.12.30 (每月 1% 概率)

触发条件

  • 拥有至少一个附庸国,其首都位于 bengal_area 地区,且独立倾向 ≥ 50。
  • 控制 chai.province 省份或 mithila_area 地区内的任意省份。
  • 拥有与 chai.province 省份或 mithila_area 地区陆地接壤的省份。

关键效果

  • 选项 A (历史选项):授予他们领土

    • chai.province 省份和 mithila_area 地区内的所有省份所有权转移给独立倾向最高的孟加拉附庸国,并为其添加核心,同时移除本国核心。
    • 为该附庸国设置变量 delhi_gave_territory = yes
    • 如果 fall_of_delhi 局势处于活动状态且有生效决议,则为该决议的提议者增加 0.05 的 fall_of_delhi_vote_weight 变量值。
    • 增加大量政府权力惩罚。
  • 选项 B:改为赠送礼物

    • 损失 12 倍月收入的金币。
    • 为所有首都位于 bengal_area 地区且独立倾向 ≥ 50 的附庸国设置变量 delhi_gave_money = yes,并给予其相当于本国 4 倍月收入的金币。
    • 如果 fall_of_delhi 局势处于活动状态,则为该局势生效决议的提议者增加 0.03 的 fall_of_delhi_vote_weight 变量值。
    • 增加极端政府权力惩罚。
  • 选项 C:拒绝要求

    • 获得持续 20 年的 silver_famine_modifier 国家修正。
    • 所有首都位于 bengal_area 地区的附庸国独立倾向大幅增加,并对本国产生负面看法。
    • 如果 fall_of_delhi 局势处于活动状态,则为本国增加 0.02 的 fall_of_delhi_vote_weight 变量值。

背景介绍: 在德里苏丹国统治时期,其位于孟加拉地区的附庸国时常因距离遥远、文化差异和中央控制力减弱而表现出强烈的独立倾向。当这些附庸国实力增长、离心力增强时,他们可能会向德里苏丹提出领土要求,索要临近的米提拉地区或特定省份,以扩大自身势力范围并挑战德里的权威。苏丹国面临抉择:是割让土地以安抚强藩,还是破财消灾,抑或是强硬拒绝并承受可能的内乱后果。

完整事件代码

flavor_dlh.6 = {
	hide_portraits = yes
	type = country_event
	title = flavor_dlh.6.title
	desc = flavor_dlh.6.desc

	fire_only_once = yes
	dynamic_historical_event = {
		tag = DLH
		from = 1340.1.1
		to = 1360.12.30
		monthly_chance = 1
	}

	illustration_tags = {
		10 = exterior
		10 = armed
	}

	trigger = {
		any_subject = {
			capital.area = area:bengal_area
			liberty_desire >= 50
		}
		any_province = {
			OR = {
				this = location:chai.province
				area = area:mithila_area
			}
		}
		any_owned_location = {							#We have a land connection to mithila_area and chai.province to avoid bordergore
			province = {
				NOR = {
					this = location:chai.province
					area = area:mithila_area
				}
			}
			any_neighbor_location = {
				owner ?= c:DLH
				OR = {
					this.province = location:chai.province
					area = area:mithila_area
				}
			}
		}
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }
		set_head_scope = yes
		ordered_subject = {
			limit = { 
				liberty_desire >= 50
				capital.area = area:bengal_area
			}
			order_by = total_population
			save_scope_as = target_subject
			if = {
				limit = {
					exists = ruler
				}
				ruler = { save_scope_as = target_character }
			}
			else_if = { 
				limit = {
					exists = regent 
				}
				regent = { save_scope_as = target_character }
			}
		}
	}

	option = {
		name = flavor_dlh.6.a #Grant them territory
		historical_option = yes

		custom_tooltip = mithilaarea_hazaribagh_province_granted_to_target_subject
		hidden_effect = {
			every_owned_location = {
				limit = {
					OR = {
						province = location:chai.province
						area = area:mithila_area
					}
				}
				change_location_owner = scope:target_subject
				remove_core = ROOT
				add_core = scope:target_subject
				change_integration_level = core
			}
		}
		scope:target_subject = {
			set_variable = { name = delhi_gave_territory value = yes }
		}
		if = {
			limit = { 
				is_situation_active = situation:fall_of_delhi
				situation:fall_of_delhi = { has_active_resolution = yes}
			}
			custom_tooltip = gain_5_progress_for_claimants_tt
			hidden_effect = {
				situation:fall_of_delhi = {
					"active_resolution(resolution:fall_of_delhi_resolution).resolution_proposer" = {
						change_variable = {
							name = fall_of_delhi_vote_weight
							add = 0.05
						}
					}
				}
			}
		}
		add_government_power = government_power_ultimate_penalty
	}

	option = {	#Send them a gift instead
		name = flavor_dlh.6.b 
		change_gold_effect = { scale = -12 }
		every_subject = {
			limit = {
				capital.area = area:bengal_area
				liberty_desire >= 50
			}
			set_variable = { name = delhi_gave_money value = yes }
			add_gold = {
				value = overlord.monthly_income_trade_and_tax
				multiply = 4
			}
		}
		if = {
			limit = { is_situation_active = situation:fall_of_delhi }
			custom_tooltip = gain_3_progress_for_claimants_tt
			hidden_effect = {
				situation:fall_of_delhi = {
					"active_resolution(resolution:fall_of_delhi_resolution).resolution_proposer" = {
						change_variable = {
							name = fall_of_delhi_vote_weight
							add = 0.03
						}
					}
				}
			}
		}
		add_government_power = government_power_extreme_penalty
	}

	option = {
		name = flavor_dlh.6.c 

		add_country_modifier = {
			modifier = silver_famine_modifier
			years = 20
			mode = add_and_extend
		}
		every_subject = {
			limit = {
				capital.area = area:bengal_area
			}
			add_liberty_desire = liberty_desire_extreme_plus
			add_opinion = {
				target = overlord
				modifier = opinion_refused_demands
			}
		}
		if = {
			limit = { is_situation_active = situation:fall_of_delhi }
			custom_tooltip = gain_2_progress_for_delhi_tt
			hidden_effect = {
				c:DLH = {
					change_variable = {
						name = fall_of_delhi_vote_weight
						add = 0.02
					}
				}
			}
		}
	}
	after = {
		every_subject = {
			limit = {
				capital.area =