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_fra_dau.100 多菲内法令

时间范围:1348年1月1日 - 1351年1月1日(每月 100% 概率)

触发条件

  • 国家 DAU 存在。
  • 拥有变量 sale_of_viennois_offer
  • 本国存在统治者。
  • 人物 dau_humbert_ii_sancerre 存在。
  • 国家 DAU 的统治者是人物 dau_humbert_ii_sancerre

关键效果

  • 选项 A:我们将接受他的提议,使“多菲内”成为一个独特的王室头衔
    • 历史选项:是
    • AI 选择权重:70
    • 效果:
      • 设置变量 adopted_the_title_dauphin 为 1。
      • 显示自定义提示:heirs_will_inherit_dauphin_title
      • 正统性 +15。
      • 支付相当于 12 个月贸易与税收总收入的金币。
      • 目标国家 DAU 获得 1000 金币,并将其统治者设置为 FRA 的统治者。
  • 选项 B:接受他的提议,但将其与其他王室头衔合并
    • AI 选择权重:10
    • 效果:
      • 正统性 -10。
      • 支付相当于 8 个月贸易与税收总收入的金币。
      • 目标国家 DAU 获得 1000 金币,并将其统治者设置为 FRA 的统治者。
  • 选项 C:王室在任何情况下都不会救助他
    • AI 选择权重:20
    • 效果:
      • 威望 +10。

背景介绍: 此事件模拟了14世纪中叶,法国王室与多菲内伯爵国之间关于领土与头衔继承的关键谈判。多菲内伯爵于贝尔二世因财政困境,提出将其领地售予法国国王。法国国王的回应将决定“多菲内”这一头衔的未来地位,是将其确立为独特的王室继承头衔,还是将其并入现有体系,亦或是拒绝交易以维护王室财政的独立性。这一决定对法国南部的政治格局和王室继承法产生了深远影响。

完整事件代码

flavor_fra_dau.100 = { # Delphinal Statute
    type = country_event
    title = flavor_fra_dau.100.title
    desc = flavor_fra_dau.100.desc

    fire_only_once = yes
    dynamic_historical_event = {
        tag = FRA
        from = 1348.1.1 
        to = 1351.1.1 
        monthly_chance = 100
    }


    trigger = {
        country_exists = c:DAU
        has_variable = sale_of_viennois_offer
        exists = ruler
        exists = character:dau_humbert_ii_sancerre
        c:DAU = {
            ruler ?= character:dau_humbert_ii_sancerre
        }
    }
	
	illustration_tags = {
		10 = regular
		10 = interior
	}	


    immediate = {
        event_illustration_estate_effect = { foreground = estate_type:burghers_estate background = estate_type:burghers_estate }
        ruler = {
            save_scope_as = scope_rule_fra
        }
        c:DAU = {
            save_scope_as = target_country
            ruler = {
                save_scope_as = scope_rule_dau
            }            
        }
    }    
    
    option = { # We shall accept his offer and make Dauphin a distinct royal title
        name = flavor_fra_dau.100.a    
        historical_option = yes        
        ai_chance = {
            base = 70
        }            
        set_variable = { name = adopted_the_title_dauphin value = 1 }
        custom_tooltip = heirs_will_inherit_dauphin_title
        add_legitimacy = 15
        add_gold = {
            value = root.monthly_income_trade_and_tax
            multiply = -12
        }         
        scope:target_country = {
            add_gold = {
                value = 1000
            }                 
            set_new_ruler = c:FRA.ruler    
        }            
    }
    option = { # Accept his offer, but merge it with other royal titles
        name = flavor_fra_dau.100.b        
        ai_chance = {
            base = 10
        }                
        add_legitimacy = -10
        add_gold = {
            value = root.monthly_income_trade_and_tax
            multiply = -8
        }         
        scope:target_country = {
            add_gold = {
                value = 1000
            }                 
            set_new_ruler = c:FRA.ruler    
        }                    
    }    
    option = { # The Crown will not bail him out under no circumstances
        name = flavor_fra_dau.100.c
        ai_chance = {
            base = 20
        }                
        add_prestige = 10        
    }    
}