頭銜模組製作

本頁面所適用的版本可能已經過時,最後更新於1.1

頭銜在/common/landed_titles/文件夾中定義。

基礎名譽頭銜[編輯 | 編輯原始碼]

創建一個簡單的名譽頭銜毫無困難。頭銜前綴定義了其等級。

前綴 等級
b_ 男爵領(不能是名譽頭銜)
c_ 伯爵領
d_ 公國
k_ 王國
e_ 帝國

決定好頭銜的名稱和前綴。之後,你必須選擇一種以RGB定義的顏色。頭銜可以有兩種顏色修正color和color2(可選)。color2修正改變邊界的次要顏色:

k_titular_kingdom_name = {
	color = { 100 255 200 }
}

這是創建頭銜的最低要求,現在可以直接通過控制台被授予。然而,它將缺少本地化,也就是在遊戲中它將顯示為「k_titular_kingdom_name」。

本地化[編輯 | 編輯原始碼]

一個頭銜要求定義兩個本地化鍵值。

  • <title_name>
  • <title_name>_adj

此外,一個頭銜可以擁有獨特的冠詞。例如拜占庭是 'the' Byzantine Empire。

  • <title_name>_article

原版頭銜本地化位於/localization/<language>/titles_l_<language>.yml

盾徽[編輯 | 編輯原始碼]

屬性列表[編輯 | 編輯原始碼]

下表是可以用於頭銜的屬性。

屬性 類型 描述 舉例
color rgb 頭銜在地圖上顯示時的顏色 color = { 100 255 200 }
color2 rgb 改變你的邊界的次要顏色 color2 = { 150 240 200 }
definite_form boolean 如果設置為yes,頭銜的前綴(例如「Kingdom of」或「Duchy of」)將不會使用。這通常用於頭銜名稱已經包含了頭銜類型的情況,以避免出現如「Empire of the Byzantine Empire」的情況。 definite_form = yes
ruler_uses_title_name boolean ruler_uses_title_name = no
landless boolean 如果設置為yes,頭銜在被創建後將總是存在。這將允許如信仰領袖等頭銜沒有領地也可以存在。 landless = yes
capital title 頭銜的首選[ 法理?]首都 capital = c_roma
ai_primary_priority clause 定義AI有多大可能將這個頭銜設置為主頭銜。條件可以用於修改主要分數。
ai_primary_priority = {
			if = {
				limit = {
					culture = culture:greek
				}
				add = @correct_culture_primary_score
			}
			if = {
				limit = {
					NOT = { culture = culture:greek }
					culture_group = culture_group:byzantine_group
				}
				add = @better_than_the_alternatives_score
			}
		}
destroy_if_invalid_heir 如果繼承人(剛剛繼承了頭銜?)是無效的,則會摧毀頭銜。(例如,為了防止一個錯誤宗教的角色持有宗教領袖頭銜) destroy_if_invalid_heir = yes
no_automatic_claims boolean no_automatic_claims = yes
always_follows_primary_heir boolean 頭銜總是將分配給持有者的第一繼承人 always_follows_primary_heir = yes
de_jure_drift_disabled boolean 阻止頭銜在法理轉移給一個王國或帝國 de_jure_drift_disabled = yes
male_names/female_names list<string> 頭銜持有者可以採用的名稱列表。例如,教宗在被選上後會獲得一個教宗名。 male_names = { Alexander Anastasius Benedictus Caelestinus Callistus Clemens Eugenius Leo Gregorius Hadrianus Honorius Innocentius Ioannes Lucius Marinus Martinus Nicolaus Sergius Silvester Stephanus Urbanus Victor }
cultural_names clause 如果頭銜被屬於文化X的某人持有,頭銜名稱將使用本地化鍵值Y,形容詞使用Y_adj cultural_names = {X = Y}
province ID 男爵領使用的省份ID province = 3699

公國首都建築[編輯 | 編輯原始碼]

To locate the duchy capital building in the defined de jure duchy capital, list the capital as the first county defined under the duchy title. The special duchy building is placed in the first listed barony of the first listed county, even if a different county is defined as the capital.