1.4 版本:修订间差异

Qi讨论 | 贡献
第159行: 第159行:
* 给劫掠者和其潜在目标构建贸易关系增加了些额外的事件。
* 给劫掠者和其潜在目标构建贸易关系增加了些额外的事件。


== User Modding ==
== 模组 ==


=== Deprecations ===
=== 删减 ===
* GetDummy Male and GetDummyFemale are now deprecated. Modifying them in script is no longer possible. Their use-cases have been replaced with GetGlobalVariable and GetGlobalList. They will be removed completely in 1.5 to ensure script and code that is more maintainable in the long-term.
* <code>GetDummyMale</code>和<code>GetDummyFemale</code>已经被删去。在脚本中修改他们已经不再可行。它们的功能已经被<code>GetGlobalVariable</code>和<code>GetGlobalList</code> 所替代。它们会在1.5版本中被完全删除以方便代码和脚本的长期维护。
 
=== Changes ===
* Add CloseGameView data function so mods can close specific in game views.
* Add garrison_reinforcement_factor. The param is used for set how fast current garrison size is increasing
* Add GetTraitFromGroup and GetTraitGroupLevel data functions on Character.
* Add GetTraitGroup( 'tag' ) and Trait.GetGroup data functions to get trait groups.
* Add HasTrait and HasTraitFromGroup data functions to Character.
* Add GetGlobalVariable and GetGlobalList data functions for getting data saved from script.
* Add MakeScopeValue, MakescopeFlag, and MakeScopeBool to create scope objects out of primitive types directly since they are not automatically creatable via the MakeScope member on complex types like Character.MakeScope.
* Add ScriptValue data function to scope objects which will evaluate a script value just with that scope object as root.
* Made the Localize data function allow the key it references to also call other data functions in it like SelectLocalization does.
* Add AddList data function for GuiScope, it is to add_to_list what AddScope is to save_scope_as.
* Added data functions GetTraitsWithFlag and GetTraitsWithoutFlag
* Added datamodel GetTraits on TraitGroup
* Added defines NMercenary::REALM_SIZE_MULT and NHolyOrder::REALM_SIZE_MULT
* Added effect deactivate_holy_site
* Added effect remove_dynasty_perk
* Added effect remove_innovation = innovation_key
* Added effect set_army_location
* Added effects clear_traits and copy_traits
* Added effects set_age and change_age
* Added list builder x_culture_global
* Added modifiers army_siege_value_mult, army_damage_mult, army_toughness_mult, army_pursuit_mult, and army_screen_mult
* Added trigger has_innovation_flag
* Added trigger perks_in_<lifestyle>, to query how many perks exist in a given lifestyle (rather than how many a specific character has)
* Building_garrison was renamed to building_max_garrison
* CBs now support the "icon" parameter to have them use a different icon key
* Character interactions now support the "icon" parameter to have them use a different icon key
* Create_betrothal now logs an error rather than silently failing when something's wrong
* Ensured that laws are always stored in database order, so that it is predictable how they will override one another
* Fixed replace_path in mod descriptors having no effect
* Fixed hot-reload for linux
* Make_concubine now supports same-sex concubinage
* Rename garrison param to max_garrison for building configs
* Spawn_army will now only spawn levies if scripted to do so
* The assign_council_task effect now properly errors when the old councillor cannot be fired, rather than just silently doing nothing


