# Can implement new reform
can_implement_reform = {
    check_variable = { current_reform_id = 0 }
    NOT = { has_country_flag = Elections_suspended }
}

# Can implement through parliament
can_implement_through_parliament = {
    can_implement_reform = yes
    can_call_idea_votes = yes
}

# Can implement through executive order (expensive)
can_implement_through_executive = {
    can_implement_reform = yes
    NOT = { has_country_flag = parl_executive_order_flag }
    has_political_power > 449
}

# Can implement through cheaper executive order
can_implement_through_cheap_executive = {
    can_implement_reform = yes
    NOT = { has_country_flag = parl_executive_order_flag }
    has_political_power > 99
}