# Token registry for the customizable topbar counter widget. # Each token is a hidden idea referenced as token:topbar_; the widget stores # them in topbar_array and resolves icon/value/tooltip from the token key. # See common/scripted_guis/BI_dynamic_topbar.txt. ideas = { hidden_ideas = { topbar_empty = {} # Standalone counters topbar_casualties = {} topbar_surrender_progress = {} topbar_strength_ratio = {} topbar_naval_strength_ratio = {} topbar_ships = {} topbar_unemployment = {} topbar_workforce_fulfillment = {} topbar_protests = {} topbar_consumer_goods = {} topbar_stability = {} topbar_war_support = {} topbar_political_power_daily = {} topbar_command_power_daily = {} topbar_army_strength = {} topbar_air_strength = {} topbar_navy_strength = {} topbar_conscription = {} topbar_investment_foreign = {} # Government popularity topbar_menu_popularity = {} topbar_pop_coalition = {} topbar_pop_democratic = {} topbar_pop_communism = {} topbar_pop_fascism = {} topbar_pop_neutrality = {} topbar_pop_nationalist = {} # Factories topbar_menu_factories = {} topbar_civilian_factory = {} topbar_military_factory = {} topbar_naval_factory = {} topbar_office = {} # Foreign influencing topbar_menu_influence = {} topbar_influence_cap = {} topbar_influence_modifier = {} topbar_influence_defense = {} # European Union topbar_menu_eu = {} topbar_eu_country_europeanism = {} topbar_eu_global_europeanism = {} topbar_eu_parliament_cooldown = {} topbar_eu_council_cooldown = {} # Energy topbar_menu_energy = {} topbar_energy_balance = {} topbar_energy_percentage = {} topbar_energy_stored = {} # Economy / weekly balance topbar_menu_economy = {} topbar_economy_total_productivity = {} topbar_economy_monthly_productivity_change = {} topbar_economy_treasury = {} topbar_economy_interest = {} topbar_economy_inflation = {} # Resources - category tokens topbar_menu_resource_total = {} topbar_menu_resource_produced = {} topbar_menu_resource_imported = {} topbar_menu_resource_exported = {} topbar_menu_resource_consumed = {} # Resources - net balance topbar_oil_total = {} topbar_aluminium_total = {} topbar_rubber_total = {} topbar_tungsten_total = {} topbar_steel_total = {} topbar_chromium_total = {} topbar_microchips_total = {} topbar_composites_total = {} # Resources - produced topbar_oil_produced = {} topbar_aluminium_produced = {} topbar_rubber_produced = {} topbar_tungsten_produced = {} topbar_steel_produced = {} topbar_chromium_produced = {} topbar_microchips_produced = {} topbar_composites_produced = {} # Resources - imported topbar_oil_imported = {} topbar_aluminium_imported = {} topbar_rubber_imported = {} topbar_tungsten_imported = {} topbar_steel_imported = {} topbar_chromium_imported = {} topbar_microchips_imported = {} topbar_composites_imported = {} # Resources - exported topbar_oil_exported = {} topbar_aluminium_exported = {} topbar_rubber_exported = {} topbar_tungsten_exported = {} topbar_steel_exported = {} topbar_chromium_exported = {} topbar_microchips_exported = {} topbar_composites_exported = {} # Resources - consumed topbar_oil_consumed = {} topbar_aluminium_consumed = {} topbar_rubber_consumed = {} topbar_tungsten_consumed = {} topbar_steel_consumed = {} topbar_chromium_consumed = {} topbar_microchips_consumed = {} topbar_composites_consumed = {} } }