# 增加派系权力 (最大 4)
CZD_increase_faction_power = {
    limit = { check_variable = { $VAR$ < 4 } }
    add_to_variable = { var = $VAR$ value = 1 }
    add_political_power = -75
    # 设置冷却 (半年不能动)
    set_country_flag = { flag = CZD_faction_interaction_cooldown days = 180 }
}

# 减少派系权力 (最小 1)
CZD_decrease_faction_power = {
    limit = { check_variable = { $VAR$ > 1 } }
    add_to_variable = { var = $VAR$ value = -1 }
    add_political_power = -75
    set_country_flag = { flag = CZD_faction_interaction_cooldown days = 180 }
}