安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
It says "At least 10 (currently: 0): The culture is Khmer"
I currently have exactly 10 Khmer provinces as cores, so I think the check is broken.
There's also a typo in the mission tooltip. A space is missing in the sentence "Base Production at least 5" between "least" and "5".
Slightly harder (but more satisfying) would be to expand the scope of the culture conversion slightly. For example, the following code allows any province in Malaya, Indochina and Burma to be converted to Mon if it is owned by Lavo and adjacent to a Mon province.
random_owned_province = {
limit = {
OR = {
region = indo_china_region
region = malaya_region
region = burma_region
}
any_neighbor_province = { culture = mon }
NOT = { culture = mon }
}
change_culture = mon
}
I have, however, noticed a major bug which blocks the Champa-direction mission tree: In the trigger of khm_show_of_strength, you currently have:
tay_nguyen_area = {
type = all
owns_or_non_sovereign_subject_of = ROOT
}
but it should be:
tay_nguyen_area = {
type = all
country_or_non_sovereign_subject_holds = ROOT
}