关于摄政继承顺序分数的修改
本帖最后由 FuRoCas 于 2023-8-8 01:31 编辑想让自己喜欢的人摄政排名靠前,可以通过修改common\script_values\00_diarchy_values.txt 文件,我是通过修改特质加分来实现的# Diarchy Succession Candidate Values # Traits.
add = {
desc = diarch_succession_score.category.traits
# ADD SCORE
## Ambitious trait
if = {
limit = { has_trait = ambitious }
add = {
value = minor_diarch_candidate_gain
desc = diarch_succession_score.regency.ambitious
}
}
## Diligent trait
if = {
limit = { has_trait = diligent }
add = {
value = minor_diarch_candidate_gain #(这个数值默认游戏中勤奋是+2,可以把value = 想要的数值)
desc = diarch_succession_score.regency.diligent
}
}
你可以把那些正面特质按格式添加在里面,或者添加l类似大老爹MOD里的特质,填写想要的数值。
honest诚实 patient耐心 calm冷静 just公正chaste忠贞 temperate节制 generous慷慨 brave勇敢 forgiving宽宏大量 compassionate慈悲 等
下面是减分的特质
# REMOVE SCORE
## Lazy trait
if = {
limit = { has_trait = lazy } #懒惰
add = {
value = minor_diarch_candidate_loss
desc = diarch_succession_score.regency.lazy
}
}
## Humble trait
if = {
limit = { has_trait = humble }#谦卑
add = {
value = minor_diarch_candidate_loss
desc = diarch_succession_score.regency.humble
}
}
## Content trait
if = {
limit = { has_trait = content } #安于现状
add = {
value = minor_diarch_candidate_loss
desc = diarch_succession_score.regency.content
}
}
我是这样改的 # Traits.
add = {
desc = diarch_succession_score.category.traits
# ADD SCORE
## Ambitious trait
if = {
limit = { has_trait = ambitious }
add = {
value = minor_diarch_candidate_gain
desc = diarch_succession_score.regency.ambitious
}
}
## Diligent trait
if = {
limit = { has_trait = diligent }
add = {
value = minor_diarch_candidate_gain
desc = diarch_succession_score.regency.diligent
}
}
if = {
limit = { has_trait = boost_stats }
add = {
value = 25
desc = boost_stats
}
}
if = {
limit = { has_trait = 100_stat_man }
add = {
value = 100
desc = 100_stat_man
}
}
if = {
limit = { has_trait = immortal }
add = {
value = 50
desc = immortal
}
}
if = {
limit = { has_trait = nnn_challenger }
add = {
value = 255
desc = nnn_challenger
}
}
# REMOVE SCORE
## Lazy trait
if = {
limit = { has_trait = lazy }
add = {
value = minor_diarch_candidate_loss
desc = diarch_succession_score.regency.lazy
}
}
## Humble trait
if = {
limit = { has_trait = humble }
add = {
value = minor_diarch_candidate_loss
desc = diarch_succession_score.regency.humble
}
}
## Content trait
if = {
limit = { has_trait = content }
add = {
value = minor_diarch_candidate_loss
desc = diarch_succession_score.regency.content
}
}
}
修改前请备份好原文件。
谢谢分享
页:
[1]