force disables resistance for scoped state. :
force_disable_resistance = GER # same as occupier = GER
force_disable_resistance = {
clear = no #if yes, will clear previously disabled resistance
occupier = GER #if set, the resistance will be disabled when the occupier is GER
occupied = ENG #if set, the resistance will be disabled if the occupier country is target
}
实战 · 配合 · 坑
实战内容由 AI 生成,并已对照 vanilla 命令词表校验 —— 请当作起点而非权威依据。上方的定义节才是游戏自带文档原文。
实战用法
force_disable_resistance 常用于 mod 中模拟特殊占领协议、傀儡政权稳定化或剧本事件触发后彻底压制某地区抵抗运动的场景,例如当玩家完成特定国策后对指定州强制关闭抵抗生成。通过 occupier / occupied 字段还可以精细控制"仅当特定国家占领时"才禁用抵抗,适合多方势力共存的复杂占领脚本。
# 某国家事件:签署《合作协议》后,德国占领的英国领土停止抵抗
every_owned_state = {
limit = {
is_controlled_by = GER
occupied_country_tag = ENG
}
force_disable_resistance = {
clear = no
occupier = GER
occupied = ENG
}
}