├── .gitattributes ├── .gitignore ├── Protobufs ├── base_gcmessages.proto ├── c_peer2peer_netmessages.proto ├── clientmessages.proto ├── connectionless_netmessages.proto ├── dac_gamemessages.proto ├── dac_gcmessages_client.proto ├── dac_gcmessages_common.proto ├── dac_gcmessages_server.proto ├── demo.proto ├── econ_gcmessages.proto ├── econ_shared_enums.proto ├── enums_clientserver.proto ├── gameevents.proto ├── gametoolevents.proto ├── gcsdk_gcmessages.proto ├── gcsystemmsgs.proto ├── netmessages.proto ├── network_connection.proto ├── networkbasetypes.proto ├── networksystem_protomessages.proto ├── steamdatagram_messages_auth.proto ├── steamdatagram_messages_sdr.proto ├── steammessages.proto ├── steammessages_base.proto ├── steammessages_clientserver_login.proto ├── steammessages_cloud.steamworkssdk.proto ├── steammessages_helprequest.steamworkssdk.proto ├── steammessages_oauth.steamworkssdk.proto ├── steammessages_player.steamworkssdk.proto ├── steammessages_publishedfile.steamworkssdk.proto ├── steammessages_unified_base.steamworkssdk.proto ├── steamnetworkingsockets_messages.proto ├── steamnetworkingsockets_messages_certs.proto ├── steamnetworkingsockets_messages_udp.proto ├── te.proto ├── uifontfile_format.proto ├── usermessages.proto └── valveextensions.proto ├── README.md ├── game ├── bin │ ├── dxsupport.cfg │ ├── linuxsteamrt64 │ │ ├── libanimationsystem.txt │ │ ├── libanimationsystem_strings.txt │ │ ├── libengine2.txt │ │ ├── libengine2_strings.txt │ │ ├── libfilesystem_stdio.txt │ │ ├── libfilesystem_stdio_strings.txt │ │ ├── libinputsystem.txt │ │ ├── libinputsystem_strings.txt │ │ ├── liblocalize.txt │ │ ├── liblocalize_strings.txt │ │ ├── libmaterialsystem2.txt │ │ ├── libmaterialsystem2_strings.txt │ │ ├── libmeshsystem.txt │ │ ├── libmeshsystem_strings.txt │ │ ├── libnetworksystem.txt │ │ ├── libnetworksystem_strings.txt │ │ ├── libopenvr_api.txt │ │ ├── libopenvr_api_strings.txt │ │ ├── libpango-1.0.txt │ │ ├── libpango-1.0_strings.txt │ │ ├── libpangoft2-1.0.txt │ │ ├── libpangoft2-1.0_strings.txt │ │ ├── libpanorama_nov8.txt │ │ ├── libpanorama_nov8_strings.txt │ │ ├── libpanorama_text_pango.txt │ │ ├── libpanorama_text_pango_strings.txt │ │ ├── libparticles.txt │ │ ├── libparticles_strings.txt │ │ ├── librenderingpipelines.txt │ │ ├── librenderingpipelines_strings.txt │ │ ├── librendersystemempty.txt │ │ ├── librendersystemempty_strings.txt │ │ ├── librendersystemgl.txt │ │ ├── librendersystemgl_strings.txt │ │ ├── librendersystemvulkan.txt │ │ ├── librendersystemvulkan_strings.txt │ │ ├── libresourcesystem.txt │ │ ├── libresourcesystem_strings.txt │ │ ├── libscenefilecache.txt │ │ ├── libscenefilecache_strings.txt │ │ ├── libscenesystem.txt │ │ ├── libscenesystem_strings.txt │ │ ├── libschemasystem.txt │ │ ├── libschemasystem_strings.txt │ │ ├── libsoundsystem.txt │ │ ├── libsoundsystem_strings.txt │ │ ├── libsteam_api.txt │ │ ├── libsteam_api_strings.txt │ │ ├── libsteamnetworkingsockets.txt │ │ ├── libsteamnetworkingsockets_strings.txt │ │ ├── libtier0.txt │ │ ├── libtier0_strings.txt │ │ ├── libvconcomm.txt │ │ ├── libvconcomm_strings.txt │ │ ├── libvgui2.txt │ │ ├── libvgui2_strings.txt │ │ ├── libvguirendersurface.txt │ │ ├── libvguirendersurface_strings.txt │ │ ├── libvideo.txt │ │ ├── libvideo_strings.txt │ │ ├── libvphysics2.txt │ │ ├── libvphysics2_strings.txt │ │ ├── libvr.txt │ │ ├── libvr_strings.txt │ │ ├── libvscript.txt │ │ ├── libvscript_strings.txt │ │ ├── libvstdlib.txt │ │ ├── libvstdlib_strings.txt │ │ ├── libworldrenderer.txt │ │ └── libworldrenderer_strings.txt │ ├── sdkassettypes.txt │ └── sdkenginetools.txt ├── core │ ├── pak01_dir.txt │ ├── pak01_dir │ │ ├── panorama │ │ │ ├── layout │ │ │ │ ├── base_world_panel.xml │ │ │ │ ├── console.xml │ │ │ │ ├── context_menus │ │ │ │ │ └── context_menu_base.xml │ │ │ │ ├── debugger.xml │ │ │ │ ├── debugindividualstyle.xml │ │ │ │ ├── debuginheritedstylesheader.xml │ │ │ │ ├── debuglayout.xml │ │ │ │ ├── debugpanel.xml │ │ │ │ ├── debugstyleanimation.xml │ │ │ │ ├── debugstyleblock.xml │ │ │ │ ├── number_entry.xml │ │ │ │ ├── popups │ │ │ │ │ ├── popup_generic.xml │ │ │ │ │ ├── popup_generic_no_dim.xml │ │ │ │ │ ├── popup_generic_text_entry.xml │ │ │ │ │ └── popup_manager.xml │ │ │ │ ├── tooltip.xml │ │ │ │ └── tooltips │ │ │ │ │ ├── tooltip_base.xml │ │ │ │ │ ├── tooltip_text.xml │ │ │ │ │ ├── tooltip_title_image_text.xml │ │ │ │ │ └── tooltip_title_text.xml │ │ │ ├── panorama_config.txt │ │ │ └── styles │ │ │ │ ├── base_world_panel.css │ │ │ │ ├── context_menus │ │ │ │ └── context_menu_base.css │ │ │ │ ├── debugger.css │ │ │ │ ├── gamestyles.css │ │ │ │ ├── panorama_base.css │ │ │ │ ├── popups │ │ │ │ ├── popup_generic.css │ │ │ │ ├── popup_generic_text_entry.css │ │ │ │ ├── popup_manager.css │ │ │ │ └── popups_shared.css │ │ │ │ └── tooltips │ │ │ │ ├── tooltip_base.css │ │ │ │ ├── tooltip_text.css │ │ │ │ ├── tooltip_title_image_text.css │ │ │ │ └── tooltip_title_text.css │ │ ├── resource │ │ │ ├── bugreporter.res │ │ │ ├── clientscheme.res │ │ │ ├── colorpicker.res │ │ │ ├── colorpickerframe.res │ │ │ ├── core.gameevents │ │ │ ├── gamemenu.res │ │ │ └── sourcescheme.res │ │ └── soundevents │ │ │ └── soundevents_core.vsndevts │ ├── panorama │ │ └── localization │ │ │ ├── panorama_brazilian.txt │ │ │ ├── panorama_bulgarian.txt │ │ │ ├── panorama_czech.txt │ │ │ ├── panorama_danish.txt │ │ │ ├── panorama_dutch.txt │ │ │ ├── panorama_english.txt │ │ │ ├── panorama_finnish.txt │ │ │ ├── panorama_french.txt │ │ │ ├── panorama_german.txt │ │ │ ├── panorama_greek.txt │ │ │ ├── panorama_hungarian.txt │ │ │ ├── panorama_italian.txt │ │ │ ├── panorama_japanese.txt │ │ │ ├── panorama_korean.txt │ │ │ ├── panorama_koreana.txt │ │ │ ├── panorama_latam.txt │ │ │ ├── panorama_norwegian.txt │ │ │ ├── panorama_polish.txt │ │ │ ├── panorama_portuguese.txt │ │ │ ├── panorama_romanian.txt │ │ │ ├── panorama_russian.txt │ │ │ ├── panorama_schinese.txt │ │ │ ├── panorama_spanish.txt │ │ │ ├── panorama_swedish.txt │ │ │ ├── panorama_tchinese.txt │ │ │ ├── panorama_thai.txt │ │ │ ├── panorama_turkish.txt │ │ │ ├── panorama_ukrainian.txt │ │ │ └── panorama_vietnamese.txt │ ├── resource │ │ ├── dmecontrols_english.txt │ │ ├── keybindings_english.txt │ │ ├── toolhelp_animgraph_editor_english.txt │ │ ├── toolhelp_base_fgd_english.txt │ │ ├── toolhelp_hammer_commands_english.txt │ │ ├── toolhelp_hammer_embedded_properties_english.txt │ │ ├── toolhelp_helpsystem_english.txt │ │ ├── toolhelp_model_editor_english.txt │ │ ├── toolhelp_modeldoc_editor_english.txt │ │ ├── toolhelp_particles_english.txt │ │ ├── toolhelp_sndtool_english.txt │ │ ├── toolhelp_surfacepropertyeditor_english.txt │ │ ├── toolhelp_vmixtool_english.txt │ │ ├── valve_brazilian.txt │ │ ├── valve_bulgarian.txt │ │ ├── valve_czech.txt │ │ ├── valve_danish.txt │ │ ├── valve_dutch.txt │ │ ├── valve_english.txt │ │ ├── valve_finnish.txt │ │ ├── valve_french.txt │ │ ├── valve_german.txt │ │ ├── valve_greek.txt │ │ ├── valve_hungarian.txt │ │ ├── valve_italian.txt │ │ ├── valve_japanese.txt │ │ ├── valve_korean.txt │ │ ├── valve_koreana.txt │ │ ├── valve_latam.txt │ │ ├── valve_norwegian.txt │ │ ├── valve_polish.txt │ │ ├── valve_portuguese.txt │ │ ├── valve_romanian.txt │ │ ├── valve_russian.txt │ │ ├── valve_schinese.txt │ │ ├── valve_spanish.txt │ │ ├── valve_swedish.txt │ │ ├── valve_tchinese.txt │ │ ├── valve_thai.txt │ │ ├── valve_turkish.txt │ │ ├── valve_ukrainian.txt │ │ ├── valve_vietnamese.txt │ │ ├── vgui_brazilian.txt │ │ ├── vgui_bulgarian.txt │ │ ├── vgui_czech.txt │ │ ├── vgui_danish.txt │ │ ├── vgui_dutch.txt │ │ ├── vgui_english.txt │ │ ├── vgui_finnish.txt │ │ ├── vgui_french.txt │ │ ├── vgui_german.txt │ │ ├── vgui_greek.txt │ │ ├── vgui_hungarian.txt │ │ ├── vgui_italian.txt │ │ ├── vgui_japanese.txt │ │ ├── vgui_korean.txt │ │ ├── vgui_koreana.txt │ │ ├── vgui_norwegian.txt │ │ ├── vgui_polish.txt │ │ ├── vgui_portuguese.txt │ │ ├── vgui_romanian.txt │ │ ├── vgui_russian.txt │ │ ├── vgui_schinese.txt │ │ ├── vgui_spanish.txt │ │ ├── vgui_swedish.txt │ │ ├── vgui_tchinese.txt │ │ ├── vgui_thai.txt │ │ ├── vgui_turkish.txt │ │ └── vgui_ukrainian.txt │ ├── shaders_vulkan_dir.txt │ └── tools │ │ └── keybindings │ │ ├── actionlisteditor_key_bindings.txt │ │ ├── animgraph_editor_key_bindings.txt │ │ ├── assetbrowser_key_bindings.txt │ │ ├── faceposer_key_bindings.txt │ │ ├── global_key_bindings.txt │ │ ├── grapheditor_key_bindings.txt │ │ ├── hammer_key_bindings.txt │ │ ├── helpsystem_key_bindings.txt │ │ ├── modeldoc_editor_key_bindings.txt │ │ ├── modeleditor_key_bindings.txt │ │ ├── pet_key_bindings.txt │ │ ├── physics_debugger_keybindings.txt │ │ ├── plant_tool_key_bindings.txt │ │ ├── postprocess_editor_key_bindings.txt │ │ ├── propertyeditor_key_bindings.txt │ │ ├── sample_tool_key_bindings.txt │ │ ├── shadergraph_editor_key_bindings.txt │ │ ├── shared_tool_key_bindings.txt │ │ ├── sndstack_tool_key_bindings.txt │ │ ├── sndtool_key_bindings.txt │ │ ├── spawndebugger_key_bindings.txt │ │ ├── subrecteditor_key_bindings.txt │ │ ├── surfacepropertyeditor_key_bindings.txt │ │ ├── vmixtool_key_bindings.txt │ │ ├── vohelper_tool_key_bindings.txt │ │ ├── workshop_admin_key_bindings.txt │ │ └── workshop_manager_key_bindings.txt ├── dac │ ├── bin │ │ └── linuxsteamrt64 │ │ │ ├── libclient.txt │ │ │ ├── libclient_strings.txt │ │ │ ├── libhost.txt │ │ │ ├── libhost_strings.txt │ │ │ ├── libserver.txt │ │ │ └── libserver_strings.txt │ ├── gameinfo.gi │ ├── gameinfo_branchspecific.gi │ ├── maps │ │ ├── dac.txt │ │ ├── dac_alleyway.txt │ │ ├── dac_bc.txt │ │ ├── dac_bc_underlord.txt │ │ ├── dac_dev.txt │ │ ├── dac_farm.txt │ │ ├── dac_forest.txt │ │ ├── dac_test.txt │ │ ├── dac_townsquare.txt │ │ ├── particles │ │ │ ├── hud │ │ │ │ ├── items_available.txt │ │ │ │ ├── items_unassigned.txt │ │ │ │ └── profile_streak.txt │ │ │ └── leaderboard │ │ │ │ ├── streak.txt │ │ │ │ ├── streak_10.txt │ │ │ │ ├── streak_10_bkg.txt │ │ │ │ ├── streak_5.txt │ │ │ │ ├── streak_5_bkg.txt │ │ │ │ └── streak_bkg.txt │ │ ├── prefabs │ │ │ └── banner_positions.txt │ │ ├── scenes │ │ │ ├── banner.txt │ │ │ ├── bench.txt │ │ │ └── shop.txt │ │ ├── sfm │ │ │ └── sfm_blackstage.txt │ │ └── ui │ │ │ └── citycrawl │ │ │ ├── bp1_city_crawl_map.txt │ │ │ ├── markw_temp02_bp1_city_crawl_map.txt │ │ │ └── markw_temp_bp1_city_crawl_map.txt │ ├── pak01_dir.txt │ ├── pak01_dir │ │ ├── cfg │ │ │ ├── gamestate_integration │ │ │ │ └── gamestate_integration_sample.cfg │ │ │ ├── mobile_gl_gpu_level.txt │ │ │ ├── mobile_gpu_level.txt │ │ │ ├── mobile_video_defaults_0.txt │ │ │ ├── mobile_video_defaults_1.txt │ │ │ ├── mobile_video_defaults_2.txt │ │ │ ├── mobile_video_defaults_3.txt │ │ │ ├── mobile_vulkan_gpu_level.txt │ │ │ ├── moddefaults.txt │ │ │ ├── perftest.cfg │ │ │ ├── video_defaults_0.txt │ │ │ ├── video_defaults_1.txt │ │ │ ├── video_defaults_2.txt │ │ │ ├── video_defaults_3.txt │ │ │ └── video_version.txt │ │ ├── expressions │ │ │ └── underlords │ │ │ │ ├── anessix │ │ │ │ └── phonemes.txt │ │ │ │ ├── hobgen │ │ │ │ └── phonemes.txt │ │ │ │ ├── jull │ │ │ │ └── phonemes.txt │ │ │ │ └── phonemes.txt │ │ ├── panorama │ │ │ ├── layout │ │ │ │ ├── banners │ │ │ │ │ └── banner.xml │ │ │ │ ├── carousel_nav.xml │ │ │ │ ├── contextmenu.xml │ │ │ │ ├── controls │ │ │ │ │ └── dac_play_button.xml │ │ │ │ ├── dac_dashboard_root.xml │ │ │ │ ├── dac_db_control_battlepass.xml │ │ │ │ ├── dac_db_control_battlepass_rewardline.xml │ │ │ │ ├── dac_db_control_challengelist.xml │ │ │ │ ├── dac_db_control_citycrawl.xml │ │ │ │ ├── dac_db_control_citycrawl_challenges.xml │ │ │ │ ├── dac_db_control_intro_logo.xml │ │ │ │ ├── dac_db_control_rank.xml │ │ │ │ ├── dac_db_page_achievements.xml │ │ │ │ ├── dac_db_page_credits.xml │ │ │ │ ├── dac_db_page_heropedia.xml │ │ │ │ ├── dac_db_page_heropedia_creeps.xml │ │ │ │ ├── dac_db_page_heropedia_heroes.xml │ │ │ │ ├── dac_db_page_heropedia_heroes_byname.xml │ │ │ │ ├── dac_db_page_heropedia_heroes_bytier.xml │ │ │ │ ├── dac_db_page_heropedia_how_to_play.xml │ │ │ │ ├── dac_db_page_heropedia_items.xml │ │ │ │ ├── dac_db_page_heropedia_items_byname.xml │ │ │ │ ├── dac_db_page_heropedia_items_bytier.xml │ │ │ │ ├── dac_db_page_heropedia_items_bytype.xml │ │ │ │ ├── dac_db_page_heropedia_rules.xml │ │ │ │ ├── dac_db_page_heropedia_season.xml │ │ │ │ ├── dac_db_page_heropedia_synergies.xml │ │ │ │ ├── dac_db_page_heropedia_underlords.xml │ │ │ │ ├── dac_db_page_home.xml │ │ │ │ ├── dac_db_page_loadout.xml │ │ │ │ ├── dac_db_page_loadout_protopass.xml │ │ │ │ ├── dac_db_page_map_prop_editor.xml │ │ │ │ ├── dac_db_page_patchnotes.xml │ │ │ │ ├── dac_db_page_play.xml │ │ │ │ ├── dac_db_page_postgame.xml │ │ │ │ ├── dac_db_page_profile.xml │ │ │ │ ├── dac_db_page_rewards_battlepass.xml │ │ │ │ ├── dac_db_page_rewards_protopass.xml │ │ │ │ ├── dac_db_page_select_underlord.xml │ │ │ │ ├── dac_db_page_settings.xml │ │ │ │ ├── dac_db_page_underlords.xml │ │ │ │ ├── dac_db_page_zoo.xml │ │ │ │ ├── dac_gameui_root.xml │ │ │ │ ├── dac_ui_achievement.xml │ │ │ │ ├── dac_ui_achievement_panel.xml │ │ │ │ ├── dac_ui_banner_paintin.xml │ │ │ │ ├── dac_ui_battlepass_level.xml │ │ │ │ ├── dac_ui_challenge_map.xml │ │ │ │ ├── dac_ui_challenge_world_map.xml │ │ │ │ ├── dac_ui_challengemap_challenge.xml │ │ │ │ ├── dac_ui_challengemap_claim.xml │ │ │ │ ├── dac_ui_chat_wheel.xml │ │ │ │ ├── dac_ui_citycrawl_challenge.xml │ │ │ │ ├── dac_ui_context_menu_chat_line.xml │ │ │ │ ├── dac_ui_context_menu_gems.xml │ │ │ │ ├── dac_ui_context_menu_party.xml │ │ │ │ ├── dac_ui_context_menu_player.xml │ │ │ │ ├── dac_ui_daily_challenge.xml │ │ │ │ ├── dac_ui_dashboard_talent.xml │ │ │ │ ├── dac_ui_dps_chart.xml │ │ │ │ ├── dac_ui_equip_control.xml │ │ │ │ ├── dac_ui_friend.xml │ │ │ │ ├── dac_ui_friend_menu.xml │ │ │ │ ├── dac_ui_friend_picker.xml │ │ │ │ ├── dac_ui_honeycomb_container.xml │ │ │ │ ├── dac_ui_hud.xml │ │ │ │ ├── dac_ui_hud_item_display.xml │ │ │ │ ├── dac_ui_hud_player_icons.xml │ │ │ │ ├── dac_ui_hud_top_bar.xml │ │ │ │ ├── dac_ui_hud_tutorial.xml │ │ │ │ ├── dac_ui_inventory.xml │ │ │ │ ├── dac_ui_inventory_item.xml │ │ │ │ ├── dac_ui_item_select.xml │ │ │ │ ├── dac_ui_leaderboard.xml │ │ │ │ ├── dac_ui_leaderboard_duos.xml │ │ │ │ ├── dac_ui_leaderboard_entry.xml │ │ │ │ ├── dac_ui_main.xml │ │ │ │ ├── dac_ui_map_prop_list.xml │ │ │ │ ├── dac_ui_match_intro.xml │ │ │ │ ├── dac_ui_match_over.xml │ │ │ │ ├── dac_ui_miniprofile.xml │ │ │ │ ├── dac_ui_nonogram_puzzle.xml │ │ │ │ ├── dac_ui_notification_container.xml │ │ │ │ ├── dac_ui_notifications.xml │ │ │ │ ├── dac_ui_panorama_tutorial.xml │ │ │ │ ├── dac_ui_party.xml │ │ │ │ ├── dac_ui_party_invite.xml │ │ │ │ ├── dac_ui_party_member.xml │ │ │ │ ├── dac_ui_player_avatar.xml │ │ │ │ ├── dac_ui_post_game_stats.xml │ │ │ │ ├── dac_ui_poster_battlepass_level.xml │ │ │ │ ├── dac_ui_poster_prestige_level.xml │ │ │ │ ├── dac_ui_postgame_scoreboard.xml │ │ │ │ ├── dac_ui_postgame_scoreboard_entry.xml │ │ │ │ ├── dac_ui_postgame_stats_overview.xml │ │ │ │ ├── dac_ui_puzzle_histogram.xml │ │ │ │ ├── dac_ui_puzzle_intro.xml │ │ │ │ ├── dac_ui_puzzle_rules.xml │ │ │ │ ├── dac_ui_puzzle_shop.xml │ │ │ │ ├── dac_ui_puzzle_status.xml │ │ │ │ ├── dac_ui_quick_equip_button.xml │ │ │ │ ├── dac_ui_randomized_children.xml │ │ │ │ ├── dac_ui_rank_icon.xml │ │ │ │ ├── dac_ui_rewards_about.xml │ │ │ │ ├── dac_ui_round_over.xml │ │ │ │ ├── dac_ui_round_start.xml │ │ │ │ ├── dac_ui_scoreboard.xml │ │ │ │ ├── dac_ui_scoreboard_entry.xml │ │ │ │ ├── dac_ui_sell_unit_bar.xml │ │ │ │ ├── dac_ui_send_unit_bar.xml │ │ │ │ ├── dac_ui_settings_panel.xml │ │ │ │ ├── dac_ui_shop.xml │ │ │ │ ├── dac_ui_synergy_capsule.xml │ │ │ │ ├── dac_ui_synergy_icon.xml │ │ │ │ ├── dac_ui_synergy_icon_no_bars.xml │ │ │ │ ├── dac_ui_talent_browser.xml │ │ │ │ ├── dac_ui_talent_card.xml │ │ │ │ ├── dac_ui_talent_selector.xml │ │ │ │ ├── dac_ui_turbo_shop.xml │ │ │ │ ├── dac_ui_underlord_config.xml │ │ │ │ ├── dac_ui_underlord_config_levelprogress.xml │ │ │ │ ├── dac_ui_underlord_config_talent_tree.xml │ │ │ │ ├── dac_ui_underlord_picker.xml │ │ │ │ ├── dac_ui_underlord_status.xml │ │ │ │ ├── dac_ui_unit_modifiers.xml │ │ │ │ ├── dac_ui_unit_status.xml │ │ │ │ ├── dac_ui_vs_screen.xml │ │ │ │ ├── dac_ui_weekly_challenge.xml │ │ │ │ ├── dac_ui_zoo.xml │ │ │ │ ├── dac_wanted_poster_title.xml │ │ │ │ ├── dac_world_debug.xml │ │ │ │ ├── dac_world_main.xml │ │ │ │ ├── movie.xml │ │ │ │ ├── popups │ │ │ │ │ ├── dac_ui_popup_battlepass_s1_intro.xml │ │ │ │ │ ├── dac_ui_popup_citycrawl_intro.xml │ │ │ │ │ ├── dac_ui_popup_citycrawl_prestige.xml │ │ │ │ │ ├── dac_ui_popup_citycrawl_zone_reward.xml │ │ │ │ │ ├── dac_ui_popup_map_challenge.xml │ │ │ │ │ ├── dac_ui_popup_weekly_challenge.xml │ │ │ │ │ ├── dac_ui_popup_weekly_challenge_intro.xml │ │ │ │ │ ├── popup_ability.xml │ │ │ │ │ ├── popup_about_duos.xml │ │ │ │ │ ├── popup_battlepass_progress.xml │ │ │ │ │ ├── popup_battlepass_purchase.xml │ │ │ │ │ ├── popup_citycrawl_challenges.xml │ │ │ │ │ ├── popup_claim_item_failure.xml │ │ │ │ │ ├── popup_claim_item_success.xml │ │ │ │ │ ├── popup_equip_slot.xml │ │ │ │ │ ├── popup_friend_code.xml │ │ │ │ │ ├── popup_friend_code_addpopup.xml │ │ │ │ │ ├── popup_gamemode_intro.xml │ │ │ │ │ ├── popup_gamemode_picker.xml │ │ │ │ │ ├── popup_gems.xml │ │ │ │ │ ├── popup_generic.xml │ │ │ │ │ ├── popup_hero.xml │ │ │ │ │ ├── popup_hero_odds.xml │ │ │ │ │ ├── popup_hero_rotation_intro.xml │ │ │ │ │ ├── popup_heropedia.xml │ │ │ │ │ ├── popup_heropedia_synergy.xml │ │ │ │ │ ├── popup_invitation_accepted.xml │ │ │ │ │ ├── popup_item.xml │ │ │ │ │ ├── popup_join_party.xml │ │ │ │ │ ├── popup_legendary_desc.xml │ │ │ │ │ ├── popup_looking_for_match.xml │ │ │ │ │ ├── popup_lootlistodds.xml │ │ │ │ │ ├── popup_manager.xml │ │ │ │ │ ├── popup_movie.xml │ │ │ │ │ ├── popup_party_invite_friend.xml │ │ │ │ │ ├── popup_party_select_team.xml │ │ │ │ │ ├── popup_play_page_season_info.xml │ │ │ │ │ ├── popup_player_state.xml │ │ │ │ │ ├── popup_postgame_reward.xml │ │ │ │ │ ├── popup_pre_match_details.xml │ │ │ │ │ ├── popup_puzzle_victory.xml │ │ │ │ │ ├── popup_rank_tier_desc.xml │ │ │ │ │ ├── popup_rankup.xml │ │ │ │ │ ├── popup_rename_team.xml │ │ │ │ │ ├── popup_reward.xml │ │ │ │ │ ├── popup_reward_info.xml │ │ │ │ │ ├── popup_rewards_about.xml │ │ │ │ │ ├── popup_season_0_intro.xml │ │ │ │ │ ├── popup_season_1_intro.xml │ │ │ │ │ ├── popup_season_1_thankyou.xml │ │ │ │ │ ├── popup_select_match_type.xml │ │ │ │ │ ├── popup_settings.xml │ │ │ │ │ ├── popup_steam_login.xml │ │ │ │ │ ├── popup_support_grant.xml │ │ │ │ │ ├── popup_synergy.xml │ │ │ │ │ ├── popup_talent_info.xml │ │ │ │ │ ├── popup_tutorial_intro.xml │ │ │ │ │ ├── popup_tutorial_message.xml │ │ │ │ │ ├── popup_underlord_ability.xml │ │ │ │ │ ├── settings_enum.xml │ │ │ │ │ └── settings_slider.xml │ │ │ │ ├── settings_keybinder.xml │ │ │ │ └── tooltips │ │ │ │ │ ├── tooltip_gold_amount.xml │ │ │ │ │ ├── tooltip_hero.xml │ │ │ │ │ ├── tooltip_hero_ability.xml │ │ │ │ │ ├── tooltip_item.xml │ │ │ │ │ ├── tooltip_legendary.xml │ │ │ │ │ ├── tooltip_map_challenge.xml │ │ │ │ │ ├── tooltip_map_claim.xml │ │ │ │ │ ├── tooltip_meter_details.xml │ │ │ │ │ ├── tooltip_modifier.xml │ │ │ │ │ ├── tooltip_player.xml │ │ │ │ │ ├── tooltip_status.xml │ │ │ │ │ ├── tooltip_synergy.xml │ │ │ │ │ ├── tooltip_talent_info.xml │ │ │ │ │ ├── tooltip_underlord_ability.xml │ │ │ │ │ ├── tooltip_underlord_ability_option.xml │ │ │ │ │ └── tooltip_xp.xml │ │ │ └── styles │ │ │ │ ├── banners │ │ │ │ └── banner.css │ │ │ │ ├── battle_pass │ │ │ │ ├── bp0 │ │ │ │ │ └── battle_pass0.css │ │ │ │ ├── bp1 │ │ │ │ │ └── battle_pass1.css │ │ │ │ └── current_battlepass.css │ │ │ │ ├── carousel_nav.css │ │ │ │ ├── controls │ │ │ │ └── dac_play_button.css │ │ │ │ ├── dac_db_control_battlepass.css │ │ │ │ ├── dac_db_control_battlepass_rewardline.css │ │ │ │ ├── dac_db_control_challengelist.css │ │ │ │ ├── dac_db_control_citycrawl.css │ │ │ │ ├── dac_db_control_citycrawl_challenges.css │ │ │ │ ├── dac_db_control_intro_logo.css │ │ │ │ ├── dac_db_control_rank.css │ │ │ │ ├── dac_db_page_achievements.css │ │ │ │ ├── dac_db_page_credits.css │ │ │ │ ├── dac_db_page_heropedia.css │ │ │ │ ├── dac_db_page_heropedia_creeps.css │ │ │ │ ├── dac_db_page_heropedia_heroes.css │ │ │ │ ├── dac_db_page_heropedia_heroes_byname.css │ │ │ │ ├── dac_db_page_heropedia_heroes_bysynergy.css │ │ │ │ ├── dac_db_page_heropedia_heroes_bytier.css │ │ │ │ ├── dac_db_page_heropedia_heroes_shared.css │ │ │ │ ├── dac_db_page_heropedia_how_to_play.css │ │ │ │ ├── dac_db_page_heropedia_items.css │ │ │ │ ├── dac_db_page_heropedia_items_byname.css │ │ │ │ ├── dac_db_page_heropedia_items_bytier.css │ │ │ │ ├── dac_db_page_heropedia_items_bytype.css │ │ │ │ ├── dac_db_page_heropedia_rules.css │ │ │ │ ├── dac_db_page_heropedia_season.css │ │ │ │ ├── dac_db_page_heropedia_synergies.css │ │ │ │ ├── dac_db_page_heropedia_underlords.css │ │ │ │ ├── dac_db_page_home.css │ │ │ │ ├── dac_db_page_loadout.css │ │ │ │ ├── dac_db_page_loadout_protopass.css │ │ │ │ ├── dac_db_page_map_prop_editor.css │ │ │ │ ├── dac_db_page_patchnotes.css │ │ │ │ ├── dac_db_page_play.css │ │ │ │ ├── dac_db_page_postgame.css │ │ │ │ ├── dac_db_page_profile.css │ │ │ │ ├── dac_db_page_rewards_battlepass.css │ │ │ │ ├── dac_db_page_rewards_protopass.css │ │ │ │ ├── dac_db_page_select_underlord.css │ │ │ │ ├── dac_db_page_settings.css │ │ │ │ ├── dac_db_page_underlords.css │ │ │ │ ├── dac_db_page_zoo.css │ │ │ │ ├── dac_global.css │ │ │ │ ├── dac_ricky_shared.css │ │ │ │ ├── dac_ui_achievement.css │ │ │ │ ├── dac_ui_achievement_panel.css │ │ │ │ ├── dac_ui_banner_paintin.css │ │ │ │ ├── dac_ui_battlepass_level.css │ │ │ │ ├── dac_ui_challenge_map.css │ │ │ │ ├── dac_ui_challenge_world_map.css │ │ │ │ ├── dac_ui_challengemap_challenge.css │ │ │ │ ├── dac_ui_challengemap_claim.css │ │ │ │ ├── dac_ui_chat_wheel.css │ │ │ │ ├── dac_ui_citycrawl_challenge.css │ │ │ │ ├── dac_ui_context_menu_chat_line.css │ │ │ │ ├── dac_ui_context_menu_gems.css │ │ │ │ ├── dac_ui_context_menu_party.css │ │ │ │ ├── dac_ui_context_menu_player.css │ │ │ │ ├── dac_ui_dps_chart.css │ │ │ │ ├── dac_ui_equip_control.css │ │ │ │ ├── dac_ui_friend.css │ │ │ │ ├── dac_ui_friend_menu.css │ │ │ │ ├── dac_ui_friend_picker.css │ │ │ │ ├── dac_ui_honeycomb_container.css │ │ │ │ ├── dac_ui_hud.css │ │ │ │ ├── dac_ui_hud_item_display.css │ │ │ │ ├── dac_ui_hud_player_icons.css │ │ │ │ ├── dac_ui_hud_top_bar.css │ │ │ │ ├── dac_ui_hud_tutorial.css │ │ │ │ ├── dac_ui_inventory.css │ │ │ │ ├── dac_ui_inventory_item.css │ │ │ │ ├── dac_ui_item_select.css │ │ │ │ ├── dac_ui_leaderboard.css │ │ │ │ ├── dac_ui_leaderboard_duos.css │ │ │ │ ├── dac_ui_leaderboard_entry.css │ │ │ │ ├── dac_ui_main.css │ │ │ │ ├── dac_ui_map_prop_list.css │ │ │ │ ├── dac_ui_match_intro.css │ │ │ │ ├── dac_ui_match_over.css │ │ │ │ ├── dac_ui_miniprofile.css │ │ │ │ ├── dac_ui_nonogram_puzzle.css │ │ │ │ ├── dac_ui_notification_container.css │ │ │ │ ├── dac_ui_notifications.css │ │ │ │ ├── dac_ui_panorama_tutorial.css │ │ │ │ ├── dac_ui_party.css │ │ │ │ ├── dac_ui_party_invite.css │ │ │ │ ├── dac_ui_party_member.css │ │ │ │ ├── dac_ui_player_avatar.css │ │ │ │ ├── dac_ui_post_game_stats.css │ │ │ │ ├── dac_ui_poster_battlepass_level.css │ │ │ │ ├── dac_ui_poster_prestige_level.css │ │ │ │ ├── dac_ui_postgame_scoreboard.css │ │ │ │ ├── dac_ui_postgame_scoreboard_entry.css │ │ │ │ ├── dac_ui_puzzle_histogram.css │ │ │ │ ├── dac_ui_puzzle_intro.css │ │ │ │ ├── dac_ui_puzzle_rules.css │ │ │ │ ├── dac_ui_puzzle_shop.css │ │ │ │ ├── dac_ui_puzzle_status.css │ │ │ │ ├── dac_ui_quick_equip_button.css │ │ │ │ ├── dac_ui_randomized_children.css │ │ │ │ ├── dac_ui_rank_icon.css │ │ │ │ ├── dac_ui_round_over.css │ │ │ │ ├── dac_ui_round_start.css │ │ │ │ ├── dac_ui_scoreboard.css │ │ │ │ ├── dac_ui_scoreboard_entry.css │ │ │ │ ├── dac_ui_sell_unit_bar.css │ │ │ │ ├── dac_ui_send_unit_bar.css │ │ │ │ ├── dac_ui_settings_panel.css │ │ │ │ ├── dac_ui_shop.css │ │ │ │ ├── dac_ui_synergy_capsule.css │ │ │ │ ├── dac_ui_synergy_icon.css │ │ │ │ ├── dac_ui_talent_card.css │ │ │ │ ├── dac_ui_talent_selector.css │ │ │ │ ├── dac_ui_turbo_shop.css │ │ │ │ ├── dac_ui_underlord.css │ │ │ │ ├── dac_ui_underlord_picker.css │ │ │ │ ├── dac_ui_underlord_status.css │ │ │ │ ├── dac_ui_unit_modifiers.css │ │ │ │ ├── dac_ui_unit_status.css │ │ │ │ ├── dac_ui_vs_screen.css │ │ │ │ ├── dac_ui_weekly_challenge.css │ │ │ │ ├── dac_ui_zoo.css │ │ │ │ ├── dac_wanted_poster_title.css │ │ │ │ ├── dac_world_debug.css │ │ │ │ ├── dac_world_main.css │ │ │ │ ├── gamestyles.css │ │ │ │ ├── gamestyles_staging.css │ │ │ │ ├── movie.css │ │ │ │ ├── popups │ │ │ │ ├── dac_ui_popup_battlepass_s1_intro.css │ │ │ │ ├── dac_ui_popup_citycrawl_intro.css │ │ │ │ ├── dac_ui_popup_citycrawl_prestige.css │ │ │ │ ├── dac_ui_popup_citycrawl_zone_reward.css │ │ │ │ ├── dac_ui_popup_map_challenge.css │ │ │ │ ├── dac_ui_popup_weekly_challenge.css │ │ │ │ ├── dac_ui_popup_weekly_challenge_intro.css │ │ │ │ ├── popup_ability.css │ │ │ │ ├── popup_about_duos.css │ │ │ │ ├── popup_battlepass_progress.css │ │ │ │ ├── popup_battlepass_purchase.css │ │ │ │ ├── popup_citycrawl_challenges.css │ │ │ │ ├── popup_claim_item.css │ │ │ │ ├── popup_equip_slot.css │ │ │ │ ├── popup_friend_code.css │ │ │ │ ├── popup_friend_code_addpopup.css │ │ │ │ ├── popup_gamemode_intro.css │ │ │ │ ├── popup_gamemode_picker.css │ │ │ │ ├── popup_gems.css │ │ │ │ ├── popup_generic.css │ │ │ │ ├── popup_hero.css │ │ │ │ ├── popup_hero_odds.css │ │ │ │ ├── popup_hero_rotation_intro.css │ │ │ │ ├── popup_heropedia.css │ │ │ │ ├── popup_heropedia_synergy.css │ │ │ │ ├── popup_invitation_accepted.css │ │ │ │ ├── popup_item.css │ │ │ │ ├── popup_join_party.css │ │ │ │ ├── popup_legendary_desc.css │ │ │ │ ├── popup_looking_for_match.css │ │ │ │ ├── popup_lootlistodds.css │ │ │ │ ├── popup_manager.css │ │ │ │ ├── popup_movie.css │ │ │ │ ├── popup_party_invite_friend.css │ │ │ │ ├── popup_party_select_team.css │ │ │ │ ├── popup_play_page_season_info.css │ │ │ │ ├── popup_player_state.css │ │ │ │ ├── popup_postgame_reward.css │ │ │ │ ├── popup_pre_match_details.css │ │ │ │ ├── popup_puzzle_victory.css │ │ │ │ ├── popup_rank_tier_desc.css │ │ │ │ ├── popup_rankup.css │ │ │ │ ├── popup_rename_team.css │ │ │ │ ├── popup_reward.css │ │ │ │ ├── popup_reward_info.css │ │ │ │ ├── popup_season_0_intro.css │ │ │ │ ├── popup_season_1_intro.css │ │ │ │ ├── popup_season_1_thankyou.css │ │ │ │ ├── popup_select_match_type.css │ │ │ │ ├── popup_settings.css │ │ │ │ ├── popup_steam_login.css │ │ │ │ ├── popup_support_grant.css │ │ │ │ ├── popup_synergy.css │ │ │ │ ├── popup_talent_info.css │ │ │ │ ├── popup_tutorial_intro.css │ │ │ │ ├── popup_tutorial_message.css │ │ │ │ ├── popup_underlord_ability.css │ │ │ │ ├── popups_shared.css │ │ │ │ ├── settings_enum.css │ │ │ │ └── settings_slider.css │ │ │ │ ├── settings_keybinder.css │ │ │ │ └── tooltips │ │ │ │ ├── tooltip_base.css │ │ │ │ ├── tooltip_gold_amount.css │ │ │ │ ├── tooltip_hero.css │ │ │ │ ├── tooltip_hero_ability.css │ │ │ │ ├── tooltip_item.css │ │ │ │ ├── tooltip_legendary.css │ │ │ │ ├── tooltip_map_challenge.css │ │ │ │ ├── tooltip_map_claim.css │ │ │ │ ├── tooltip_meter_details.css │ │ │ │ ├── tooltip_modifier.css │ │ │ │ ├── tooltip_player.css │ │ │ │ ├── tooltip_status.css │ │ │ │ ├── tooltip_synergy.css │ │ │ │ ├── tooltip_talent_info.css │ │ │ │ ├── tooltip_text.css │ │ │ │ ├── tooltip_title_image_text.css │ │ │ │ ├── tooltip_title_text.css │ │ │ │ ├── tooltip_underlord_ability.css │ │ │ │ └── tooltip_xp.css │ │ ├── resource │ │ │ ├── game-icon.png │ │ │ ├── game.gameevents │ │ │ ├── localization │ │ │ │ ├── dac_abilities_brazilian.txt │ │ │ │ ├── dac_abilities_bulgarian.txt │ │ │ │ ├── dac_abilities_czech.txt │ │ │ │ ├── dac_abilities_danish.txt │ │ │ │ ├── dac_abilities_dutch.txt │ │ │ │ ├── dac_abilities_english.txt │ │ │ │ ├── dac_abilities_finnish.txt │ │ │ │ ├── dac_abilities_french.txt │ │ │ │ ├── dac_abilities_german.txt │ │ │ │ ├── dac_abilities_greek.txt │ │ │ │ ├── dac_abilities_hungarian.txt │ │ │ │ ├── dac_abilities_italian.txt │ │ │ │ ├── dac_abilities_japanese.txt │ │ │ │ ├── dac_abilities_koreana.txt │ │ │ │ ├── dac_abilities_latam.txt │ │ │ │ ├── dac_abilities_norwegian.txt │ │ │ │ ├── dac_abilities_polish.txt │ │ │ │ ├── dac_abilities_portuguese.txt │ │ │ │ ├── dac_abilities_romanian.txt │ │ │ │ ├── dac_abilities_russian.txt │ │ │ │ ├── dac_abilities_schinese.txt │ │ │ │ ├── dac_abilities_spanish.txt │ │ │ │ ├── dac_abilities_swedish.txt │ │ │ │ ├── dac_abilities_tchinese.txt │ │ │ │ ├── dac_abilities_thai.txt │ │ │ │ ├── dac_abilities_turkish.txt │ │ │ │ ├── dac_abilities_ukrainian.txt │ │ │ │ ├── dac_abilities_vietnamese.txt │ │ │ │ ├── items_brazilian.txt │ │ │ │ ├── items_bulgarian.txt │ │ │ │ ├── items_czech.txt │ │ │ │ ├── items_danish.txt │ │ │ │ ├── items_dutch.txt │ │ │ │ ├── items_english.txt │ │ │ │ ├── items_finnish.txt │ │ │ │ ├── items_french.txt │ │ │ │ ├── items_german.txt │ │ │ │ ├── items_greek.txt │ │ │ │ ├── items_hungarian.txt │ │ │ │ ├── items_italian.txt │ │ │ │ ├── items_japanese.txt │ │ │ │ ├── items_koreana.txt │ │ │ │ ├── items_latam.txt │ │ │ │ ├── items_norwegian.txt │ │ │ │ ├── items_polish.txt │ │ │ │ ├── items_portuguese.txt │ │ │ │ ├── items_romanian.txt │ │ │ │ ├── items_russian.txt │ │ │ │ ├── items_schinese.txt │ │ │ │ ├── items_spanish.txt │ │ │ │ ├── items_swedish.txt │ │ │ │ ├── items_tchinese.txt │ │ │ │ ├── items_thai.txt │ │ │ │ ├── items_turkish.txt │ │ │ │ ├── items_ukrainian.txt │ │ │ │ └── items_vietnamese.txt │ │ │ └── port.gameevents │ │ ├── scripts │ │ │ ├── botsdefs.json │ │ │ ├── botsdifficultylevels.json │ │ │ ├── botspersonalities.json │ │ │ ├── chat_wheel_lines.json │ │ │ ├── credits.json │ │ │ ├── decals_subrect.txt │ │ │ ├── emoticons.txt │ │ │ ├── events.json │ │ │ ├── events │ │ │ │ ├── season_00_battle_pass.json │ │ │ │ ├── season_00_challenges.json │ │ │ │ ├── season_00_item_rewards.json │ │ │ │ ├── season_00_item_rewards_no_criteria.json │ │ │ │ ├── season_00_underlords.json │ │ │ │ ├── season_02_battle_pass.json │ │ │ │ ├── season_02_challenges.json │ │ │ │ ├── season_02_graph_auto_gen.json │ │ │ │ └── season_02_underlords.json │ │ │ ├── items │ │ │ │ └── items_game.txt │ │ │ ├── itemtest_manifest.txt │ │ │ ├── npc │ │ │ │ ├── item_portraits.txt │ │ │ │ ├── npc_abilities.txt │ │ │ │ ├── npc_heroes.txt │ │ │ │ ├── npc_units.txt │ │ │ │ ├── portraits.txt │ │ │ │ ├── portraits_underlords_hud.txt │ │ │ │ └── portraits_vs_radiant.txt │ │ │ ├── propdata.txt │ │ │ ├── regions.txt │ │ │ ├── soundmixers.txt │ │ │ ├── soundscapes_manifest.txt │ │ │ ├── talker │ │ │ │ ├── response_rules.txt │ │ │ │ ├── response_rules_anessix.txt │ │ │ │ ├── response_rules_enno.txt │ │ │ │ ├── response_rules_hobgen.txt │ │ │ │ ├── response_rules_jull.txt │ │ │ │ ├── response_rules_jull_alt.txt │ │ │ │ └── units │ │ │ │ │ ├── abaddon.txt │ │ │ │ │ ├── alchemist.txt │ │ │ │ │ ├── antimage.txt │ │ │ │ │ ├── arc_warden.txt │ │ │ │ │ ├── axe.txt │ │ │ │ │ ├── bat_rider.txt │ │ │ │ │ ├── beastmaster.txt │ │ │ │ │ ├── bloodseeker.txt │ │ │ │ │ ├── bounty_hunter.txt │ │ │ │ │ ├── bristleback.txt │ │ │ │ │ ├── broodmother.txt │ │ │ │ │ ├── chaos_knight.txt │ │ │ │ │ ├── clockwerk.txt │ │ │ │ │ ├── crystal_maiden.txt │ │ │ │ │ ├── dazzle.txt │ │ │ │ │ ├── death_prophet.txt │ │ │ │ │ ├── disruptor.txt │ │ │ │ │ ├── doom.txt │ │ │ │ │ ├── dragon_knight.txt │ │ │ │ │ ├── drow_ranger.txt │ │ │ │ │ ├── earth_spirit.txt │ │ │ │ │ ├── ember_spirit.txt │ │ │ │ │ ├── enchantress.txt │ │ │ │ │ ├── enigma.txt │ │ │ │ │ ├── faceless_void.txt │ │ │ │ │ ├── furion.txt │ │ │ │ │ ├── gyrocopter.txt │ │ │ │ │ ├── juggernaut.txt │ │ │ │ │ ├── keeper_of_the_light.txt │ │ │ │ │ ├── kunkka.txt │ │ │ │ │ ├── legion_commander.txt │ │ │ │ │ ├── lich.txt │ │ │ │ │ ├── life_stealer.txt │ │ │ │ │ ├── lina.txt │ │ │ │ │ ├── lone_druid.txt │ │ │ │ │ ├── luna.txt │ │ │ │ │ ├── lycan.txt │ │ │ │ │ ├── magnus.txt │ │ │ │ │ ├── medusa.txt │ │ │ │ │ ├── meepo.txt │ │ │ │ │ ├── mirana.txt │ │ │ │ │ ├── morphling.txt │ │ │ │ │ ├── necrophos.txt │ │ │ │ │ ├── nyx_assassin.txt │ │ │ │ │ ├── ogre_magi.txt │ │ │ │ │ ├── omniknight.txt │ │ │ │ │ ├── pangolier.txt │ │ │ │ │ ├── phantom_assassin.txt │ │ │ │ │ ├── puck.txt │ │ │ │ │ ├── pudge.txt │ │ │ │ │ ├── queen_of_pain.txt │ │ │ │ │ ├── razor.txt │ │ │ │ │ ├── rubick.txt │ │ │ │ │ ├── sandking.txt │ │ │ │ │ ├── shadow_demon.txt │ │ │ │ │ ├── shadow_shaman.txt │ │ │ │ │ ├── shadowfiend.txt │ │ │ │ │ ├── slardar.txt │ │ │ │ │ ├── slark.txt │ │ │ │ │ ├── snapfire.txt │ │ │ │ │ ├── sniper.txt │ │ │ │ │ ├── spectre.txt │ │ │ │ │ ├── spirit_breaker.txt │ │ │ │ │ ├── storm_spirit.txt │ │ │ │ │ ├── sven.txt │ │ │ │ │ ├── techies.txt │ │ │ │ │ ├── templar_assassin.txt │ │ │ │ │ ├── terrorblade.txt │ │ │ │ │ ├── tidehunter.txt │ │ │ │ │ ├── timbersaw.txt │ │ │ │ │ ├── tinker.txt │ │ │ │ │ ├── tiny.txt │ │ │ │ │ ├── treant_protector.txt │ │ │ │ │ ├── troll_warlord.txt │ │ │ │ │ ├── tusk.txt │ │ │ │ │ ├── vengeful_spirit.txt │ │ │ │ │ ├── venomancer.txt │ │ │ │ │ ├── viper.txt │ │ │ │ │ ├── void_spirit.txt │ │ │ │ │ ├── warlock.txt │ │ │ │ │ ├── weaver.txt │ │ │ │ │ ├── wind_ranger.txt │ │ │ │ │ ├── witch_doctor.txt │ │ │ │ │ └── wraith_king.txt │ │ │ └── urls.json │ │ ├── soundevents │ │ │ ├── environment │ │ │ │ ├── game_sounds_city_crawl.vsndevts │ │ │ │ └── game_sounds_soundscapes.vsndevts │ │ │ ├── items │ │ │ │ ├── game_sounds_items.vsndevts │ │ │ │ └── game_sounds_map_props.vsndevts │ │ │ ├── main_menu │ │ │ │ └── game_sounds_main_menu_cc.vsndevts │ │ │ ├── music │ │ │ │ ├── game_sounds_music_dac.vsndevts │ │ │ │ ├── game_sounds_music_spectator.vsndevts │ │ │ │ └── game_sounds_music_tutorial.vsndevts │ │ │ ├── ui │ │ │ │ ├── game_sounds_ui.vsndevts │ │ │ │ └── game_sounds_ui_main_menu.vsndevts │ │ │ ├── units │ │ │ │ ├── creeps │ │ │ │ │ └── game_sounds_creeps.vsndevts │ │ │ │ ├── heroes │ │ │ │ │ ├── game_sounds_abaddon.vsndevts │ │ │ │ │ ├── game_sounds_alchemist.vsndevts │ │ │ │ │ ├── game_sounds_antimage.vsndevts │ │ │ │ │ ├── game_sounds_arc_warden.vsndevts │ │ │ │ │ ├── game_sounds_axe.vsndevts │ │ │ │ │ ├── game_sounds_batrider.vsndevts │ │ │ │ │ ├── game_sounds_beastmaster.vsndevts │ │ │ │ │ ├── game_sounds_bloodseeker.vsndevts │ │ │ │ │ ├── game_sounds_bounty_hunter.vsndevts │ │ │ │ │ ├── game_sounds_bristleback.vsndevts │ │ │ │ │ ├── game_sounds_broodmother.vsndevts │ │ │ │ │ ├── game_sounds_chaos_knight.vsndevts │ │ │ │ │ ├── game_sounds_chen.vsndevts │ │ │ │ │ ├── game_sounds_crystalmaiden.vsndevts │ │ │ │ │ ├── game_sounds_dazzle.vsndevts │ │ │ │ │ ├── game_sounds_death_prophet.vsndevts │ │ │ │ │ ├── game_sounds_disruptor.vsndevts │ │ │ │ │ ├── game_sounds_doombringer.vsndevts │ │ │ │ │ ├── game_sounds_dragon_knight.vsndevts │ │ │ │ │ ├── game_sounds_drowranger.vsndevts │ │ │ │ │ ├── game_sounds_earthshaker.vsndevts │ │ │ │ │ ├── game_sounds_elder_titan.vsndevts │ │ │ │ │ ├── game_sounds_enchantress.vsndevts │ │ │ │ │ ├── game_sounds_enigma.vsndevts │ │ │ │ │ ├── game_sounds_faceless_void.vsndevts │ │ │ │ │ ├── game_sounds_furion.vsndevts │ │ │ │ │ ├── game_sounds_gyrocopter.vsndevts │ │ │ │ │ ├── game_sounds_juggernaut.vsndevts │ │ │ │ │ ├── game_sounds_keeper_of_the_light.vsndevts │ │ │ │ │ ├── game_sounds_kunkka.vsndevts │ │ │ │ │ ├── game_sounds_legion_commander.vsndevts │ │ │ │ │ ├── game_sounds_lich.vsndevts │ │ │ │ │ ├── game_sounds_lifestealer.vsndevts │ │ │ │ │ ├── game_sounds_lina.vsndevts │ │ │ │ │ ├── game_sounds_lone_druid.vsndevts │ │ │ │ │ ├── game_sounds_luna.vsndevts │ │ │ │ │ ├── game_sounds_lycan.vsndevts │ │ │ │ │ ├── game_sounds_magnataur.vsndevts │ │ │ │ │ ├── game_sounds_medusa.vsndevts │ │ │ │ │ ├── game_sounds_meepo.vsndevts │ │ │ │ │ ├── game_sounds_mirana.vsndevts │ │ │ │ │ ├── game_sounds_morphling.vsndevts │ │ │ │ │ ├── game_sounds_necrolyte.vsndevts │ │ │ │ │ ├── game_sounds_nevermore.vsndevts │ │ │ │ │ ├── game_sounds_nyx_assassin.vsndevts │ │ │ │ │ ├── game_sounds_ogre_magi.vsndevts │ │ │ │ │ ├── game_sounds_omniknight.vsndevts │ │ │ │ │ ├── game_sounds_pangolier.vsndevts │ │ │ │ │ ├── game_sounds_phantom_assassin.vsndevts │ │ │ │ │ ├── game_sounds_puck.vsndevts │ │ │ │ │ ├── game_sounds_pudge.vsndevts │ │ │ │ │ ├── game_sounds_queenofpain.vsndevts │ │ │ │ │ ├── game_sounds_rattletrap.vsndevts │ │ │ │ │ ├── game_sounds_razor.vsndevts │ │ │ │ │ ├── game_sounds_rubick.vsndevts │ │ │ │ │ ├── game_sounds_sandking.vsndevts │ │ │ │ │ ├── game_sounds_shadow_demon.vsndevts │ │ │ │ │ ├── game_sounds_shadowshaman.vsndevts │ │ │ │ │ ├── game_sounds_shredder.vsndevts │ │ │ │ │ ├── game_sounds_slardar.vsndevts │ │ │ │ │ ├── game_sounds_slark.vsndevts │ │ │ │ │ ├── game_sounds_snapfire.vsndevts │ │ │ │ │ ├── game_sounds_sniper.vsndevts │ │ │ │ │ ├── game_sounds_spectre.vsndevts │ │ │ │ │ ├── game_sounds_spirit_breaker.vsndevts │ │ │ │ │ ├── game_sounds_spirit_brothers.vsndevts │ │ │ │ │ ├── game_sounds_sven.vsndevts │ │ │ │ │ ├── game_sounds_techies.vsndevts │ │ │ │ │ ├── game_sounds_templar_assassin.vsndevts │ │ │ │ │ ├── game_sounds_terrorblade.vsndevts │ │ │ │ │ ├── game_sounds_tidehunter.vsndevts │ │ │ │ │ ├── game_sounds_tinker.vsndevts │ │ │ │ │ ├── game_sounds_tiny.vsndevts │ │ │ │ │ ├── game_sounds_treant.vsndevts │ │ │ │ │ ├── game_sounds_troll_warlord.vsndevts │ │ │ │ │ ├── game_sounds_tusk.vsndevts │ │ │ │ │ ├── game_sounds_vengefulspirit.vsndevts │ │ │ │ │ ├── game_sounds_venomancer.vsndevts │ │ │ │ │ ├── game_sounds_viper.vsndevts │ │ │ │ │ ├── game_sounds_warlock.vsndevts │ │ │ │ │ ├── game_sounds_weaver.vsndevts │ │ │ │ │ ├── game_sounds_windrunner.vsndevts │ │ │ │ │ ├── game_sounds_wisp.vsndevts │ │ │ │ │ ├── game_sounds_witchdoctor.vsndevts │ │ │ │ │ ├── game_sounds_wraith_king.vsndevts │ │ │ │ │ └── unit_vo │ │ │ │ │ │ ├── abaddon_vo.vsndevts │ │ │ │ │ │ ├── alchemist_vo.vsndevts │ │ │ │ │ │ ├── antimage_vo.vsndevts │ │ │ │ │ │ ├── arc_warden_vo.vsndevts │ │ │ │ │ │ ├── axe_vo.vsndevts │ │ │ │ │ │ ├── batrider_vo.vsndevts │ │ │ │ │ │ ├── beastmaster_vo.vsndevts │ │ │ │ │ │ ├── bloodseeker_vo.vsndevts │ │ │ │ │ │ ├── bounty_hunter_vo.vsndevts │ │ │ │ │ │ ├── bristleback_vo.vsndevts │ │ │ │ │ │ ├── broodmother_vo.vsndevts │ │ │ │ │ │ ├── chaos_knight_vo.vsndevts │ │ │ │ │ │ ├── clockwerk_vo.vsndevts │ │ │ │ │ │ ├── crystal_maiden_vo.vsndevts │ │ │ │ │ │ ├── dazzle_vo.vsndevts │ │ │ │ │ │ ├── death_prophet_vo.vsndevts │ │ │ │ │ │ ├── disruptor_vo.vsndevts │ │ │ │ │ │ ├── doom_vo.vsndevts │ │ │ │ │ │ ├── dragon_knight_vo.vsndevts │ │ │ │ │ │ ├── drow_ranger_vo.vsndevts │ │ │ │ │ │ ├── earth_spirit_vo.vsndevts │ │ │ │ │ │ ├── ember_spirit_vo.vsndevts │ │ │ │ │ │ ├── enchantress_vo.vsndevts │ │ │ │ │ │ ├── enigma_vo.vsndevts │ │ │ │ │ │ ├── faceless_void_vo.vsndevts │ │ │ │ │ │ ├── gyrocopter_vo.vsndevts │ │ │ │ │ │ ├── hobgen_vo.vsndevts │ │ │ │ │ │ ├── juggernaut_vo.vsndevts │ │ │ │ │ │ ├── keeper_of_the_light_vo.vsndevts │ │ │ │ │ │ ├── kunkka_vo.vsndevts │ │ │ │ │ │ ├── legion_commander_vo.vsndevts │ │ │ │ │ │ ├── lich_vo.vsndevts │ │ │ │ │ │ ├── life_stealer_vo.vsndevts │ │ │ │ │ │ ├── lina_vo.vsndevts │ │ │ │ │ │ ├── lone_druid_vo.vsndevts │ │ │ │ │ │ ├── luna_vo.vsndevts │ │ │ │ │ │ ├── lycan_vo.vsndevts │ │ │ │ │ │ ├── magnus_vo.vsndevts │ │ │ │ │ │ ├── medusa_vo.vsndevts │ │ │ │ │ │ ├── meepo_vo.vsndevts │ │ │ │ │ │ ├── mirana_vo.vsndevts │ │ │ │ │ │ ├── morphling_vo.vsndevts │ │ │ │ │ │ ├── natures_prophet_vo.vsndevts │ │ │ │ │ │ ├── necrophos_vo.vsndevts │ │ │ │ │ │ ├── nyx_assassin_vo.vsndevts │ │ │ │ │ │ ├── ogre_magi_vo.vsndevts │ │ │ │ │ │ ├── omniknight_vo.vsndevts │ │ │ │ │ │ ├── pangolier_vo.vsndevts │ │ │ │ │ │ ├── phantom_assassin_vo.vsndevts │ │ │ │ │ │ ├── puck_vo.vsndevts │ │ │ │ │ │ ├── pudge_vo.vsndevts │ │ │ │ │ │ ├── queen_of_pain_vo.vsndevts │ │ │ │ │ │ ├── razor_vo.vsndevts │ │ │ │ │ │ ├── rubick_vo.vsndevts │ │ │ │ │ │ ├── sandking_vo.vsndevts │ │ │ │ │ │ ├── shadow_demon_vo.vsndevts │ │ │ │ │ │ ├── shadow_shaman_vo.vsndevts │ │ │ │ │ │ ├── shadowfiend_vo.vsndevts │ │ │ │ │ │ ├── slardar_vo.vsndevts │ │ │ │ │ │ ├── slark_vo.vsndevts │ │ │ │ │ │ ├── snapfire_vo.vsndevts │ │ │ │ │ │ ├── sniper_vo.vsndevts │ │ │ │ │ │ ├── spectre_vo.vsndevts │ │ │ │ │ │ ├── spirit_breaker_vo.vsndevts │ │ │ │ │ │ ├── storm_spirit_vo.vsndevts │ │ │ │ │ │ ├── sven_vo.vsndevts │ │ │ │ │ │ ├── techies_vo.vsndevts │ │ │ │ │ │ ├── templar_assassin_vo.vsndevts │ │ │ │ │ │ ├── terrorblade_vo.vsndevts │ │ │ │ │ │ ├── tidehunter_vo.vsndevts │ │ │ │ │ │ ├── timbersaw_vo.vsndevts │ │ │ │ │ │ ├── tinker_vo.vsndevts │ │ │ │ │ │ ├── tiny_vo.vsndevts │ │ │ │ │ │ ├── treant_protector_vo.vsndevts │ │ │ │ │ │ ├── troll_warlord_vo.vsndevts │ │ │ │ │ │ ├── tusk_vo.vsndevts │ │ │ │ │ │ ├── vengeful_spirit_vo.vsndevts │ │ │ │ │ │ ├── venomancer_vo.vsndevts │ │ │ │ │ │ ├── viper_vo.vsndevts │ │ │ │ │ │ ├── void_spirit_vo.vsndevts │ │ │ │ │ │ ├── warlock_vo.vsndevts │ │ │ │ │ │ ├── weaver_vo.vsndevts │ │ │ │ │ │ ├── wind_ranger_vo.vsndevts │ │ │ │ │ │ ├── witchdoctor_vo.vsndevts │ │ │ │ │ │ └── wraith_king_vo.vsndevts │ │ │ │ └── underlords │ │ │ │ │ ├── game_sounds_anessix.vsndevts │ │ │ │ │ ├── game_sounds_enno.vsndevts │ │ │ │ │ ├── game_sounds_hobgen.vsndevts │ │ │ │ │ └── game_sounds_jull.vsndevts │ │ │ ├── vfx │ │ │ │ └── game_sounds_vfx.vsndevts │ │ │ └── voscripts │ │ │ │ ├── game_sounds_vo_anessix.vsndevts │ │ │ │ ├── game_sounds_vo_enno.vsndevts │ │ │ │ ├── game_sounds_vo_hobgen.vsndevts │ │ │ │ ├── game_sounds_vo_jull.vsndevts │ │ │ │ └── game_sounds_vo_jull_alt.vsndevts │ │ ├── soundstacks │ │ │ ├── sosstrings.txt │ │ │ ├── soundstacks_dac_addons.vsndstck │ │ │ ├── soundstacks_dac_core.vsndstck │ │ │ ├── soundstacks_dac_music.vsndstck │ │ │ └── soundstacks_dcg_core.vsndstck │ │ └── toolscenelightrigs.txt │ ├── panorama │ │ └── localization │ │ │ ├── dac_brazilian.txt │ │ │ ├── dac_bulgarian.txt │ │ │ ├── dac_czech.txt │ │ │ ├── dac_danish.txt │ │ │ ├── dac_dutch.txt │ │ │ ├── dac_english.txt │ │ │ ├── dac_finnish.txt │ │ │ ├── dac_french.txt │ │ │ ├── dac_german.txt │ │ │ ├── dac_greek.txt │ │ │ ├── dac_hungarian.txt │ │ │ ├── dac_italian.txt │ │ │ ├── dac_japanese.txt │ │ │ ├── dac_koreana.txt │ │ │ ├── dac_latam.txt │ │ │ ├── dac_norwegian.txt │ │ │ ├── dac_polish.txt │ │ │ ├── dac_portuguese.txt │ │ │ ├── dac_romanian.txt │ │ │ ├── dac_russian.txt │ │ │ ├── dac_schinese.txt │ │ │ ├── dac_spanish.txt │ │ │ ├── dac_swedish.txt │ │ │ ├── dac_tchinese.txt │ │ │ ├── dac_thai.txt │ │ │ ├── dac_turkish.txt │ │ │ ├── dac_ukrainian.txt │ │ │ └── dac_vietnamese.txt │ ├── resource │ │ ├── dac_common_brazilian.txt │ │ ├── dac_common_bulgarian.txt │ │ ├── dac_common_czech.txt │ │ ├── dac_common_danish.txt │ │ ├── dac_common_dutch.txt │ │ ├── dac_common_english.txt │ │ ├── dac_common_finnish.txt │ │ ├── dac_common_french.txt │ │ ├── dac_common_german.txt │ │ ├── dac_common_greek.txt │ │ ├── dac_common_hungarian.txt │ │ ├── dac_common_italian.txt │ │ ├── dac_common_japanese.txt │ │ ├── dac_common_koreana.txt │ │ ├── dac_common_latam.txt │ │ ├── dac_common_norwegian.txt │ │ ├── dac_common_polish.txt │ │ ├── dac_common_portuguese.txt │ │ ├── dac_common_romanian.txt │ │ ├── dac_common_russian.txt │ │ ├── dac_common_schinese.txt │ │ ├── dac_common_spanish.txt │ │ ├── dac_common_swedish.txt │ │ ├── dac_common_tchinese.txt │ │ ├── dac_common_thai.txt │ │ ├── dac_common_turkish.txt │ │ ├── dac_common_ukrainian.txt │ │ └── dac_common_vietnamese.txt │ ├── shaders_vulkan_dir.txt │ └── steam.inf ├── dac_desktop │ ├── gameinfo.gi │ └── pak01_dir.txt └── thirdpartylegalnotices.txt └── update.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/.gitignore -------------------------------------------------------------------------------- /Protobufs/base_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/base_gcmessages.proto -------------------------------------------------------------------------------- /Protobufs/c_peer2peer_netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/c_peer2peer_netmessages.proto -------------------------------------------------------------------------------- /Protobufs/clientmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/clientmessages.proto -------------------------------------------------------------------------------- /Protobufs/connectionless_netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/connectionless_netmessages.proto -------------------------------------------------------------------------------- /Protobufs/dac_gamemessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/dac_gamemessages.proto -------------------------------------------------------------------------------- /Protobufs/dac_gcmessages_client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/dac_gcmessages_client.proto -------------------------------------------------------------------------------- /Protobufs/dac_gcmessages_common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/dac_gcmessages_common.proto -------------------------------------------------------------------------------- /Protobufs/dac_gcmessages_server.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/dac_gcmessages_server.proto -------------------------------------------------------------------------------- /Protobufs/demo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/demo.proto -------------------------------------------------------------------------------- /Protobufs/econ_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/econ_gcmessages.proto -------------------------------------------------------------------------------- /Protobufs/econ_shared_enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/econ_shared_enums.proto -------------------------------------------------------------------------------- /Protobufs/enums_clientserver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/enums_clientserver.proto -------------------------------------------------------------------------------- /Protobufs/gameevents.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/gameevents.proto -------------------------------------------------------------------------------- /Protobufs/gametoolevents.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/gametoolevents.proto -------------------------------------------------------------------------------- /Protobufs/gcsdk_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/gcsdk_gcmessages.proto -------------------------------------------------------------------------------- /Protobufs/gcsystemmsgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/gcsystemmsgs.proto -------------------------------------------------------------------------------- /Protobufs/netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/netmessages.proto -------------------------------------------------------------------------------- /Protobufs/network_connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/network_connection.proto -------------------------------------------------------------------------------- /Protobufs/networkbasetypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/networkbasetypes.proto -------------------------------------------------------------------------------- /Protobufs/networksystem_protomessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/networksystem_protomessages.proto -------------------------------------------------------------------------------- /Protobufs/steamdatagram_messages_auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steamdatagram_messages_auth.proto -------------------------------------------------------------------------------- /Protobufs/steamdatagram_messages_sdr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steamdatagram_messages_sdr.proto -------------------------------------------------------------------------------- /Protobufs/steammessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_base.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_clientserver_login.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_clientserver_login.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_cloud.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_cloud.steamworkssdk.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_helprequest.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_helprequest.steamworkssdk.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_oauth.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_oauth.steamworkssdk.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_player.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_player.steamworkssdk.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_publishedfile.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_publishedfile.steamworkssdk.proto -------------------------------------------------------------------------------- /Protobufs/steammessages_unified_base.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steammessages_unified_base.steamworkssdk.proto -------------------------------------------------------------------------------- /Protobufs/steamnetworkingsockets_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steamnetworkingsockets_messages.proto -------------------------------------------------------------------------------- /Protobufs/steamnetworkingsockets_messages_certs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steamnetworkingsockets_messages_certs.proto -------------------------------------------------------------------------------- /Protobufs/steamnetworkingsockets_messages_udp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/steamnetworkingsockets_messages_udp.proto -------------------------------------------------------------------------------- /Protobufs/te.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/te.proto -------------------------------------------------------------------------------- /Protobufs/uifontfile_format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/uifontfile_format.proto -------------------------------------------------------------------------------- /Protobufs/usermessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/usermessages.proto -------------------------------------------------------------------------------- /Protobufs/valveextensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/Protobufs/valveextensions.proto -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/README.md -------------------------------------------------------------------------------- /game/bin/dxsupport.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/dxsupport.cfg -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libanimationsystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libanimationsystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libanimationsystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libengine2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libengine2_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libengine2_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libfilesystem_stdio.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libfilesystem_stdio_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libfilesystem_stdio_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libinputsystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libinputsystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libinputsystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/liblocalize.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/liblocalize_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/liblocalize_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libmaterialsystem2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libmaterialsystem2_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libmaterialsystem2_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libmeshsystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libmeshsystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libmeshsystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libnetworksystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libnetworksystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libnetworksystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libopenvr_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libopenvr_api.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libopenvr_api_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libopenvr_api_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpango-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libpango-1.0.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpango-1.0_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libpango-1.0_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpangoft2-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libpangoft2-1.0.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpangoft2-1.0_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libpangoft2-1.0_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpanorama_nov8.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpanorama_nov8_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libpanorama_nov8_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpanorama_text_pango.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libpanorama_text_pango_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libpanorama_text_pango_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libparticles.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libparticles_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libparticles_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librenderingpipelines.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librenderingpipelines_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/librenderingpipelines_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librendersystemempty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librendersystemempty_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/librendersystemempty_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librendersystemgl.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librendersystemgl_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/librendersystemgl_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librendersystemvulkan.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/librendersystemvulkan_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/librendersystemvulkan_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libresourcesystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libresourcesystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libresourcesystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libscenefilecache.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libscenefilecache_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libscenefilecache_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libscenesystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libscenesystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libscenesystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libschemasystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libschemasystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libschemasystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libsoundsystem.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libsoundsystem_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libsoundsystem_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libsteam_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libsteam_api.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libsteam_api_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libsteam_api_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libsteamnetworkingsockets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libsteamnetworkingsockets.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libsteamnetworkingsockets_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libsteamnetworkingsockets_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libtier0.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libtier0_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libtier0_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvconcomm.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvconcomm_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvconcomm_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvgui2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvgui2_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvgui2_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvguirendersurface.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvguirendersurface_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvguirendersurface_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvideo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvideo.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvideo_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvideo_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvphysics2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvphysics2_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvphysics2_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvr.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvr_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvr_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvscript.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvscript_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvscript_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvstdlib.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libvstdlib_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libvstdlib_strings.txt -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libworldrenderer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/bin/linuxsteamrt64/libworldrenderer_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/linuxsteamrt64/libworldrenderer_strings.txt -------------------------------------------------------------------------------- /game/bin/sdkassettypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/sdkassettypes.txt -------------------------------------------------------------------------------- /game/bin/sdkenginetools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/bin/sdkenginetools.txt -------------------------------------------------------------------------------- /game/core/pak01_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir.txt -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/base_world_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/base_world_panel.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/console.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/debugger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/debugger.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/debugindividualstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/debugindividualstyle.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/debuglayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/debuglayout.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/debugpanel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/debugpanel.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/debugstyleanimation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/debugstyleanimation.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/debugstyleblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/debugstyleblock.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/number_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/number_entry.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/popups/popup_generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/popups/popup_generic.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/popups/popup_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/popups/popup_manager.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/tooltip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/tooltip.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/tooltips/tooltip_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/tooltips/tooltip_base.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/layout/tooltips/tooltip_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/layout/tooltips/tooltip_text.xml -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/panorama_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/panorama_config.txt -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/base_world_panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/base_world_panel.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/debugger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/debugger.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/gamestyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/gamestyles.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/panorama_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/panorama_base.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/popups/popup_generic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/popups/popup_generic.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/popups/popup_manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/popups/popup_manager.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/popups/popups_shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/popups/popups_shared.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/tooltips/tooltip_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/tooltips/tooltip_base.css -------------------------------------------------------------------------------- /game/core/pak01_dir/panorama/styles/tooltips/tooltip_text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/panorama/styles/tooltips/tooltip_text.css -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/bugreporter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/resource/bugreporter.res -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/clientscheme.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/resource/clientscheme.res -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/colorpicker.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/resource/colorpicker.res -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/colorpickerframe.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/resource/colorpickerframe.res -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/core.gameevents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/resource/core.gameevents -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/gamemenu.res: -------------------------------------------------------------------------------- 1 | "GameMenu" 2 | { 3 | 4 | } 5 | 6 | -------------------------------------------------------------------------------- /game/core/pak01_dir/resource/sourcescheme.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/resource/sourcescheme.res -------------------------------------------------------------------------------- /game/core/pak01_dir/soundevents/soundevents_core.vsndevts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/pak01_dir/soundevents/soundevents_core.vsndevts -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_brazilian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_bulgarian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_czech.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_danish.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_dutch.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_english.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_finnish.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_french.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_german.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_greek.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_hungarian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_italian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_japanese.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_korean.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_koreana.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_latam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_latam.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_norwegian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_polish.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_portuguese.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_romanian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_russian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_schinese.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_spanish.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_swedish.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_tchinese.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_thai.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_turkish.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_ukrainian.txt -------------------------------------------------------------------------------- /game/core/panorama/localization/panorama_vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/panorama/localization/panorama_vietnamese.txt -------------------------------------------------------------------------------- /game/core/resource/dmecontrols_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/dmecontrols_english.txt -------------------------------------------------------------------------------- /game/core/resource/keybindings_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/keybindings_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_animgraph_editor_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_animgraph_editor_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_base_fgd_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_base_fgd_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_hammer_commands_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_hammer_commands_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_helpsystem_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_helpsystem_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_model_editor_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_model_editor_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_modeldoc_editor_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_modeldoc_editor_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_particles_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_particles_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_sndtool_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_sndtool_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_surfacepropertyeditor_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_surfacepropertyeditor_english.txt -------------------------------------------------------------------------------- /game/core/resource/toolhelp_vmixtool_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/toolhelp_vmixtool_english.txt -------------------------------------------------------------------------------- /game/core/resource/valve_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_brazilian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_bulgarian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_czech.txt -------------------------------------------------------------------------------- /game/core/resource/valve_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_danish.txt -------------------------------------------------------------------------------- /game/core/resource/valve_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_dutch.txt -------------------------------------------------------------------------------- /game/core/resource/valve_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_english.txt -------------------------------------------------------------------------------- /game/core/resource/valve_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_finnish.txt -------------------------------------------------------------------------------- /game/core/resource/valve_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_french.txt -------------------------------------------------------------------------------- /game/core/resource/valve_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_german.txt -------------------------------------------------------------------------------- /game/core/resource/valve_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_greek.txt -------------------------------------------------------------------------------- /game/core/resource/valve_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_hungarian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_italian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_japanese.txt -------------------------------------------------------------------------------- /game/core/resource/valve_korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_korean.txt -------------------------------------------------------------------------------- /game/core/resource/valve_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_koreana.txt -------------------------------------------------------------------------------- /game/core/resource/valve_latam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_latam.txt -------------------------------------------------------------------------------- /game/core/resource/valve_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_norwegian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_polish.txt -------------------------------------------------------------------------------- /game/core/resource/valve_portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_portuguese.txt -------------------------------------------------------------------------------- /game/core/resource/valve_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_romanian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_russian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_schinese.txt -------------------------------------------------------------------------------- /game/core/resource/valve_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_spanish.txt -------------------------------------------------------------------------------- /game/core/resource/valve_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_swedish.txt -------------------------------------------------------------------------------- /game/core/resource/valve_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_tchinese.txt -------------------------------------------------------------------------------- /game/core/resource/valve_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_thai.txt -------------------------------------------------------------------------------- /game/core/resource/valve_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_turkish.txt -------------------------------------------------------------------------------- /game/core/resource/valve_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_ukrainian.txt -------------------------------------------------------------------------------- /game/core/resource/valve_vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/valve_vietnamese.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_brazilian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_bulgarian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_czech.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_danish.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_dutch.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_english.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_finnish.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_french.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_german.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_greek.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_hungarian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_italian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_japanese.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_korean.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_koreana.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_norwegian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_polish.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_portuguese.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_romanian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_russian.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_schinese.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_spanish.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_swedish.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_tchinese.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_thai.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_turkish.txt -------------------------------------------------------------------------------- /game/core/resource/vgui_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/resource/vgui_ukrainian.txt -------------------------------------------------------------------------------- /game/core/shaders_vulkan_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/shaders_vulkan_dir.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/actionlisteditor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/actionlisteditor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/animgraph_editor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/animgraph_editor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/assetbrowser_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/assetbrowser_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/faceposer_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/faceposer_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/global_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/global_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/grapheditor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/grapheditor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/hammer_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/hammer_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/helpsystem_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/helpsystem_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/modeldoc_editor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/modeldoc_editor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/modeleditor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/modeleditor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/pet_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/pet_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/physics_debugger_keybindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/physics_debugger_keybindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/plant_tool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/plant_tool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/propertyeditor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/propertyeditor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/sample_tool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/sample_tool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/shared_tool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/shared_tool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/sndstack_tool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/sndstack_tool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/sndtool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/sndtool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/spawndebugger_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/spawndebugger_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/subrecteditor_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/subrecteditor_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/vmixtool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/vmixtool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/vohelper_tool_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/vohelper_tool_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/workshop_admin_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/workshop_admin_key_bindings.txt -------------------------------------------------------------------------------- /game/core/tools/keybindings/workshop_manager_key_bindings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/core/tools/keybindings/workshop_manager_key_bindings.txt -------------------------------------------------------------------------------- /game/dac/bin/linuxsteamrt64/libclient.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/dac/bin/linuxsteamrt64/libclient_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/bin/linuxsteamrt64/libclient_strings.txt -------------------------------------------------------------------------------- /game/dac/bin/linuxsteamrt64/libhost.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/dac/bin/linuxsteamrt64/libhost_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/bin/linuxsteamrt64/libhost_strings.txt -------------------------------------------------------------------------------- /game/dac/bin/linuxsteamrt64/libserver.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game/dac/bin/linuxsteamrt64/libserver_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/bin/linuxsteamrt64/libserver_strings.txt -------------------------------------------------------------------------------- /game/dac/gameinfo.gi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/gameinfo.gi -------------------------------------------------------------------------------- /game/dac/gameinfo_branchspecific.gi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/gameinfo_branchspecific.gi -------------------------------------------------------------------------------- /game/dac/maps/dac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_alleyway.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_alleyway.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_bc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_bc.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_bc_underlord.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_bc_underlord.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_dev.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_farm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_farm.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_forest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_forest.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_test.txt -------------------------------------------------------------------------------- /game/dac/maps/dac_townsquare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/dac_townsquare.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/hud/items_available.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/hud/items_available.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/hud/items_unassigned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/hud/items_unassigned.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/hud/profile_streak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/hud/profile_streak.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/leaderboard/streak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/leaderboard/streak.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/leaderboard/streak_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/leaderboard/streak_10.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/leaderboard/streak_10_bkg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/leaderboard/streak_10_bkg.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/leaderboard/streak_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/leaderboard/streak_5.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/leaderboard/streak_5_bkg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/leaderboard/streak_5_bkg.txt -------------------------------------------------------------------------------- /game/dac/maps/particles/leaderboard/streak_bkg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/particles/leaderboard/streak_bkg.txt -------------------------------------------------------------------------------- /game/dac/maps/prefabs/banner_positions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/prefabs/banner_positions.txt -------------------------------------------------------------------------------- /game/dac/maps/scenes/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/scenes/banner.txt -------------------------------------------------------------------------------- /game/dac/maps/scenes/bench.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/scenes/bench.txt -------------------------------------------------------------------------------- /game/dac/maps/scenes/shop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/scenes/shop.txt -------------------------------------------------------------------------------- /game/dac/maps/sfm/sfm_blackstage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/sfm/sfm_blackstage.txt -------------------------------------------------------------------------------- /game/dac/maps/ui/citycrawl/bp1_city_crawl_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/ui/citycrawl/bp1_city_crawl_map.txt -------------------------------------------------------------------------------- /game/dac/maps/ui/citycrawl/markw_temp02_bp1_city_crawl_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/ui/citycrawl/markw_temp02_bp1_city_crawl_map.txt -------------------------------------------------------------------------------- /game/dac/maps/ui/citycrawl/markw_temp_bp1_city_crawl_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/maps/ui/citycrawl/markw_temp_bp1_city_crawl_map.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_gl_gpu_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_gl_gpu_level.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_gpu_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_gpu_level.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_video_defaults_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_video_defaults_0.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_video_defaults_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_video_defaults_1.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_video_defaults_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_video_defaults_2.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_video_defaults_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_video_defaults_3.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/mobile_vulkan_gpu_level.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/mobile_vulkan_gpu_level.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/moddefaults.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/moddefaults.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/perftest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/perftest.cfg -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/video_defaults_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/video_defaults_0.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/video_defaults_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/video_defaults_1.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/video_defaults_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/video_defaults_2.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/video_defaults_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/video_defaults_3.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/cfg/video_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/cfg/video_version.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/expressions/underlords/anessix/phonemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/expressions/underlords/anessix/phonemes.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/expressions/underlords/hobgen/phonemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/expressions/underlords/hobgen/phonemes.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/expressions/underlords/jull/phonemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/expressions/underlords/jull/phonemes.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/expressions/underlords/phonemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/expressions/underlords/phonemes.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/banners/banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/banners/banner.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/carousel_nav.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/carousel_nav.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/contextmenu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/contextmenu.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_dashboard_root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_dashboard_root.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_control_rank.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_control_rank.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_credits.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_heropedia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_heropedia.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_home.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_loadout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_loadout.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_patchnotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_patchnotes.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_play.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_postgame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_postgame.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_profile.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_settings.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_underlords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_underlords.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_db_page_zoo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_db_page_zoo.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_gameui_root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_gameui_root.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_achievement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_achievement.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_banner_paintin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_banner_paintin.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_battlepass_level.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_battlepass_level.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_challenge_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_challenge_map.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_chat_wheel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_chat_wheel.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_daily_challenge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_daily_challenge.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_dashboard_talent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_dashboard_talent.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_dps_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_dps_chart.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_equip_control.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_equip_control.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_friend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_friend.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_friend_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_friend_menu.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_friend_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_friend_picker.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_hud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_hud.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_hud_item_display.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_hud_item_display.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_hud_player_icons.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_hud_player_icons.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_hud_top_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_hud_top_bar.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_hud_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_hud_tutorial.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_inventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_inventory.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_inventory_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_inventory_item.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_item_select.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_item_select.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_leaderboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_leaderboard.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_leaderboard_duos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_leaderboard_duos.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_main.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_map_prop_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_map_prop_list.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_match_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_match_intro.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_match_over.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_match_over.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_miniprofile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_miniprofile.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_nonogram_puzzle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_nonogram_puzzle.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_notifications.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_party.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_party.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_party_invite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_party_invite.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_party_member.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_party_member.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_player_avatar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_player_avatar.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_post_game_stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_post_game_stats.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_histogram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_histogram.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_intro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_intro.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_rules.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_shop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_shop.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_puzzle_status.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_rank_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_rank_icon.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_rewards_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_rewards_about.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_round_over.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_round_over.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_round_start.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_round_start.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_scoreboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_scoreboard.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_scoreboard_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_scoreboard_entry.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_sell_unit_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_sell_unit_bar.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_send_unit_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_send_unit_bar.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_settings_panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_settings_panel.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_shop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_shop.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_synergy_capsule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_synergy_capsule.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_synergy_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_synergy_icon.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_talent_browser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_talent_browser.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_talent_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_talent_card.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_talent_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_talent_selector.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_turbo_shop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_turbo_shop.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_underlord_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_underlord_config.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_underlord_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_underlord_picker.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_underlord_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_underlord_status.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_unit_modifiers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_unit_modifiers.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_unit_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_unit_status.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_vs_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_vs_screen.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_weekly_challenge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_weekly_challenge.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_ui_zoo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_ui_zoo.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_wanted_poster_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_wanted_poster_title.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_world_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_world_debug.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/dac_world_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/dac_world_main.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/movie.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_ability.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_ability.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_about_duos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_about_duos.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_equip_slot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_equip_slot.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_gems.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_gems.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_generic.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_hero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_hero.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_hero_odds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_hero_odds.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_heropedia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_heropedia.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_item.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_join_party.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_join_party.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_manager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_manager.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_movie.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_rankup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_rankup.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_reward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_reward.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_settings.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/popup_synergy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/popup_synergy.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/settings_enum.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/settings_enum.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/popups/settings_slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/popups/settings_slider.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/settings_keybinder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/settings_keybinder.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/tooltips/tooltip_hero.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/tooltips/tooltip_hero.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/tooltips/tooltip_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/tooltips/tooltip_item.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/tooltips/tooltip_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/tooltips/tooltip_player.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/tooltips/tooltip_status.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/tooltips/tooltip_status.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/layout/tooltips/tooltip_xp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/layout/tooltips/tooltip_xp.xml -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/banners/banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/banners/banner.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/carousel_nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/carousel_nav.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_control_rank.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_control_rank.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_credits.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_credits.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_heropedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_heropedia.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_home.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_loadout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_loadout.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_patchnotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_patchnotes.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_play.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_play.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_postgame.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_postgame.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_profile.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_settings.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_underlords.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_underlords.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_db_page_zoo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_db_page_zoo.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_global.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ricky_shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ricky_shared.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_achievement.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_achievement.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_banner_paintin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_banner_paintin.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_battlepass_level.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_battlepass_level.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_challenge_map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_challenge_map.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_chat_wheel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_chat_wheel.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_dps_chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_dps_chart.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_equip_control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_equip_control.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_friend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_friend.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_friend_menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_friend_menu.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_friend_picker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_friend_picker.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_hud.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_hud.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_hud_item_display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_hud_item_display.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_hud_player_icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_hud_player_icons.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_hud_top_bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_hud_top_bar.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_hud_tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_hud_tutorial.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_inventory.css: -------------------------------------------------------------------------------- 1 | DACInventory 2 | { 3 | flow-children: right; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_inventory_item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_inventory_item.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_item_select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_item_select.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_leaderboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_leaderboard.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_leaderboard_duos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_leaderboard_duos.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_main.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_map_prop_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_map_prop_list.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_match_intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_match_intro.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_match_over.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_match_over.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_miniprofile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_miniprofile.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_nonogram_puzzle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_nonogram_puzzle.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_notifications.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_notifications.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_party.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_party.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_party_invite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_party_invite.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_party_member.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_party_member.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_player_avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_player_avatar.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_intro.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_rules.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_shop.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_puzzle_status.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_rank_icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_rank_icon.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_round_over.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_round_over.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_round_start.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_round_start.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_scoreboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_scoreboard.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_sell_unit_bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_sell_unit_bar.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_send_unit_bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_send_unit_bar.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_settings_panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_settings_panel.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_shop.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_synergy_icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_synergy_icon.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_talent_card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_talent_card.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_turbo_shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_turbo_shop.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_underlord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_underlord.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_unit_modifiers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_unit_modifiers.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_unit_status.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_unit_status.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_vs_screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_vs_screen.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_ui_zoo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_ui_zoo.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_world_debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_world_debug.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/dac_world_main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/dac_world_main.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/gamestyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/gamestyles.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/gamestyles_staging.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/gamestyles_staging.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/movie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/movie.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_ability.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_ability.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_gems.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_gems.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_generic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_generic.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_hero.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_item.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_manager.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_movie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_movie.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_rankup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_rankup.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_reward.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_reward.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_settings.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popup_synergy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popup_synergy.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/popups_shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/popups_shared.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/popups/settings_enum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/popups/settings_enum.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/settings_keybinder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/settings_keybinder.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/tooltips/tooltip_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/tooltips/tooltip_base.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/tooltips/tooltip_hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/tooltips/tooltip_hero.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/tooltips/tooltip_item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/tooltips/tooltip_item.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/tooltips/tooltip_text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/tooltips/tooltip_text.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/panorama/styles/tooltips/tooltip_xp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/panorama/styles/tooltips/tooltip_xp.css -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/game-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/game-icon.png -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/game.gameevents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/game.gameevents -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_brazilian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_bulgarian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_czech.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_danish.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_dutch.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_english.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_finnish.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_french.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_german.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_greek.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_hungarian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_italian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_japanese.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_koreana.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_latam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_latam.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_norwegian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_polish.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_romanian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_russian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_schinese.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_spanish.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_swedish.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_tchinese.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_thai.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_turkish.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/localization/items_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/localization/items_ukrainian.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/resource/port.gameevents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/resource/port.gameevents -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/botsdefs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/botsdefs.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/botsdifficultylevels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/botsdifficultylevels.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/botspersonalities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/botspersonalities.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/chat_wheel_lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/chat_wheel_lines.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/credits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/credits.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/decals_subrect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/decals_subrect.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/emoticons.txt: -------------------------------------------------------------------------------- 1 | "emoticons" 2 | { 3 | // An ID of zero is invalid 4 | } 5 | -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events/season_00_battle_pass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events/season_00_battle_pass.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events/season_00_challenges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events/season_00_challenges.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events/season_00_underlords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events/season_00_underlords.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events/season_02_battle_pass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events/season_02_battle_pass.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events/season_02_challenges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events/season_02_challenges.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/events/season_02_underlords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/events/season_02_underlords.json -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/items/items_game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/items/items_game.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/itemtest_manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/itemtest_manifest.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/item_portraits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/item_portraits.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/npc_abilities.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/npc_abilities.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/npc_heroes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/npc_heroes.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/npc_units.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/npc_units.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/portraits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/portraits.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/portraits_underlords_hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/portraits_underlords_hud.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/npc/portraits_vs_radiant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/npc/portraits_vs_radiant.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/propdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/propdata.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/regions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/regions.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/soundmixers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/soundmixers.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/soundscapes_manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/soundscapes_manifest.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/response_rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/response_rules.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/response_rules_anessix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/response_rules_anessix.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/response_rules_enno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/response_rules_enno.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/response_rules_hobgen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/response_rules_hobgen.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/response_rules_jull.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/response_rules_jull.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/abaddon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/abaddon.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/alchemist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/alchemist.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/antimage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/antimage.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/arc_warden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/arc_warden.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/axe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/axe.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/bat_rider.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/bat_rider.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/beastmaster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/beastmaster.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/bloodseeker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/bloodseeker.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/bounty_hunter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/bounty_hunter.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/bristleback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/bristleback.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/broodmother.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/broodmother.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/chaos_knight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/chaos_knight.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/clockwerk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/clockwerk.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/crystal_maiden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/crystal_maiden.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/dazzle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/dazzle.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/death_prophet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/death_prophet.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/disruptor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/disruptor.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/doom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/doom.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/dragon_knight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/dragon_knight.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/drow_ranger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/drow_ranger.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/earth_spirit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/earth_spirit.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/ember_spirit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/ember_spirit.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/enchantress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/enchantress.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/enigma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/enigma.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/faceless_void.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/faceless_void.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/furion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/furion.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/gyrocopter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/gyrocopter.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/juggernaut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/juggernaut.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/kunkka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/kunkka.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/legion_commander.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/legion_commander.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/lich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/lich.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/life_stealer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/life_stealer.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/lina.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/lina.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/lone_druid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/lone_druid.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/luna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/luna.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/lycan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/lycan.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/magnus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/magnus.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/medusa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/medusa.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/meepo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/meepo.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/mirana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/mirana.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/morphling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/morphling.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/necrophos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/necrophos.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/nyx_assassin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/nyx_assassin.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/ogre_magi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/ogre_magi.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/omniknight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/omniknight.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/pangolier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/pangolier.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/phantom_assassin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/phantom_assassin.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/puck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/puck.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/pudge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/pudge.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/queen_of_pain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/queen_of_pain.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/razor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/razor.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/rubick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/rubick.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/sandking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/sandking.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/shadow_demon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/shadow_demon.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/shadow_shaman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/shadow_shaman.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/shadowfiend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/shadowfiend.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/slardar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/slardar.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/slark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/slark.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/snapfire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/snapfire.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/sniper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/sniper.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/spectre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/spectre.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/spirit_breaker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/spirit_breaker.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/storm_spirit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/storm_spirit.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/sven.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/sven.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/techies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/techies.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/templar_assassin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/templar_assassin.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/terrorblade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/terrorblade.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/tidehunter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/tidehunter.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/timbersaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/timbersaw.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/tinker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/tinker.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/tiny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/tiny.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/treant_protector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/treant_protector.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/troll_warlord.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/troll_warlord.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/tusk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/tusk.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/vengeful_spirit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/vengeful_spirit.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/venomancer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/venomancer.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/viper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/viper.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/void_spirit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/void_spirit.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/warlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/warlock.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/weaver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/weaver.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/wind_ranger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/wind_ranger.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/witch_doctor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/witch_doctor.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/talker/units/wraith_king.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/scripts/talker/units/wraith_king.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/scripts/urls.json: -------------------------------------------------------------------------------- 1 | { 2 | "trailer": "http://www.youtube.com/watch?v=m9MqIzmWG24" 3 | } 4 | -------------------------------------------------------------------------------- /game/dac/pak01_dir/soundevents/ui/game_sounds_ui.vsndevts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/soundevents/ui/game_sounds_ui.vsndevts -------------------------------------------------------------------------------- /game/dac/pak01_dir/soundevents/vfx/game_sounds_vfx.vsndevts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/soundevents/vfx/game_sounds_vfx.vsndevts -------------------------------------------------------------------------------- /game/dac/pak01_dir/soundstacks/sosstrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/soundstacks/sosstrings.txt -------------------------------------------------------------------------------- /game/dac/pak01_dir/soundstacks/soundstacks_dac_core.vsndstck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/soundstacks/soundstacks_dac_core.vsndstck -------------------------------------------------------------------------------- /game/dac/pak01_dir/soundstacks/soundstacks_dcg_core.vsndstck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/soundstacks/soundstacks_dcg_core.vsndstck -------------------------------------------------------------------------------- /game/dac/pak01_dir/toolscenelightrigs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/pak01_dir/toolscenelightrigs.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_brazilian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_bulgarian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_czech.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_danish.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_dutch.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_english.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_finnish.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_french.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_german.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_greek.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_hungarian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_italian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_japanese.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_koreana.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_latam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_latam.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_norwegian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_polish.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_portuguese.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_romanian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_russian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_schinese.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_spanish.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_swedish.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_tchinese.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_thai.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_turkish.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_ukrainian.txt -------------------------------------------------------------------------------- /game/dac/panorama/localization/dac_vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/panorama/localization/dac_vietnamese.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_brazilian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_brazilian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_bulgarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_bulgarian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_czech.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_czech.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_danish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_danish.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_dutch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_dutch.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_english.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_english.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_finnish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_finnish.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_french.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_french.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_german.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_german.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_greek.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_greek.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_hungarian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_hungarian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_italian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_italian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_japanese.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_koreana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_koreana.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_latam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_latam.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_norwegian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_norwegian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_polish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_polish.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_portuguese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_portuguese.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_romanian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_romanian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_russian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_russian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_schinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_schinese.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_spanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_spanish.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_swedish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_swedish.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_tchinese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_tchinese.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_thai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_thai.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_turkish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_turkish.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_ukrainian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_ukrainian.txt -------------------------------------------------------------------------------- /game/dac/resource/dac_common_vietnamese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/resource/dac_common_vietnamese.txt -------------------------------------------------------------------------------- /game/dac/shaders_vulkan_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/shaders_vulkan_dir.txt -------------------------------------------------------------------------------- /game/dac/steam.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac/steam.inf -------------------------------------------------------------------------------- /game/dac_desktop/gameinfo.gi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac_desktop/gameinfo.gi -------------------------------------------------------------------------------- /game/dac_desktop/pak01_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/dac_desktop/pak01_dir.txt -------------------------------------------------------------------------------- /game/thirdpartylegalnotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/game/thirdpartylegalnotices.txt -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/GameTracking-Underlords/HEAD/update.sh --------------------------------------------------------------------------------