on_actions = {
    # Fire artist event every ~38 years
    on_startup = {
        effect = {
            every_country = {
                country_event = { id = random.7 days = 13800 random_days = 2000 }
            }
        }
    }
    
    # Fire flooding event periodically
    on_yearly_pulse = {
        random_events = {
            100 = random.23  # ~1% chance per year
        }
    }
    
    # Fire school funding crisis when stability drops
    on_stability_loss = {
        effect = {
            if = {
                limit = {
                    has_stability < 0.7
                    has_idea = open_schools
                }
                country_event = { id = random.16 days = 30 random_days = 60 }
            }
        }
    }
}