empire_shadows/ │ ├── main.py ├── config.py ├── requirements.txt │ ├── game/ │ ├── __init__.py │ ├── game.py │ ├── game_state.py │ │ │ ├── calendar/ │ │ ├── __init__.py │ │ ├── calendar_system.py │ │ └── historical_events.py │ │ │ ├── climate/ │ │ ├── __init__.py │ │ ├── climate_system.py │ │ └── weather_events.py │ │ │ ├── demographics/ │ │ ├── __init__.py │ │ ├── population_system.py │ │ └── migration_system.py │ │ │ ├── technology/ │ │ ├── __init__.py │ │ ├── tech_tree.py │ │ ├── research_system.py │ │ └── tech_effects.py │ │ │ ├── religion/ │ │ ├── __init__.py │ │ ├── religious_system.py │ │ └── religious_events.py │ │ │ ├── espionage/ │ │ ├── __init__.py │ │ ├── espionage_system.py │ │ └── spy_network.py │ │ │ ├── cities/ │ │ ├── __init__.py │ │ ├── city_management.py │ │ ├── construction_system.py │ │ └── city_events.py │ │ │ ├── warfare/ │ │ ├── __init__.py │ │ ├── warfare_system.py │ │ ├── battle_simulator.py │ │ └── military_tactics.py │ │ │ ├── trade/ │ │ ├── __init__.py │ │ ├── trade_system.py │ │ ├── global_market.py │ │ └── trade_routes.py │ │ │ ├── politics/ │ │ ├── __init__.py │ │ ├── domestic_policy.py │ │ ├── political_parties.py │ │ └── election_system.py │ │ │ ├── society/ │ │ ├── __init__.py │ │ ├── social_classes.py │ │ ├── social_issues.py │ │ └── happiness_system.py │ │ │ ├── culture/ │ │ ├── __init__.py │ │ ├── cultural_system.py │ │ ├── language_system.py │ │ └── cultural_influence.py │ │ │ ├── diplomacy/ │ │ ├── __init__.py │ │ ├── diplomacy_system.py │ │ ├── embassies.py │ │ └── international_orgs.py │ │ │ ├── economy/ │ │ ├── __init__.py │ │ ├── macro_economy.py │ │ ├── resource_management.py │ │ └── economic_policies.py │ │ │ ├── military/ │ │ ├── __init__.py │ │ ├── army_management.py │ │ ├── military_production.py │ │ └── military_units.py │ │ │ ├── health/ │ │ ├── __init__.py │ │ ├── healthcare_system.py │ │ └── disease_system.py │ │ │ ├── education/ │ │ ├── __init__.py │ │ ├── education_system.py │ │ └── knowledge_system.py │ │ │ ├── environment/ │ │ ├── __init__.py │ │ ├── environmental_system.py │ │ └── climate_change.py │ │ │ ├── crisis/ │ │ ├── __init__.py │ │ ├── crisis_management.py │ │ └── disaster_response.py │ │ │ ├── succession/ │ │ ├── __init__.py │ │ ├── succession_system.py │ │ └── royal_family.py │ │ │ └── achievements/ │ ├── __init__.py │ ├── achievements_system.py │ └── personal_objectives.py │ ├── data/ │ ├── __init__.py │ ├── countries/ │ │ ├── __init__.py │ │ ├── base_countries.py │ │ ├── historical_countries.py │ │ └── custom_countries.py │ │ │ ├── events/ │ │ ├── __init__.py │ │ ├── event_definitions.py │ │ ├── historical_events.py │ │ └── dynamic_events.py │ │ │ ├── tech/ │ │ ├── __init__.py │ │ ├── tech_definitions.py │ │ └── tech_trees.py │ │ │ ├── religion/ │ │ ├── __init__.py │ │ ├── religions.py │ │ └── religious_groups.py │ │ │ ├── military/ │ │ ├── __init__.py │ │ ├── units.py │ │ ├── weapons.py │ │ └── fortifications.py │ │ │ ├── resources/ │ │ ├── __init__.py │ │ ├── natural_resources.py │ │ └── resource_map.py │ │ │ ├── cities/ │ │ ├── __init__.py │ │ ├── city_templates.py │ │ └── building_types.py │ │ │ └── achievements/ │ ├── __init__.py │ └── achievement_definitions.py │ ├── plugins/ │ ├── __init__.py │ ├── base_plugin.py │ ├── plugin_manager.py │ ├── example_plugin.py │ ├── advanced_diplomacy_plugin.py │ ├── trade_expansion_plugin.py │ └── climate_change_plugin.py │ ├── ui/ │ ├── __init__.py │ ├── console_ui.py │ ├── colors.py │ ├── display.py │ ├── menus.py │ └── animations.py │ └── utils/ ├── __init__.py ├── save_load.py ├── logger.py ├── helpers.py ├── randomizer.py └── data_loader.py