=== 改动 ===
* 新增<code>CloseGameView</code>数据功能,从而允许玩家在游戏界面内关闭想要关闭的模组。
* 新增<code>garrison_reinforcement_factor</code>以设定当前守军规模的增长速度。
* 给角色新增<code>GetTraitFromGroup</code>和<code>GetTraitGroupLevel</code>数据功能。
* 给特性组新增<code>GetTraitGroup('tag’)</code>和<code>Trait.GetGroup</code>数据功能。
*  给角色新增<code>HasTrait</code>和<code>HasTraitFromGroup</code>数据功能。
* 新增<code>GetGlobalVariable</code>和<code>GetGlobalList</code>数据功能。
* 新增<code>MakeScopeValue</code>,<code>MakescopeFlag</code>,和<code>MakeScopeBool</code>以直接从原始类别中创造作用域对象,因为它们并不会自动通过在复杂类型,例如<code>Character.MakeScope </code>中的<code>MakeScope</code>功能自动创建。
* 给作用域对象新增<code>ScriptValue</code>数据功能以分析只以该作用域对象为根的脚本数据。
* 让本地化的数据功能允许其指代的关键词直接同其类别内其他数据功能相关联,类比<code>SelectLocalization</code>。
* 给GuiScope 功能新增AddList 数据功能,其对<code>add_to_list</code>的作用如同AddScope对<code>save_scope_as</code>的效果。
* 新增数据功能<code>GetTraitsWithFlag</code>和<code>GetTraitsWithoutFlag</code>。
* 给<code>TraitGroup</code>新增数据模型<code>GetTraits</code>。
* 新增定义<code>NMercenary::REALM_SIZE_MULT 和NHolyOrder::REALM_SIZE_MULT</code>。
* 新增效果<code>deactivate_holy_site</code>。
* 新增效果<code>remove_dynasty_perk</code>。
* 新增效果<code>remove_innovation = innovation_key</code>。
* 新增效果<code>set_army_location</code>。
* 新增效果<code>clear_traits and copy_traits</code>。
* 新增效果<code>set_age</code>和<code>change_age</code>。
* 新增列表构建<code>x_culture_global</code>。
* 新增修正<code>army_siege_value_mul</code>,<code>army_damage_mult</code>,<code>army_toughness_mult</code>,<code>army_pursuit_mult</code>,<code>and army_screen_mult</code>。
* 新增触发器<code>has_innovation_flag</code>。
* 新增触发器<code>perks_in_<lifestyle></code>,以获得在特定生活方式的技能数量(而不是某角色已获取的技能数量)。
* <code>Building_garrison</code>被重命名为<code>building_max_garrison</code>。
* 宣战借口现在支持“icon”数据使用不同的图标关键字。
* 角色互动现在支持“icon”数据使用不同的图标关键字。
* <code>Create_betrothal</code>功能在出错时会记录错误而不是默默出错。
* 确保封建法律会固定以数据库顺序存储,以便让覆写可以预测。
* 修正了mod描述符中<code>replace_path</code>无效的问题。
* 修正了linux系统热重启的问题。
* <code>Make_concubine</code>功能现在将支持同性纳妾。
* 将驻建配置中的筑军数据重命名为<code>max_garrison</code>。
* <code>Spawn_army</code>功能现在若脚本编码如此编写,则只会生成征召兵。
* <code>assign_council_task</code>效果会在旧内阁成员无法被辞退时报错,而不是沉默不动。


== Bugfixes ==
== Bugfixes ==

2021年9月20日 (一) 17:26的版本

十字军之王 III
DLC Roads to Power.png 权力之路
DLC Legends of the Dead.png 不朽传说
1.121.12.2.11.12.31.12.41.12.5
DLC Legacy of Persia.png 波斯遗产
1.111.11.11.11.21.11.31.11.4
DLC TaT.png 巡游与比武大会
1.101.10.11.10.2
1.91.9.0.41.9.11.9.21.9.2.1
DLC FoI.png 伊比利亚的命运
1.81.8.11.8.2
1.71.7.1
1.61.6.0.11.6.11.6.1.11.6.1.2
DLC RC.png 帝王宫廷
1.51.5.0.21.5.11.5.1.1
DLC NL.png 北境群雄
1.41.4.21.4.4
1.31.3.1
Icon CK3b.png 基础版本
1.21.2.2
1.11.1.21.1.31.1.3.1
1.01.0.3

1.4 版本,又称“Azure”,发布于2021-06-08[1],校验码为7878

免费特性

  • 实装游戏规则预设!现在可以按喜好轻松切换不同配置。最后一次使用的配置将默认用于新游戏。
  • 实装角色查找器预设。寻找未来的配偶,监护人、内阁成员等人物会比以前容易得多!创建预设时几乎可以保留一切内容!但无法储存动态条目(如自定义信仰,特定的宗族和家族)。
  • 武装兵士可以单独征召至首个或特定集结点。允许玩家处理小规模叛乱或发动战争而不必召集所有征召兵。
  • 在游戏开始时,统治者现将基于收入雇佣一定数量的武装兵士。成为有地统治者后的角色也会获得武装兵士。
  • 实装地产的动态守军。守军现在有最大和最小容量。攻陷地产后会将守军缩减到最小容量。守军恢复至最大容量前每个月都会进行补员。升级地产可以提高补员速率。
  • 为所有玩家解锁“君主之旅Monarch's Journey”活动赠送的饰品(埃南高顶帽、夏普仑长管帽、弄臣帽、巫师胡、磨坊主发型、挑染磨坊主发型、贞德发型、侍童发型和鲻鱼头发型)。
    • 一些法兰克女性将使用贞德发型。
    • 一些苏格兰男人将梳有鲻鱼头。
    • 1300年后,一些西欧民选市长将会戴夏普仑长管帽。
    • 1300年后,一些贵族妇女将会戴埃南高顶帽。
  • 添加了新的生活方式事件:
    • 学识:学术生活重心新增一个事件
    • 军事:战略生活重心新增一个事件
    • 军事:权威生活重心新增一个事件链
  • 给儿童添加了“会见同辈”活动。这项活动允许他们与其他孩子建立关系,并可能从各种意想不到的情况中学习成长。探索十几个新的事件,创造更加多样化的童年,让你掌控自己的命运。
  • 一些特质可以触发新的互动和决议:
    • 专断:可以通过花费威望和增加暴政度来解除牵制。
    • 狡诈:如果压力等级超过1,他们可以采取决议加速正在进行的阴谋。
    • 勤勉:可以采取决议来增加首都发展度,但这样会增加角色的压力值。
    • 宽宏大量:可以消耗一个牵制来减轻压力并获得好感度。
    • 急躁:如果压力等级超过1,角色可以采取决议立即加速他们正在进行的计谋。
    • 睚眦必报:可以无需解锁技能就制造对手的牵制。
    • 暴怒:可以与罪犯决斗来执行惩罚。
    • 烦躁:压力处于1级或以上时可以与任意角色决斗。这会增加恐怖值和暴政度。

平衡

  • 现在可以从更远的地方雇佣相同文化的雇佣兵。让冰岛有机会用雇佣兵。
  • 诺曼文化游戏开始时即可从诺斯文化中获得地域革新。
  • 更新了一些特性:
    • 野心勃勃:现在签署无条件和平时压力值会增加。
    • 傲慢:现在签署无条件和平时压力值会增加。
    • 怯懦:谋略属性增加,增加了对敌对密谋的抵抗力。
    • 多变:添加谋略+1并将外交加成改为+2。
    • 慷慨:在举办活动和赠送礼金的时候会失去压力
    • 暴食:如果用对食物下毒的方法来谋杀他们,他们有更高几率存活。
    • 贪婪:月收入加成更低,但月收入会根据其压力水平而增加。
    • 合群:拉拢某人失败会增加压力。
    • 诚实:可以通过揭露一个秘密来减轻压力。
    • 公正:可以通过揭露一个秘密来减轻压力。
    • 懒惰:有更强的减轻压力加成。
    • 害羞:不再会在开始私人计谋时产生压力。但私人计谋力量有巨大惩罚。
  • 整体派系动态节奏已更新:
    • 派系军力阈值更加动态化:它会根据其他派系和他们的状态降低。
    • 在游戏的最初几年里,为了给玩家足够的时间来巩固现有领地,AI封臣不会创建派系。
      • 公爵有1年时间。
      • 国王有5年时间。
      • 皇帝有10年时间。
    • 信仰修正对狂热的角色影响更大,对愤世嫉俗的角色则更弱。
    • 惧怕的角色不再害怕加入一个军力超过其阈值的派系。
    • 畏惧的封臣加入军力超过其阈值的派系的几率很小。
    • 对君主好感度超过80的角色永远不会加入一个派系。
  • 独立派系修正已更新:
    • 角色会加入存在且合适的民粹主义派系,而非新建独立派系。
    • 选举人更不可能加入或创建派系。
    • 治下领土有50%以上位于基础法理头衔之外的封臣更有可能加入或创建派系。
    • 他们的领土越大可能性越高。
    • 伯爵不太可能加入或创建派系。
    • 国王更有可能加入或创建派系。
    • 角色会更愿意加入有相邻同僚参与的派系。
  • 头衔宣称者派系修正已更新
    • 强力封臣在好感为负时创建宣称者派系的可能性更高。
    • 文化不同的封臣加入宣称者派系的可能性更高。
    • 非法理所属的封臣会偏向创建独立派系而非宣称者派系。
    • 角色更有可能加入其法理领主为宣称者的派系。
    • 角色更倾向于涉及头衔高于或属于其法理体系的宣称者派系。
  • 击败或处理斯堪的纳维亚冒险者后会有一段对应国度规模的缓和期,小国时间较长,大国再次成为有效目标的时间更短。
  • 登船耗费现在最多减少90%。
  • 在可以纳妾的信仰中,伯爵不再会因未纳妾而损失威望;公爵仅需一位侍妾而非两位。
  • 烈火与鲜血事件现在会将战利品交给劫掠军而非进入国库,同时略微降低事件触发频率。
  • 建立罗斯的首都现在提供适中的发展度加成,以及一个效果适当的渐进加成,而不至于出现一夜建成世界渴望之城。
  • 所有人游戏开始时的金钱增加50%。
  • 劫掠者在主要河流邻接劫掠时不再遭受损耗。
  • 现在斯堪的纳维亚冒险者全年都有可能发起进攻,而非固定于1月1日开拔。
  • 斯堪的纳维亚冒险者不再会于抵达目的地前饿死在海上。
  • 斯堪的纳维亚冒险者的事件兵士现在可以继承。
  • 雇佣兵和骑士团的花费现在会随领国规模逐渐上涨。
  • 雇佣兵花费现在会随着主头衔等级及时代变化增长。
  • 部落政体现在每个月会提供少量威望。以此缓解新统治者完全没有威望增长的问题。
  • 把劫掠还是贸易事件的和平条约时间从5年延长到10年。
  • 现在仇敌失去头衔时会失去压力。
  • 增大了举行大血祭对压力的影响。
    • 贪婪和害羞的角色不会失去压力,但会因受邀角色获得渐进压力影响,人数越多压力越大。
    • 慷慨和合群的角色不会失去压力,但会因受邀角色获得渐进压力影响,人数越少压力越大。

AI

  • 你的孩子和孙子现在可以由其领主安排婚事,前提是领主是其父母或者祖父母,且允许自由结婚。
  • 新增逻辑允许将围城武器从某个次级单位转交主要次级单位。
  • 在选择目标省份时为当前省份添加一个小加成,以免单位调换位置。
  • 现在不论其封建阶级高低,所有封臣都可以宣战。
  • 宣战借口新增脚本编写的权重,增加在硬编码里面。
  • 把宣战借口的基本权重从头衔等级的二次方改为头衔等级的三次方。
  • 修复了好感度导致很多宣战借口的基本权重被自动超过的问题。
  • 把宣战借口权重乘数移到defines文件里。
  • 堆叠次级单位会更不情愿于拆分攻城武器。
  • 主要次级单位不会把最好的攻城武器拆分。
  • 潜在宣战借口的权重不再对标目标实力。
  • 告诉AI当在尝试协助已与更强的敌军交战的己方单位时,不要避免与强敌交战。
  • 告诉AI就算单个省份容不下整支军队,也不应该停止重新补给。
  • 告诉AI不能因军队拆成多个单位而不取支援两个省份外的劣势战斗。
  • 告诉AI减小堆叠数量能方便补给。
  • 调低了AI在评估宣战借口权重时法理头衔的乘数。
  • 单位在帮助友军时应该忽视海峡惩罚及敌对损耗。
  • 单位在加入正在进行的战斗时应该忽视海峡惩罚。
  • 带有攻城武器的单位现在会尝试帮助没有攻城武器的围城单位。
  • 降低AI为其他角色索取宣称借口的意愿。
  • AI会偏好目标头衔高于当前主头衔等级的宣战借口。
  • 当AI自己对某个头衔有宣称时不再会为别人索取这个头衔。
  • 若结果值得,AI就算要进入敌对损耗领土也会攻击临近敌方单位。
  • AI攻击更强的倾向现在对标目标战争数量。
  • AI攻击较强目标的意愿现在对标进攻方的胆量。
  • 降低了臣服于同宗族领主的伯爵与统治者创建支系的意愿。
  • 封建和氏族制的统治者如果自己领地内还有部落领地需要转换的话,就不会再宣战部落统治者了。
  • 封臣只能对直接相邻的国家发起圣战,以防拜占庭帝国治下较大封臣吃光小国。
  • 封建和氏族制的统治者现在不会对部落统治者发动强制臣服战争。
  • 降低国王和皇帝接受派系要求的倾向,除非已陷入战争。

游戏界面

  • 重做宣战窗口让两方对比更直观,且查看宣战借口对应的目标更简便。
  • 修复了一些史实角色死亡时会改变发型或胡子的问题。
  • 修复了批量处理囚犯偶尔出现的实际处理人数少于应受处理人数的问题。
  • 修复了信仰窗口其他信仰列表中,“只显示某信仰”的复选框会颠倒的问题。
  • 派系成员不再隐藏对其他同派系成员的好感。
  • 修复了送递诗歌有时候成功率为1%但显示成0%的问题。
  • 如果某人在一场战争中为盟友,但在另一场战争中为敌,则现在会将其显示成敌人。部队相遇会导致交战。但这并未解决特定情况下战争冲突的根本问题。
  • 修复了在给新生儿起名时,在框中输入与本地化文本键值一致的内容会变成对应本地化文本。比如德语游戏中输入“He”会被变成“Er”。
  • 补上了为生育而纳妾时缺失的提示框。
  • 所有的前配偶都会显示在角色窗口里,而不仅仅显示因为死亡而导致婚姻中止的前配偶。
  • 修复了当封臣玩家手下的封臣的省份组建反抗其领主的民粹派系时,玩家不会得到正确警告的问题。
  • 修复了一个可能导致反复出现多个互动通知的问题。
  • 修复了特定情况下未获得的革新因无法获取而被隐藏的问题。例如创造诺曼文化时长船会被隐藏。
  • 修正了侧边栏和打开的窗口冲突的问题。
  • 修正了某些情况下角色结婚时,通知中显示的是对方的婚姻安排人(比如其领主)结婚,而非关于婚姻结成的联盟。
  • 修正了威望详情错误地提醒军队建造花费修正同样作用于其威望花费。比如详情中会描述“部落制:-50%”,但军队威望花费并未受影响。

游戏内容

  • 罗得的守护者现在需要拥有一块没有特殊建筑存在的圣地。
  • 游戏结束结算界面中会显示你以现有重要决议成立、改革或统一的大型帝国和王国。
  • 击败大量无地斯堪的纳维亚探险者后将会奖励你新的独特昵称。
  • 宣称领主的头衔现在会使用SCE机制。
  • 持有腐烂的战利品的廷臣会发散出令人厌恶的气味。
  • 若与一个劫掠对象有贸易和约,现在双方都有可能获得可招募的重要移民。
  • 诗人特质现在有对应符文石纪念选项。
  • 庭会之争事件现在会有各类议题,而非每次相同的争论。
  • 斯堪的纳维亚冒险者可以通过花钱或提前提供领地打发走,不再要求玩家抗击到底。
  • 拥有冬将军特质的指挥官现在会在竞技滑雪事件中自动胜出。
  • 在游戏百科中更新了严冬词条。
  • 你现在可以花钱购买你的子孙刻画你的符文石,但他们会把这种教训铭记于心。
  • 家主现在可以要求离婚,或者是要求其家族中在家主领国内的任何成员离婚。
  • 给祆教和犹太教增加了新的虔诚值图标。
  • 给管理:财富的生活方式的一个事件链增加了后续事件,此前这个事件只有空的选项。
  • 奥林匹斯取代斯巴达成为希腊多神教的圣地。
  • 给劫掠者和其潜在目标构建贸易关系增加了些额外的事件。

模组

删减

  • GetDummyMaleGetDummyFemale已经被删去。在脚本中修改他们已经不再可行。它们的功能已经被GetGlobalVariableGetGlobalList所替代。它们会在1.5版本中被完全删除以方便代码和脚本的长期维护。

改动

  • 新增CloseGameView数据功能,从而允许玩家在游戏界面内关闭想要关闭的模组。
  • 新增garrison_reinforcement_factor以设定当前守军规模的增长速度。
  • 给角色新增GetTraitFromGroupGetTraitGroupLevel数据功能。
  • 给特性组新增GetTraitGroup('tag’)Trait.GetGroup数据功能。
  • 给角色新增HasTraitHasTraitFromGroup数据功能。
  • 新增GetGlobalVariableGetGlobalList数据功能。
  • 新增MakeScopeValueMakescopeFlag,和MakeScopeBool以直接从原始类别中创造作用域对象,因为它们并不会自动通过在复杂类型,例如Character.MakeScope 中的MakeScope功能自动创建。
  • 给作用域对象新增ScriptValue数据功能以分析只以该作用域对象为根的脚本数据。
  • 让本地化的数据功能允许其指代的关键词直接同其类别内其他数据功能相关联,类比SelectLocalization
  • 给GuiScope 功能新增AddList 数据功能,其对add_to_list的作用如同AddScope对save_scope_as的效果。
  • 新增数据功能GetTraitsWithFlagGetTraitsWithoutFlag
  • TraitGroup新增数据模型GetTraits
  • 新增定义NMercenary::REALM_SIZE_MULT 和NHolyOrder::REALM_SIZE_MULT
  • 新增效果deactivate_holy_site
  • 新增效果remove_dynasty_perk
  • 新增效果remove_innovation = innovation_key
  • 新增效果set_army_location
  • 新增效果clear_traits and copy_traits
  • 新增效果set_agechange_age
  • 新增列表构建x_culture_global
  • 新增修正army_siege_value_mularmy_damage_multarmy_toughness_multarmy_pursuit_multand army_screen_mult
  • 新增触发器has_innovation_flag
  • 新增触发器perks_in_<lifestyle>,以获得在特定生活方式的技能数量(而不是某角色已获取的技能数量)。
  • Building_garrison被重命名为building_max_garrison
  • 宣战借口现在支持“icon”数据使用不同的图标关键字。
  • 角色互动现在支持“icon”数据使用不同的图标关键字。
  • Create_betrothal功能在出错时会记录错误而不是默默出错。
  • 确保封建法律会固定以数据库顺序存储,以便让覆写可以预测。
  • 修正了mod描述符中replace_path无效的问题。
  • 修正了linux系统热重启的问题。
  • Make_concubine功能现在将支持同性纳妾。
  • 将驻建配置中的筑军数据重命名为max_garrison
  • Spawn_army功能现在若脚本编码如此编写,则只会生成征召兵。
  • assign_council_task效果会在旧内阁成员无法被辞退时报错,而不是沉默不动。

Bugfixes

  • Populist factions can no longer usurp a player's primary title if it is their only title of their tier
  • Fixed spiritual head succession not always properly applying, leading to the spiritual head of faith passing on to temporal rulers. In rare cases that could lead to the player game-overing on death as a result of having inherited the head of faith title
  • Removed occurrence of game over despite having a heir
  • Theocratic rulers will keep their government after converting to a faith with the Theocratic doctrine
  • The “Return Roma” decision now always return it to the Pope
  • Elective heir from Primary title sets only for the title and doesn't affect others. Succession is tied to each title individually, so that changing succession in one doesn't affect other titles.
  • Fix a bug when temple holdings get disabled randomly
  • Fix an issue where on the MS Store/Gamepass version on some systems the launcher would get stuck during startup and never show up
  • Fix random crash/freeze when accessing the military view
  • Fixed a rare case where the game would completely freeze
  • Fixed AI being able to declare war directly on someone else's vassal
  • Fixed an issue that causes unavailable culture innovation can be chosen
  • Fixed hiring a holy order charging you piety in cases where the interface tells you it will be free
  • Fixed the Straight Medium Beard and Straight Pointy Beard missing from the Barbershop
  • Forbid a Scandinavian Adventurer to start a war against someone if they have a Truce with one of their Liege
  • Potentially fixed a way you could get booted into observe mode upon succession rather than getting to play as your heir
  • Scandinavian Adventurers now receive a loan to ensure they don't start out in debt
  • Securing the High Kingdom of the North Sea now requires *you* to hold the relevant kingdom titles, not just any randomer
  • Spouses of rulers will now once again wear clothes based on their spouse's culture
  • The Make Shieldmaiden interaction now correctly checks for Content and Humble traits.
  • Updated the localization to better explain why the "different faith" modifier is applied in the context of a Marriage acceptance
  • Lingering Resentment event is not triggered anymore if the kid do not have a crush
  • Bubonic plague will now only occur after 1346
  • Liege-less children can be recruited
  • Fixed eye skinning issue in males and females models
  • First of the Crusader Kings achievement is now properly tagged as impossible after the first Crusade started
  • Removed the list of Crusade and Jihad participants on the left-hand side of the Declare War window
  • Fixed a typo in the Danevirke description
  • Remove incorrect Courtier Left message when inviting a courtier
  • Fixed a case where your concubine would go to another court due to someone in their close family getting landed
  • Character selection list filters player is not get correctly
  • Concubines can always be dismissed, even when they are out of the diplomatic range
  • Corrected color code used by some icons to match the correct level color code
  • Varangian Adventurer will stop having new lovers appearing randomly
  • Domestic affairs task do not display the loss of crown authority as a potential negative side effect
  • Fixed a typo in the Hunter’s Stable description
  • Fixed a typo in Malcolm’s name in the Fate of England bookmark description
  • Partners will now be less likely to cheat when they have high opinion
  • The rightful liege condition now is verify the whole hierarchy instead just the n+1 title only
  • Added additional checks to make sure all needed scopes exists before generating tooltip about funding holy order
  • Arabic High Nobility will now use the Scholar's Turban and Caliphs will use the Caliphal Robes
  • Corrected a trigger incongruity that stopped Adventure and Pillage dynasty legacies being unlocked by valid non-Norse characters (e.g., Swedes, Estonians, etc.)
  • Corrected your opponent's weapon teleporting into your hand if they concentrated hard enough during a bout
  • Event wars are now counted for the purposes of raising runestones
  • Exiling a character as a nithing now causes them to hate you, not themselves
  • Fix console window being invisible on some startups on Linux and macOS (even in debug mode)
  • Fixed hiring new courtiers in a holy order always belong to that holy's order faith
  • Fixed map flashing on macOS when zooming between the terrain map and the flat map while advanced shader effects were enabled
  • Fixed the End of an Era achievement not unlocking; now unlocks a month before the end date
  • Fixing the issue with "Promote Culture finished" task not displaying what county was converted.
  • Fixed inconsistent month formatting in Simplified Chinese localization
  • Gift-Givers legacy now has a tooltip explaining that it makes you more likely to get trade-raid events
  • If an unlanded character is used in a Conversion event, they will wear the proper religious clothes
  • Landless Scandinavian Adventurers now correctly usurp duchies & may raise conquest runestones
  • The 'Spindly' Trait will not make people's limbs too thin anymore
  • The AI is now rewarded for fighting well/cunningly in duels even if the player isn't involved
  • The control rebate received when winning a Varangian Adventure now has a tooltip
  • Upped the likelihood for the Grandmaster of the Jomsvikings to rip their shirt off and come at you for your impiety & assorted faults
  • Upped the likelihood of the Jomsvikings to harass anyone who isn't an unreformed Norse pagan
  • The Mellow Spirit now applies opinion to parents instead of the liege
  • When revoking a title, the acceptance modifier from the military strength is clamped to +20
  • Stopped adding a weak hook on top of a weak hook if the expiration date is the same.
  • Vassals under the de facto claimed title holder in a war are transferred even if the holder is not the top liege.
  • Children cannot fight the Troll anymore, and thus cannot become Wolf/Moose/Lynx/Bear/Wolverine-Slayers
  • Armies won’t suffer from the starving penalty when the army is not using supplies
  • The Logistician traits now affect supply duration at sea and in friendly territories
  • The winter supply modifiers do not subtract bonus from “in friendly territory” anymore
  • Tutorial texts have been updated to reflect the map update
  • The “I need to know” event will not be spammed anymore when a character has a lot of lovers
  • The countdown timer for council tasks are now properly updated
  • A Life to Remember refers to the right character’s relationship with the deceased.
  • When trying to join a private server, password are not displayed in clear anymore
  • La Cerda cadet branch localisation has been repaired
  • Participants of a civil war can now all be punished without incurring Tyranny
  • In case of white peace, they can only be imprisoned and their titles revoked
  • In case of them being defeated, they can also be banished or executed
  • Avoid a notification spam of Alliance Proposal after reloading a save file
  • The Temple tooltip now tells Rulers with a Theocratic Doctrine that they will be leased to the Realm Priest after the construction.

References

  1. 官方论坛,1.4.0 “Azure” Patch Notes,2021-06-08。