diff --git a/src/cup.c b/src/cup.c index b5392ba1..c4eb6c4a 100644 --- a/src/cup.c +++ b/src/cup.c @@ -69,6 +69,7 @@ cup_new(gboolean new_id) new.team_names = g_ptr_array_new(); new.fixtures = g_array_new(FALSE, FALSE, sizeof(Fixture)); new.week_breaks = g_array_new(FALSE, FALSE, sizeof(WeekBreak)); + new.skip_weeks_with = g_ptr_array_new(); new.bye = g_ptr_array_new(); new.properties = g_ptr_array_new(); @@ -212,6 +213,7 @@ cup_get_choose_team_league_cup(const CupChooseTeam *ct, gint i, idx; gchar trash[SMALL]; + gchar prefix[SMALL]; *league = NULL; *cup = NULL; @@ -230,9 +232,15 @@ cup_get_choose_team_league_cup(const CupChooseTeam *ct, } else { + if(g_str_has_suffix(ct->sid, "*")) + g_utf8_strncpy(prefix, ct->sid, g_utf8_strlen(ct->sid, -1) - 1); + else + strcpy(prefix, "NONAME"); + for(i=0;ilen;i++) { - if(strcmp(lig(i).sid, ct->sid) == 0) + if(strcmp(lig(i).sid, ct->sid) == 0 || + g_str_has_prefix(lig(i).sid, prefix)) { *league = &lig(i); *cup = NULL; @@ -242,7 +250,8 @@ cup_get_choose_team_league_cup(const CupChooseTeam *ct, for(i=0;ilen;i++) { - if(strcmp(cp(i).sid, ct->sid) == 0) + if(strcmp(cp(i).sid, ct->sid) == 0 || + g_str_has_prefix(cp(i).sid, prefix)) { *cup = &cp(i); *league = NULL; @@ -255,6 +264,13 @@ cup_get_choose_team_league_cup(const CupChooseTeam *ct, main_exit_program(EXIT_CHOOSE_TEAM_ERROR, "cup_get_choose_team_league_cup: no league nor cup found for chooseteam %s", ct->sid); + if(debug > 100) + { + if(*league == NULL) + printf("cup_get_choose_team_league_cup: sid %s cup %s\n", ct->sid, (*cup)->name); + else + printf("cup_get_choose_team_league_cup: sid %s league %s\n", ct->sid, (*league)->name); + } } /** Load the pointers to the teams participating in the @@ -1245,12 +1261,20 @@ gboolean cup_round_check_waits(const CupRound *cup_round) { gint i, j, k; + gchar prefix[SMALL]; for(i = 0; i < cup_round->waits->len; i++) { + if(g_str_has_suffix(g_array_index(cup_round->waits, CupRoundWait, i).cup_sid, "*")) + g_utf8_strncpy(prefix, g_array_index(cup_round->waits, CupRoundWait, i).cup_sid, + g_utf8_strlen(g_array_index(cup_round->waits, CupRoundWait, i).cup_sid, -1) - 1); + else + strcpy(prefix, "NONAME"); + for(j = 0; j < acps->len; j++) { - if(strcmp(acp(j)->sid, g_array_index(cup_round->waits, CupRoundWait, i).cup_sid) == 0) + if(strcmp(acp(j)->sid, g_array_index(cup_round->waits, CupRoundWait, i).cup_sid) == 0 || + g_str_has_prefix(acp(j)->sid, prefix)) { /* Cup round we're waiting for isn't even reached. */ if(g_array_index(acp(j)->fixtures, Fixture, acp(j)->fixtures->len - 1).round < diff --git a/src/cup_struct.h b/src/cup_struct.h index dd723517..bc040e69 100644 --- a/src/cup_struct.h +++ b/src/cup_struct.h @@ -199,6 +199,10 @@ typedef struct GArray *fixtures; /** Array of custom breaks in schedule. */ GArray *week_breaks; + /** Pointer array with the sids of competitions that + the fixtures of which should be avoided when scheduling + the cup fixtures. */ + GPtrArray *skip_weeks_with; } Cup; #endif diff --git a/src/free.c b/src/free.c index d6ad2de9..032d8990 100644 --- a/src/free.c +++ b/src/free.c @@ -382,6 +382,8 @@ free_league(League *league) free_gchar_ptr(league->symbol); free_gchar_ptr(league->sid); + free_gchar_array(&league->skip_weeks_with); + if(league->teams != NULL) free_teams_array(&league->teams, FALSE); @@ -642,6 +644,8 @@ free_cup(Cup *cup) free_gchar_ptr(cup->symbol); free_gchar_ptr(cup->sid); + free_gchar_array(&cup->skip_weeks_with); + for(i=0;irounds->len;i++) free_cup_round(&g_array_index(cup->rounds, CupRound, i)); free_g_array(&cup->rounds); diff --git a/src/league.c b/src/league.c index 86d866f6..622a6406 100644 --- a/src/league.c +++ b/src/league.c @@ -71,6 +71,7 @@ league_new(gboolean new_id) new.new_tables = g_array_new(FALSE, FALSE, sizeof(NewTable)); new.tables = g_array_new(FALSE, FALSE, sizeof(Table)); new.properties = g_ptr_array_new(); + new.skip_weeks_with = g_ptr_array_new(); new.rr_breaks = g_array_new(FALSE, FALSE, sizeof(gint)); new.week_breaks = g_array_new(FALSE, FALSE, sizeof(WeekBreak)); diff --git a/src/league_struct.h b/src/league_struct.h index cb0c129f..340731b9 100644 --- a/src/league_struct.h +++ b/src/league_struct.h @@ -180,6 +180,10 @@ typedef struct GArray *week_breaks; /** The current league statistics. */ LeagueStat stats; + /** Pointer array with the sids of competitions that + the fixtures of which should be avoided when scheduling + the league fixtures. */ + GPtrArray *skip_weeks_with; } League; #endif diff --git a/src/misc.c b/src/misc.c index 013b2eec..e034117d 100644 --- a/src/misc.c +++ b/src/misc.c @@ -709,6 +709,7 @@ misc_parse_condition(const gchar *condition, GPtrArray **token_rep) while(g_strrstr(buf, "(")) { misc_string_get_parenthesised(buf, buf2); + if(misc_parse_condition(buf2, token_rep)) misc_string_replace_parenthesised(buf, buf2, "1 = 1"); else diff --git a/src/news.c b/src/news.c index 97032d21..586bcddc 100644 --- a/src/news.c +++ b/src/news.c @@ -745,12 +745,12 @@ news_set_fixture_tokens(const Fixture *fix) if(first_leg != NULL) goaldiffaggr = ABS(fix->result[0][0] + fix->result[0][1] + first_leg->result[1][0] - fix->result[1][0] - fix->result[1][1] - first_leg->result[0][0]); - - misc_token_add(token_rep_news, - option_int("string_token_goal_diff_aggregate", &tokens), - misc_int_to_char(goaldiffaggr)); } + misc_token_add(token_rep_news, + option_int("string_token_goal_diff_aggregate", &tokens), + misc_int_to_char(goaldiffaggr)); + misc_token_add(token_rep_news, option_int("string_token_team_home", &tokens), g_strdup(fix->teams[0]->name)); diff --git a/src/start_end.c b/src/start_end.c index 2c04ca44..49a96e65 100644 --- a/src/start_end.c +++ b/src/start_end.c @@ -178,8 +178,10 @@ start_new_season(void) if(query_league_active(&lig(i))) fixture_write_league_fixtures(&lig(i)); -/* for(i=cps->len - 1; i >= 0; i--) */ - for(i = 0; i < cps->len; i++) + /* Loop backwards because the national cup is usually + the first the results are often still + needed for the international cups. */ + for(i=cps->len - 1; i >= 0; i--) { if(cp(i).add_week >= 0) { diff --git a/src/treeview.c b/src/treeview.c index 6f3be80e..9513f4bc 100644 --- a/src/treeview.c +++ b/src/treeview.c @@ -1806,7 +1806,7 @@ treeview_create_next_opponent(void) strcpy(buf, league_cup_get_name_string(fix->clid)); else sprintf(buf, "%s (%s)", league_cup_get_name_string(fix->clid), - g_array_index(cup_from_clid(fix->clid)->rounds, CupRound, cup_from_clid(fix->clid)->rounds->len - 1).name); + g_array_index(cup_from_clid(fix->clid)->rounds, CupRound, fix->round).name); gtk_list_store_append(ls, &iter); gtk_list_store_set(ls, &iter, 0, _("Your next opponent"), 1, buf, -1); diff --git a/src/xml.h b/src/xml.h index 50d4833f..eb4b7f66 100644 --- a/src/xml.h +++ b/src/xml.h @@ -52,6 +52,7 @@ enum XmlTags TAG_WEEK_GAP, TAG_WEEK_BREAK, TAG_WEEK_BREAK_LENGTH, + TAG_SKIP_WEEKS_WITH, TAG_YELLOW_RED, TAG_TEAM_ID, TAG_NAMES_FILE, @@ -68,6 +69,7 @@ enum XmlTags #define TAG_DEF_YELLOW_RED "yellow_red" #define TAG_DEF_WEEK_BREAK "break_in" #define ATT_DEF_NAME_WEEK_BREAK_LENGTH "length" +#define TAG_DEF_SKIP_WEEKS_WITH "skip_weeks_with" /** Starting values for tag enums in the various xml loading source files. */ #define TAG_START_MISC 1000 diff --git a/src/xml_cup.c b/src/xml_cup.c index 9e1a5315..684f9eb5 100644 --- a/src/xml_cup.c +++ b/src/xml_cup.c @@ -90,6 +90,7 @@ enum XmlCupStates STATE_ADD_WEEK, STATE_WEEK_GAP, STATE_WEEK_BREAK, + STATE_SKIP_WEEKS_WITH, STATE_YELLOW_RED, STATE_TALENT_DIFF, STATE_CUP_ROUNDS, @@ -186,6 +187,8 @@ xml_cup_read_start_element (GMarkupParseContext *context, else new_week_break.length = -1000; } + else if(strcmp(element_name, TAG_DEF_SKIP_WEEKS_WITH) == 0) + state = STATE_SKIP_WEEKS_WITH; else if(strcmp(element_name, TAG_DEF_YELLOW_RED) == 0) state = STATE_YELLOW_RED; else if(strcmp(element_name, TAG_TALENT_DIFF) == 0) @@ -294,6 +297,7 @@ xml_cup_read_end_element (GMarkupParseContext *context, strcmp(element_name, TAG_DEF_PROPERTY) == 0 || strcmp(element_name, TAG_ADD_WEEK) == 0 || strcmp(element_name, TAG_DEF_WEEK_GAP) == 0 || + strcmp(element_name, TAG_DEF_SKIP_WEEKS_WITH) == 0 || strcmp(element_name, TAG_DEF_YELLOW_RED) == 0 || strcmp(element_name, TAG_TALENT_DIFF) == 0 || strcmp(element_name, TAG_CUP_ROUNDS) == 0) @@ -403,6 +407,8 @@ xml_cup_read_text (GMarkupParseContext *context, new_cup.week_gap = int_value; else if(state == STATE_WEEK_BREAK) new_week_break.week_number = int_value; + else if(state == STATE_SKIP_WEEKS_WITH) + g_ptr_array_add(new_cup.skip_weeks_with, g_strdup(buf)); else if(state == STATE_YELLOW_RED) new_cup.yellow_red = int_value; else if(state == STATE_TALENT_DIFF) diff --git a/src/xml_league.c b/src/xml_league.c index c82e97f2..74294714 100644 --- a/src/xml_league.c +++ b/src/xml_league.c @@ -87,6 +87,7 @@ enum XmlLeagueStates STATE_FIRST_WEEK, STATE_WEEK_GAP, STATE_WEEK_BREAK, + STATE_SKIP_WEEKS_WITH, STATE_ROUND_ROBINS, STATE_YELLOW_RED, STATE_AVERAGE_TALENT, @@ -181,6 +182,8 @@ xml_league_read_start_element (GMarkupParseContext *context, g_array_append_val(new_league.week_breaks, new_week_break); } + else if(strcmp(element_name, TAG_DEF_SKIP_WEEKS_WITH) == 0) + state = STATE_SKIP_WEEKS_WITH; else if(strcmp(element_name, TAG_ROUND_ROBINS) == 0) state = STATE_ROUND_ROBINS; else if(strcmp(element_name, TAG_DEF_YELLOW_RED) == 0) @@ -300,6 +303,7 @@ xml_league_read_end_element (GMarkupParseContext *context, strcmp(element_name, TAG_FIRST_WEEK) == 0 || strcmp(element_name, TAG_DEF_WEEK_GAP) == 0 || strcmp(element_name, TAG_DEF_WEEK_BREAK) == 0 || + strcmp(element_name, TAG_DEF_SKIP_WEEKS_WITH) == 0 || strcmp(element_name, TAG_ROUND_ROBINS) == 0 || strcmp(element_name, TAG_DEF_YELLOW_RED) == 0 || strcmp(element_name, TAG_AVERAGE_TALENT) == 0 || @@ -384,6 +388,8 @@ xml_league_read_text (GMarkupParseContext *context, else if(state == STATE_WEEK_BREAK) g_array_index(new_league.week_breaks, WeekBreak, new_league.week_breaks->len - 1).week_number = int_value; + else if(state == STATE_SKIP_WEEKS_WITH) + g_ptr_array_add(new_league.skip_weeks_with, g_strdup(buf)); else if(state == STATE_ROUND_ROBINS) new_league.round_robins = int_value; else if(state == STATE_YELLOW_RED) diff --git a/src/xml_loadsave_league.c b/src/xml_loadsave_league.c index 60f1dc01..1480c4b0 100644 --- a/src/xml_loadsave_league.c +++ b/src/xml_loadsave_league.c @@ -164,6 +164,7 @@ xml_loadsave_league_end_element (GMarkupParseContext *context, tag == TAG_WEEK_GAP || tag == TAG_WEEK_BREAK || tag == TAG_WEEK_BREAK_LENGTH || + tag == TAG_SKIP_WEEKS_WITH || tag == TAG_YELLOW_RED || tag == TAG_LEAGUE_PROM_REL) state = TAG_LEAGUE; @@ -249,6 +250,8 @@ xml_loadsave_league_text (GMarkupParseContext *context, new_week_break.length = int_value; g_array_append_val(new_league->week_breaks, new_week_break); } + else if(state == TAG_SKIP_WEEKS_WITH) + g_ptr_array_add(new_league->skip_weeks_with, g_strdup(buf)); else if(state == TAG_YELLOW_RED) new_league->yellow_red = int_value; else if(state == TAG_LEAGUE_BREAK) @@ -381,6 +384,10 @@ xml_loadsave_league_write(const gchar *prefix, const League *league) xml_write_string(fil, (gchar*)g_ptr_array_index(league->properties, i), TAG_PROPERTY, I0); + for(i = 0; i < league->skip_weeks_with->len; i++) + xml_write_string(fil, (gchar*)g_ptr_array_index(league->skip_weeks_with, i), + TAG_SKIP_WEEKS_WITH, I0); + xml_write_int(fil, league->id, TAG_ID, I0); xml_write_int(fil, league->layer, TAG_LEAGUE_LAYER, I0); xml_write_int(fil, league->first_week, TAG_LEAGUE_FIRST_WEEK, I0); diff --git a/support_files/definitions/europe/andorra/country_andorra.xml b/support_files/definitions/europe/andorra/country_andorra.xml index a6a03a2b..af0f33a5 100755 --- a/support_files/definitions/europe/andorra/country_andorra.xml +++ b/support_files/definitions/europe/andorra/country_andorra.xml @@ -12,8 +12,8 @@ andorra_cup - europe_uefa europe_champ_league + europe_uefa1 supercup_europe_uefa supercup_europe_intercontinental andorra_supercup diff --git a/support_files/definitions/europe/armenia/country_armenia.xml b/support_files/definitions/europe/armenia/country_armenia.xml index 0eb29a51..19ec1278 100755 --- a/support_files/definitions/europe/armenia/country_armenia.xml +++ b/support_files/definitions/europe/armenia/country_armenia.xml @@ -11,8 +11,8 @@ - europe_uefa europe_champ_league + europe_uefa supercup_league_vs_cup supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/austria/country_austria.xml b/support_files/definitions/europe/austria/country_austria.xml index afaccf87..919aadd5 100644 --- a/support_files/definitions/europe/austria/country_austria.xml +++ b/support_files/definitions/europe/austria/country_austria.xml @@ -24,8 +24,8 @@ austria_cup + europe_champ_league1a europe_uefa - europe_champ_league supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/azerbaijan/country_azerbaijan.xml b/support_files/definitions/europe/azerbaijan/country_azerbaijan.xml index d143104b..51289dda 100755 --- a/support_files/definitions/europe/azerbaijan/country_azerbaijan.xml +++ b/support_files/definitions/europe/azerbaijan/country_azerbaijan.xml @@ -12,8 +12,8 @@ azerbaijan_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/belarus/country_belarus.xml b/support_files/definitions/europe/belarus/country_belarus.xml index db24149a..cfe688ff 100755 --- a/support_files/definitions/europe/belarus/country_belarus.xml +++ b/support_files/definitions/europe/belarus/country_belarus.xml @@ -12,8 +12,8 @@ belarus_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/belgium/country_belgium.xml b/support_files/definitions/europe/belgium/country_belgium.xml index e797d3c2..01b149de 100644 --- a/support_files/definitions/europe/belgium/country_belgium.xml +++ b/support_files/definitions/europe/belgium/country_belgium.xml @@ -18,8 +18,8 @@ belgium_beker - europe_uefa - europe_champ_league + europe_champ_league2 + europe_uefa2a supercup_europe_uefa supercup_europe_intercontinental belgium_supercup diff --git a/support_files/definitions/europe/bosnia_herzegovina/country_bosnia_herzegovina.xml b/support_files/definitions/europe/bosnia_herzegovina/country_bosnia_herzegovina.xml index 7924f864..de139489 100755 --- a/support_files/definitions/europe/bosnia_herzegovina/country_bosnia_herzegovina.xml +++ b/support_files/definitions/europe/bosnia_herzegovina/country_bosnia_herzegovina.xml @@ -13,8 +13,8 @@ bosnia_herzegovina_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/bulgaria/country_bulgaria.xml b/support_files/definitions/europe/bulgaria/country_bulgaria.xml index f07d562d..a1a798f0 100644 --- a/support_files/definitions/europe/bulgaria/country_bulgaria.xml +++ b/support_files/definitions/europe/bulgaria/country_bulgaria.xml @@ -17,8 +17,8 @@ bulgaria_national - europe_uefa - europe_champ_league + europe_champ_league1b + europe_uefa3b supercup_bulgaria supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/croatia/country_croatia.xml b/support_files/definitions/europe/croatia/country_croatia.xml index c4237dfd..5f04269e 100755 --- a/support_files/definitions/europe/croatia/country_croatia.xml +++ b/support_files/definitions/europe/croatia/country_croatia.xml @@ -15,8 +15,8 @@ croatia_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental croatia_supercup diff --git a/support_files/definitions/europe/cyprus/country_cyprus.xml b/support_files/definitions/europe/cyprus/country_cyprus.xml index cc8f642a..71c5e184 100755 --- a/support_files/definitions/europe/cyprus/country_cyprus.xml +++ b/support_files/definitions/europe/cyprus/country_cyprus.xml @@ -12,8 +12,8 @@ cyprus_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental cyprus_supercup diff --git a/support_files/definitions/europe/czech/country_czech.xml b/support_files/definitions/europe/czech/country_czech.xml index e6035fba..14302c01 100644 --- a/support_files/definitions/europe/czech/country_czech.xml +++ b/support_files/definitions/europe/czech/country_czech.xml @@ -14,8 +14,8 @@ czech_cup - europe_uefa - europe_champ_league + europe_champ_league2 + europe_uefa2a supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/denmark/country_denmark.xml b/support_files/definitions/europe/denmark/country_denmark.xml index 0bf8854e..4c95eed6 100755 --- a/support_files/definitions/europe/denmark/country_denmark.xml +++ b/support_files/definitions/europe/denmark/country_denmark.xml @@ -17,8 +17,8 @@ denmark_cup - europe_uefa - europe_champ_league + europe_champ_league1a + europe_uefa3d supercup_europe_uefa supercup_europe_intercontinental denmark_prom_games2 diff --git a/support_files/definitions/europe/england/country_england.xml b/support_files/definitions/europe/england/country_england.xml index 3d0dedee..6b75144f 100644 --- a/support_files/definitions/europe/england/country_england.xml +++ b/support_files/definitions/europe/england/country_england.xml @@ -16,8 +16,8 @@ england_fa england_league - europe_uefa - europe_champ_league + europe_champ_league4 + europe_uefa3e supercup_europe_uefa supercup_europe_intercontinental england_league_vs_cup diff --git a/support_files/definitions/europe/estonia/country_estonia.xml b/support_files/definitions/europe/estonia/country_estonia.xml index 27f00ffc..a69d2646 100755 --- a/support_files/definitions/europe/estonia/country_estonia.xml +++ b/support_files/definitions/europe/estonia/country_estonia.xml @@ -18,8 +18,8 @@ estonia_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental estonia_supercup diff --git a/support_files/definitions/europe/faroe_islands/country_faroe_islands.xml b/support_files/definitions/europe/faroe_islands/country_faroe_islands.xml index 84817a5a..7ad866c6 100755 --- a/support_files/definitions/europe/faroe_islands/country_faroe_islands.xml +++ b/support_files/definitions/europe/faroe_islands/country_faroe_islands.xml @@ -13,8 +13,8 @@ faroe_islands_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/finland/country_finland.xml b/support_files/definitions/europe/finland/country_finland.xml index e36cd814..43fbc8d5 100755 --- a/support_files/definitions/europe/finland/country_finland.xml +++ b/support_files/definitions/europe/finland/country_finland.xml @@ -15,8 +15,8 @@ finland_suomen_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental finland_prom_games1 diff --git a/support_files/definitions/europe/france/country_france.xml b/support_files/definitions/europe/france/country_france.xml index 0b993bde..20deccdc 100644 --- a/support_files/definitions/europe/france/country_france.xml +++ b/support_files/definitions/europe/france/country_france.xml @@ -26,8 +26,8 @@ france_coupe france_ligue - europe_uefa - europe_champ_league + europe_champ_league3 + europe_uefa3f supercup_europe_uefa supercup_europe_intercontinental france_supercup diff --git a/support_files/definitions/europe/fyr_macedonia/country_fyr_macedonia.xml b/support_files/definitions/europe/fyr_macedonia/country_fyr_macedonia.xml index 0ecc7d2f..7ddb2128 100755 --- a/support_files/definitions/europe/fyr_macedonia/country_fyr_macedonia.xml +++ b/support_files/definitions/europe/fyr_macedonia/country_fyr_macedonia.xml @@ -18,8 +18,8 @@ fyr_macedonia_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental fyr_macedonia_prom_games1 diff --git a/support_files/definitions/europe/germany/country_germany.xml b/support_files/definitions/europe/germany/country_germany.xml index 9c0545ac..54f8d9f5 100644 --- a/support_files/definitions/europe/germany/country_germany.xml +++ b/support_files/definitions/europe/germany/country_germany.xml @@ -28,8 +28,8 @@ germany_dfb - europe_uefa - europe_champ_league + europe_champ_league3 + europe_uefa3g supercup_europe_uefa supercup_europe_intercontinental germany_supercup diff --git a/support_files/definitions/europe/greece/country_greece.xml b/support_files/definitions/europe/greece/country_greece.xml index a27fd2ef..ab166e90 100644 --- a/support_files/definitions/europe/greece/country_greece.xml +++ b/support_files/definitions/europe/greece/country_greece.xml @@ -14,8 +14,8 @@ greece_cup - europe_uefa - europe_champ_league + europe_champ_league2 + europe_uefa2g supercup_europe_uefa supercup_europe_intercontinental greece_supercup diff --git a/support_files/definitions/europe/hungary/country_hungary.xml b/support_files/definitions/europe/hungary/country_hungary.xml index 7e5b690d..3762acef 100644 --- a/support_files/definitions/europe/hungary/country_hungary.xml +++ b/support_files/definitions/europe/hungary/country_hungary.xml @@ -19,8 +19,8 @@ hungary_cup + europe_champ_league1a europe_uefa - europe_champ_league supercup_europe_uefa supercup_europe_intercontinental hungary_supercup diff --git a/support_files/definitions/europe/iceland/country_iceland.xml b/support_files/definitions/europe/iceland/country_iceland.xml index 46ff5a77..c8116f2a 100755 --- a/support_files/definitions/europe/iceland/country_iceland.xml +++ b/support_files/definitions/europe/iceland/country_iceland.xml @@ -13,8 +13,8 @@ iceland_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/ireland/country_ireland.xml b/support_files/definitions/europe/ireland/country_ireland.xml index fe472e2f..20fbbe61 100644 --- a/support_files/definitions/europe/ireland/country_ireland.xml +++ b/support_files/definitions/europe/ireland/country_ireland.xml @@ -16,8 +16,8 @@ ireland_cup ireland_league ireland_setanta - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental ireland_prom_games diff --git a/support_files/definitions/europe/israel/country_israel.xml b/support_files/definitions/europe/israel/country_israel.xml index 802a17db..c6f391f3 100755 --- a/support_files/definitions/europe/israel/country_israel.xml +++ b/support_files/definitions/europe/israel/country_israel.xml @@ -15,8 +15,8 @@ israel_cup - europe_uefa - europe_champ_league + europe_champ_league1a + europe_uefa3a supercup_europe_uefa supercup_europe_intercontinental israel_prom_games1 diff --git a/support_files/definitions/europe/italy/country_italy.xml b/support_files/definitions/europe/italy/country_italy.xml index 8fcd7026..2e785d9a 100644 --- a/support_files/definitions/europe/italy/country_italy.xml +++ b/support_files/definitions/europe/italy/country_italy.xml @@ -17,8 +17,8 @@ italy_coppa - europe_uefa - europe_champ_league + europe_champ_league4 + europe_uefa3i supercup_europe_uefa supercup_europe_intercontinental italy_supercoppa diff --git a/support_files/definitions/europe/kazakhstan/country_kazakhstan.xml b/support_files/definitions/europe/kazakhstan/country_kazakhstan.xml index 336eedfa..3c2736c3 100755 --- a/support_files/definitions/europe/kazakhstan/country_kazakhstan.xml +++ b/support_files/definitions/europe/kazakhstan/country_kazakhstan.xml @@ -12,8 +12,8 @@ kazakhstan_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental kazakhstan_supercup diff --git a/support_files/definitions/europe/latvia/country_latvia.xml b/support_files/definitions/europe/latvia/country_latvia.xml index daae8c37..18884cf1 100755 --- a/support_files/definitions/europe/latvia/country_latvia.xml +++ b/support_files/definitions/europe/latvia/country_latvia.xml @@ -17,8 +17,8 @@ latvia_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental latvia_promotion1 diff --git a/support_files/definitions/europe/lithuania/country_lithuania.xml b/support_files/definitions/europe/lithuania/country_lithuania.xml index 28718a57..4f93f10c 100755 --- a/support_files/definitions/europe/lithuania/country_lithuania.xml +++ b/support_files/definitions/europe/lithuania/country_lithuania.xml @@ -12,8 +12,8 @@ lithuania_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental lithuania_prom_games1 diff --git a/support_files/definitions/europe/luxembourg/country_luxembourg.xml b/support_files/definitions/europe/luxembourg/country_luxembourg.xml index da577a44..86d2b145 100755 --- a/support_files/definitions/europe/luxembourg/country_luxembourg.xml +++ b/support_files/definitions/europe/luxembourg/country_luxembourg.xml @@ -14,8 +14,8 @@ luxembourg_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/malta/country_malta.xml b/support_files/definitions/europe/malta/country_malta.xml index 9463dcbf..32e522dd 100755 --- a/support_files/definitions/europe/malta/country_malta.xml +++ b/support_files/definitions/europe/malta/country_malta.xml @@ -12,8 +12,8 @@ malta_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental malta_supercup diff --git a/support_files/definitions/europe/moldova/country_moldova.xml b/support_files/definitions/europe/moldova/country_moldova.xml index 844706f1..42f1d0ba 100644 --- a/support_files/definitions/europe/moldova/country_moldova.xml +++ b/support_files/definitions/europe/moldova/country_moldova.xml @@ -14,8 +14,8 @@ moldova_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/montenegro/country_montenegro.xml b/support_files/definitions/europe/montenegro/country_montenegro.xml index 799a649b..40b34407 100755 --- a/support_files/definitions/europe/montenegro/country_montenegro.xml +++ b/support_files/definitions/europe/montenegro/country_montenegro.xml @@ -12,8 +12,8 @@ montenegro_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental montenegro_prom_games1 diff --git a/support_files/definitions/europe/n_ireland/country_n_ireland.xml b/support_files/definitions/europe/n_ireland/country_n_ireland.xml index b2d28dc1..2135d149 100755 --- a/support_files/definitions/europe/n_ireland/country_n_ireland.xml +++ b/support_files/definitions/europe/n_ireland/country_n_ireland.xml @@ -14,8 +14,8 @@ n_ireland_cup n_ireland_setanta - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental n_ireland_prom_games1 diff --git a/support_files/definitions/europe/netherlands/country_netherlands.xml b/support_files/definitions/europe/netherlands/country_netherlands.xml index 1cc68b1f..d0426a32 100644 --- a/support_files/definitions/europe/netherlands/country_netherlands.xml +++ b/support_files/definitions/europe/netherlands/country_netherlands.xml @@ -18,8 +18,8 @@ netherlands_cup - europe_uefa - europe_champ_league + europe_champ_league2a + europe_uefa4 supercup_europe_uefa supercup_europe_intercontinental netherlands_supercup diff --git a/support_files/definitions/europe/norway/country_norway.xml b/support_files/definitions/europe/norway/country_norway.xml index a86e0a4b..a3403da0 100644 --- a/support_files/definitions/europe/norway/country_norway.xml +++ b/support_files/definitions/europe/norway/country_norway.xml @@ -16,8 +16,8 @@ norway_nm - europe_uefa - europe_champ_league + europe_champ_league1a + europe_uefa3b supercup_europe_uefa supercup_europe_intercontinental norway_kvalik diff --git a/support_files/definitions/europe/poland/country_poland.xml b/support_files/definitions/europe/poland/country_poland.xml index 25268762..38d1d3cd 100644 --- a/support_files/definitions/europe/poland/country_poland.xml +++ b/support_files/definitions/europe/poland/country_poland.xml @@ -14,8 +14,8 @@ poland_puchar + europe_champ_league1a europe_uefa - europe_champ_league supercup_europe_uefa supercup_europe_intercontinental poland_superpuchar diff --git a/support_files/definitions/europe/portugal/country_portugal.xml b/support_files/definitions/europe/portugal/country_portugal.xml index 5ccafce2..193c212f 100644 --- a/support_files/definitions/europe/portugal/country_portugal.xml +++ b/support_files/definitions/europe/portugal/country_portugal.xml @@ -24,8 +24,8 @@ portugal_cup portugal_leaguecup - europe_uefa - europe_champ_league + europe_champ_league3 + europe_uefa3g supercup_europe_uefa supercup_europe_intercontinental portugal_supercup diff --git a/support_files/definitions/europe/romania/country_romania.xml b/support_files/definitions/europe/romania/country_romania.xml index 63fdc25d..ef63f377 100644 --- a/support_files/definitions/europe/romania/country_romania.xml +++ b/support_files/definitions/europe/romania/country_romania.xml @@ -19,8 +19,8 @@ romania_coupe - europe_uefa - europe_champ_league + europe_champ_league2a + europe_uefa4 supercup_europe_uefa supercup_europe_intercontinental romania_supercup diff --git a/support_files/definitions/europe/russia/country_russia.xml b/support_files/definitions/europe/russia/country_russia.xml index 9d96734b..081bad2e 100644 --- a/support_files/definitions/europe/russia/country_russia.xml +++ b/support_files/definitions/europe/russia/country_russia.xml @@ -17,8 +17,8 @@ russia_cup - europe_uefa - europe_champ_league + europe_champ_league2a + europe_uefa2a supercup_europe_uefa supercup_europe_intercontinental russia_supercup diff --git a/support_files/definitions/europe/san_marino/country_san_marino.xml b/support_files/definitions/europe/san_marino/country_san_marino.xml index 030a99bf..b336885f 100755 --- a/support_files/definitions/europe/san_marino/country_san_marino.xml +++ b/support_files/definitions/europe/san_marino/country_san_marino.xml @@ -12,8 +12,8 @@ - europe_uefa europe_champ_league + europe_uefa1 supercup_league_vs_cup supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/scotland/country_scotland.xml b/support_files/definitions/europe/scotland/country_scotland.xml index 59574b20..6ced650c 100644 --- a/support_files/definitions/europe/scotland/country_scotland.xml +++ b/support_files/definitions/europe/scotland/country_scotland.xml @@ -15,8 +15,8 @@ scotland_fa scotland_league - europe_uefa - europe_champ_league + europe_champ_league2s + europe_uefa2a supercup_europe_uefa supercup_europe_intercontinental scotland_prom_games2 diff --git a/support_files/definitions/europe/serbia/country_serbia.xml b/support_files/definitions/europe/serbia/country_serbia.xml index 8cf5c2f6..06b38947 100644 --- a/support_files/definitions/europe/serbia/country_serbia.xml +++ b/support_files/definitions/europe/serbia/country_serbia.xml @@ -16,8 +16,8 @@ serbia_cup - europe_uefa - europe_champ_league + europe_champ_league1a + europe_uefa3a supercup_europe_uefa supercup_europe_intercontinental serbia_prom_games1 diff --git a/support_files/definitions/europe/slovakia/country_slovakia.xml b/support_files/definitions/europe/slovakia/country_slovakia.xml index 1b5414e2..ddba93ec 100755 --- a/support_files/definitions/europe/slovakia/country_slovakia.xml +++ b/support_files/definitions/europe/slovakia/country_slovakia.xml @@ -14,8 +14,8 @@ slovakia_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/europe/slovenia/country_slovenia.xml b/support_files/definitions/europe/slovenia/country_slovenia.xml index de8e916f..224ef823 100755 --- a/support_files/definitions/europe/slovenia/country_slovenia.xml +++ b/support_files/definitions/europe/slovenia/country_slovenia.xml @@ -14,8 +14,8 @@ slovenia_cup - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental slovenia_supercup diff --git a/support_files/definitions/europe/spain/country_spain.xml b/support_files/definitions/europe/spain/country_spain.xml index 6ac897ce..01481dcc 100644 --- a/support_files/definitions/europe/spain/country_spain.xml +++ b/support_files/definitions/europe/spain/country_spain.xml @@ -17,8 +17,8 @@ spain_cdr spain_rfef - europe_uefa - europe_champ_league + europe_champ_league4 + europe_uefa3i supercup_europe_uefa supercup_europe_intercontinental spain_supercopa diff --git a/support_files/definitions/europe/sweden/country_sweden.xml b/support_files/definitions/europe/sweden/country_sweden.xml index 756304b5..be9df1c8 100644 --- a/support_files/definitions/europe/sweden/country_sweden.xml +++ b/support_files/definitions/europe/sweden/country_sweden.xml @@ -32,8 +32,8 @@ sweden_cupen - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental sweden_supercupen diff --git a/support_files/definitions/europe/switzerland/country_switzerland.xml b/support_files/definitions/europe/switzerland/country_switzerland.xml index 65198321..66533d15 100755 --- a/support_files/definitions/europe/switzerland/country_switzerland.xml +++ b/support_files/definitions/europe/switzerland/country_switzerland.xml @@ -15,8 +15,8 @@ switzerland_cup - europe_uefa - europe_champ_league + europe_champ_league1a + europe_uefa3b supercup_europe_uefa supercup_europe_intercontinental switzerland_prom_games1 diff --git a/support_files/definitions/europe/turkey/country_turkey.xml b/support_files/definitions/europe/turkey/country_turkey.xml index 7fd240e3..9717870e 100644 --- a/support_files/definitions/europe/turkey/country_turkey.xml +++ b/support_files/definitions/europe/turkey/country_turkey.xml @@ -17,8 +17,8 @@ turkey_kupasi - europe_uefa - europe_champ_league + europe_champ_league2 + europe_uefa2a supercup_europe_uefa supercup_europe_intercontinental turkey_supercup diff --git a/support_files/definitions/europe/ukraine/country_ukraine.xml b/support_files/definitions/europe/ukraine/country_ukraine.xml index f7af47e4..14a5d848 100644 --- a/support_files/definitions/europe/ukraine/country_ukraine.xml +++ b/support_files/definitions/europe/ukraine/country_ukraine.xml @@ -14,8 +14,8 @@ ukraine_cup - europe_uefa - europe_champ_league + europe_champ_league2 + europe_uefa2a supercup_europe_uefa supercup_europe_intercontinental ukraine_supercup diff --git a/support_files/definitions/europe/wales/country_wales.xml b/support_files/definitions/europe/wales/country_wales.xml index 54b1fac8..70b10197 100644 --- a/support_files/definitions/europe/wales/country_wales.xml +++ b/support_files/definitions/europe/wales/country_wales.xml @@ -16,8 +16,8 @@ wales_welsh wales_challenge wales_premier - europe_uefa europe_champ_league + europe_uefa supercup_europe_uefa supercup_europe_intercontinental diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league.xml index bc537430..c3f298ce 100644 --- a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league.xml +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league.xml @@ -13,12 +13,17 @@ 6 7 8 + 15 + 20 + 43 + 46 international league_talents highlight1 + 1st qualifying round 28 @@ -264,7 +269,7 @@ - san_marino_group_a + san_marino1 1 @@ -287,6 +292,7 @@ + 2nd qualifying round 14 @@ -423,6 +429,7 @@ + 3rd qualifying round 18 @@ -566,6 +573,7 @@ + Group stage 8 2 16 @@ -670,6 +678,7 @@ + 1 diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league1a.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league1a.xml new file mode 100644 index 00000000..b4c8638d --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league1a.xml @@ -0,0 +1,691 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league1a + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + LEAGUE1 + 1 + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league1b.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league1b.xml new file mode 100644 index 00000000..65047fbc --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league1b.xml @@ -0,0 +1,691 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league1b + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + LEAGUE1 + 1 + 1 + 1 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2.xml new file mode 100644 index 00000000..79de6f11 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2.xml @@ -0,0 +1,698 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league2 + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + LEAGUE1 + 1 + 2 + 2 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + LEAGUE1 + 1 + 1 + 1 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2a.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2a.xml new file mode 100644 index 00000000..efcd1af7 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2a.xml @@ -0,0 +1,698 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league2a + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + LEAGUE1 + 1 + 2 + 2 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + LEAGUE1 + 1 + 1 + 1 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2s.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2s.xml new file mode 100644 index 00000000..7e25139d --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league2s.xml @@ -0,0 +1,698 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league2s + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + LEAGUE1 + 1 + 2 + 2 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + LEAGUE1 + 1 + 1 + 1 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league3.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league3.xml new file mode 100644 index 00000000..83aa2a38 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league3.xml @@ -0,0 +1,698 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league3 + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + LEAGUE1 + 1 + 3 + 3 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + LEAGUE1 + 2 + 1 + 2 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_champ_league4.xml b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league4.xml new file mode 100644 index 00000000..276db970 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_champ_league4.xml @@ -0,0 +1,698 @@ + + + UEFA Champions League + UCL + flag_eu.png + europe_champ_league4 + 1 + 3 + 48 + 0 + 2 + 5 + 6 + 7 + 8 + 15 + 20 + 43 + 46 + international + league_talents + highlight1 + + + + 1st qualifying round + 28 + + + + slovakia1 + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + andorra1 + 1 + + + 1 + 1 + + + + san_marino1 + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + 0 + -9 + + + + 2nd qualifying round + 14 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 1 + + + 1 + 1 + + + + serbia1 + 1 + + + 1 + 1 + + + + denmark1 + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + 0 + -10 + + + + 3rd qualifying round + 18 + + + + LEAGUE1 + 2 + 3 + 4 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + germany1 + 1 + + + 1 + 1 + + + + portugal1 + 1 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + -12 + + + + Group stage + 8 + 2 + 16 + + + + LEAGUE1 + 2 + 1 + 2 + + + + spain1 + 2 + + + 1 + 1 + + + + england1 + 2 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + france1 + 2 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + romania1 + 1 + + + 1 + 1 + + + + netherlands1 + 1 + + + 1 + 1 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + -13 + + + + -1 + + + + 1 + + + + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa.xml index 2557ae0a..fc03c2ba 100644 --- a/support_files/definitions/miscellaneous/europe/cup_europe_uefa.xml +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa.xml @@ -6,8 +6,14 @@ europe_uefa 1 3 - 2 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 0 international league talents @@ -15,7 +21,7 @@ - 1st q. r. + 1st qualifying round 74 @@ -45,8 +51,8 @@ switzerland1 1 - - + 1 + 9 1 1 @@ -108,7 +114,7 @@ austria1 - #the cup winner here. The game doesn't recognize the austria_cup sid. + #the cup winner here. 1 @@ -127,7 +133,7 @@ poland1 - #the cup winner here. The game doesn't recognize the poland_puchar sid. + #the cup winner here. 1 @@ -146,7 +152,7 @@ hungary1 - #the cup winner here. The game doesn't recognize the hungary_cup sid. + #the cup winner here. 1 @@ -222,7 +228,7 @@ sweden_allsvenskan - #the cup winner here. The game doesn't recognize the sweden_cupen sid. + #the cup winner here. 1 @@ -317,7 +323,7 @@ finland1 - #the cup winner here. The game doesn't recognize the finland_suomen_cup sid. + #the cup winner here. 1 @@ -336,7 +342,7 @@ moldova1 - #the cup winner here. The game doesn't recognize the moldova_cup sid. + #the cup winner here. 1 @@ -355,7 +361,7 @@ ireland1 - #the cup winner here. The game doesn't recognize the ireland_cup sid. + #the cup winner here. 1 @@ -386,9 +392,8 @@ switzerland1 1 - #of course, we could make a liechtenstein_short file w/ Vaduz and others. - - + 10 + 10 1 1 @@ -575,7 +580,7 @@ wales1 - #the cup winner here. The game doesn't recognize the wales_welsh sid. + #the cup winner here. 1 @@ -681,11 +686,8 @@ - albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 3 - - - #this number's pulled out of a hat, could be ignored or removed 1 1 @@ -765,7 +767,7 @@ greece1 - #the cup winner here. The game doesn't recognize the greece_cup sid. + #the cup winner here. 1 @@ -784,7 +786,7 @@ bulgaria1 - #the cup winner here. The game doesn't recognize the bulgaria_national sid. + #the cup winner here. 1 @@ -822,7 +824,7 @@ norway1 - #the cup winner here. The game doesn't recognize the norway_nm sid. + #the cup winner here. 1 @@ -842,7 +844,7 @@ serbia1 - #the cup winner here. The game doesn't recognize the scg sid. + #the cup winner here. 1 @@ -852,7 +854,7 @@ - albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino_group_a serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 11 1 1 @@ -880,7 +882,7 @@ spain1 - #the cup winner here. The game doesn't recognize the spain_cdr sid. + #the cup winner here. 1 @@ -899,7 +901,7 @@ england1 - #the cup winner here. The game doesn't recognize the england_fa sid. + #the cup winner here. 1 @@ -909,7 +911,7 @@ england1 - #the league cup winner here. The game doesn't recognize the england_league sid. + #the league cup winner here. 1 @@ -928,7 +930,7 @@ italy1 - #the cup winner here. The game doesn't recognize the italy_coppa sid. + #the cup winner here. 1 @@ -947,7 +949,7 @@ france1 - #the cup winner here. The game doesn't recognize the france_coupe sid. + #the cup winner here. 1 @@ -957,7 +959,7 @@ france1 - #the league cup winner here. The game doesn't recognize the france_ligue sid. + #the league cup winner here. 1 @@ -976,7 +978,7 @@ germany1 - #the cup winner here. The game doesn't recognize the germany_dfb sid. + #the cup winner here. 1 @@ -995,7 +997,7 @@ portugal1 - #the cup winner here. The game doesn't recognize the portugal_cup sid. + #the cup winner here. 1 @@ -1014,7 +1016,7 @@ romania1 - #the cup winner here. The game doesn't recognize the romania_coupe sid. + #the cup winner here. 1 @@ -1033,7 +1035,7 @@ netherlands1 - #the cup winner here. The game doesn't recognize the netherlands_cup sid. + #the cup winner here. 1 @@ -1043,7 +1045,7 @@ russia1 - #the cup winner here. The game doesn't recognize the russia_cup sid. + #the cup winner here. 1 @@ -1053,7 +1055,7 @@ scotland1 - #the cup winner here. The game doesn't recognize the scotland_fa sid. + #the cup winner here. 1 @@ -1063,7 +1065,7 @@ ukraine1 - #the cup winner here. The game doesn't recognize the ukraine_cup sid. + #the cup winner here. 1 @@ -1073,7 +1075,7 @@ belgium1 - #the cup winner here. The game doesn't recognize the belgium_beker sid. + #the cup winner here. 1 @@ -1083,7 +1085,7 @@ czech1 - #the cup winner here. The game doesn't recognize the czech_cup sid. + #the cup winner here. 1 @@ -1093,7 +1095,7 @@ turkey1 - #the cup winner here. The game doesn't recognize the turkey_kupasi sid. + #the cup winner here. 1 @@ -1103,7 +1105,8 @@ - europe_champ_league + europe_champ_league* + europe_champ_league* 1 0 16 @@ -1119,7 +1122,7 @@ 8 3 0 - -6 + -5 @@ -1128,7 +1131,7 @@ - europe_champ_league + europe_champ_league* 1 0 8 @@ -1136,16 +1139,19 @@ 24 - 2 + 3 + 2 + 2 + 1 diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa1.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa1.xml new file mode 100644 index 00000000..1f7f688b --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa1.xml @@ -0,0 +1,1154 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa1 + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + CUP1 + 1 + 1 + 2 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa2a.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa2a.xml new file mode 100644 index 00000000..f2fbf0ec --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa2a.xml @@ -0,0 +1,1160 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa2a + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + LEAGUE1 + 1 + 3 + 3 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + CUP1 + 1 + 1 + 3 + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa2g.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa2g.xml new file mode 100644 index 00000000..fe204637 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa2g.xml @@ -0,0 +1,1161 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa2g + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + LEAGUE1 + 1 + 3 + 3 + + + + CUP1 + 1 + 1 + 3 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3a.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3a.xml new file mode 100644 index 00000000..42b23a6f --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3a.xml @@ -0,0 +1,1160 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3a + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + LEAGUE1 + 2 + + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + CUP1 + 1 + + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3b.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3b.xml new file mode 100644 index 00000000..c1a101fe --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3b.xml @@ -0,0 +1,1167 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3b + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + LEAGUE1 + 1 + 3 + 3 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + LEAGUE1 + 1 + 2 + 2 + + + + CUP1 + 1 + 1 + 3 + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3d.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3d.xml new file mode 100644 index 00000000..f3a054df --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3d.xml @@ -0,0 +1,1161 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3d + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + LEAGUE1 + 2 + 2 + 3 + + + + CUP1 + 1 + 1 + 3 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3e.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3e.xml new file mode 100644 index 00000000..3ffea32d --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3e.xml @@ -0,0 +1,1168 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3e + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + LEAGUE1 + 1 + 5 + 5 + + + + CUP1 + 1 + 1 + 2 + + + + CUP2 + 1 + 1 + 2 + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3f.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3f.xml new file mode 100644 index 00000000..13b386f8 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3f.xml @@ -0,0 +1,1168 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3f + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + LEAGUE1 + 1 + 4 + 4 + + + + CUP1 + 1 + 1 + 2 + + + + CUP2 + 1 + 1 + 2 + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3g.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3g.xml new file mode 100644 index 00000000..e8fc9c4e --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3g.xml @@ -0,0 +1,1161 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3g + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + LEAGUE1 + 2 + 4 + 5 + + + + CUP1 + 1 + 1 + 3 + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa3i.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3i.xml new file mode 100644 index 00000000..94c05b0d --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa3i.xml @@ -0,0 +1,1160 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa3i + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + LEAGUE1 + 2 + 5 + 6 + + + + CUP1 + 1 + 1 + 3 + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_europe_uefa4.xml b/support_files/definitions/miscellaneous/europe/cup_europe_uefa4.xml new file mode 100644 index 00000000..2996e857 --- /dev/null +++ b/support_files/definitions/miscellaneous/europe/cup_europe_uefa4.xml @@ -0,0 +1,1161 @@ + + + UEFA Cup + UEFA Cup + flag_eu.png + europe_uefa4 + 1 + 3 + 47 + 2 + 20 + 23 + 36 + 39 + 43 + 46 + 0 + international + league talents + highlight1 + + + + 74 + + + + + bulgaria1 + 1 + + + 1 + 1 + + + + switzerland1 + 1 + 1 + 9 + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + israel1 + 2 + + + 1 + 1 + + + + serbia1 + 2 + + + 1 + 1 + + + + denmark1 + 2 + + + 1 + 1 + + + + denmark1 + #the cup winner here. + 1 + + + 1 + 1 + + + + austria1 + 1 + + + 1 + 1 + + + + austria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + poland1 + 1 + + + 1 + 1 + + + + poland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + hungary1 + 1 + + + 1 + 1 + + + + hungary1 + #the cup winner here. + 1 + + + 1 + 1 + + + + slovakia1 + 1 + + + 1 + 1 + + + + slovakia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + croatia1 + 1 + + + 1 + 1 + + + + croatia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + cyprus1 + 1 + + + 1 + 1 + + + + cyprus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + sweden_allsvenskan + 1 + + + 1 + 1 + + + + sweden_allsvenskan + #the cup winner here. + 1 + + + 1 + 1 + + + + slovenia1 + 1 + + + 1 + 1 + + + + slovenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + 1 + + + 1 + 1 + + + + bosnia_herzegovina1 + #the cup winner here. + 1 + + + 1 + 1 + + + + latvia1 + 1 + + + 1 + 1 + + + + latvia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + lithuania1 + 1 + + + 1 + 1 + + + + lithuania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + finland1 + 1 + + + 1 + 1 + + + + finland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + moldova1 + 1 + + + 1 + 1 + + + + moldova1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ireland1 + 1 + + + 1 + 1 + + + + ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + georgia1 + 1 + + + 1 + 1 + + + + georgia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + 10 + 10 + 1 + 1 + + + + fyr_macedonia1 + 1 + + + 1 + 1 + + + + fyr_macedonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + iceland1 + 1 + + + 1 + 1 + + + + iceland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belarus1 + 1 + + + 1 + 1 + + + + belarus1 + #the cup winner here. + 1 + + + 1 + 1 + + + + albania1 + 1 + + + 1 + 1 + + + + albania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + estonia1 + 1 + + + 1 + 1 + + + + estonia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + armenia1 + 1 + + + 1 + 1 + + + + armenia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + azerbaijan1 + 1 + + + 1 + 1 + + + + azerbaijan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + kazakhstan1 + 1 + + + 1 + 1 + + + + kazakhstan1 + #the cup winner here. + 1 + + + 1 + 1 + + + + n_ireland1 + 1 + + + 1 + 1 + + + + n_ireland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + wales1 + 1 + + + 1 + 1 + + + + wales1 + #the cup winner here. + 1 + + + 1 + 1 + + + + faroe_islands1 + 1 + + + 1 + 1 + + + + faroe_islands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + luxembourg1 + 1 + + + 1 + 1 + + + + luxembourg1 + #the cup winner here. + 1 + + + 1 + 1 + + + + malta1 + 1 + + + 1 + 1 + + + + malta1 + #the cup winner here. + 1 + + + 1 + 1 + + + + andorra1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + san_marino1 + #the national cup winner here. + 1 + + + 1 + 1 + + + + montenegro1 + 1 + + + 1 + 1 + + + + montenegro1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 3 + 1 + 1 + + + + 0 + -6 + + + + 27 + + + + + russia1 + 1 + + + 1 + 1 + + + + scotland1 + 1 + + + 1 + 1 + + + + ukraine1 + 1 + + + 1 + 1 + + + + belgium1 + 1 + + + 1 + 1 + + + + czech1 + 1 + + + 1 + 1 + + + + turkey1 + 1 + + + 1 + 1 + + + + greece1 + 1 + + + 1 + 1 + + + + greece1 + #the cup winner here. + 1 + + + 1 + 1 + + + + bulgaria1 + 1 + + + 1 + 1 + + + + bulgaria1 + #the cup winner here. + 1 + + + 1 + 1 + + + + switzerland1 + 1 + + + 1 + 1 + + + + switzerland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + norway1 + 1 + + + 1 + 1 + + + + norway1 + #the cup winner here. + 1 + + + 1 + 1 + + + + israel1 + #the cup winner here. + 1 + + + 1 + 1 + + + + serbia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + albania1 andorra1 armenia1 austria1 azerbaijan1 belarus1 belgium1 bosnia_herzegovina1 bulgaria1 croatia1 cyprus1 czech1 denmark1 england1 estonia1 faroe_islands1 finland1 france1 fyr_macedonia1 georgia1 germany1 greece1 hungary1 iceland1 ireland1 israel1 italy1 kazakhstan1 latvia1 lithuania1 luxembourg1 malta1 moldova1 montenegro1 netherlands1 n_ireland1 norway1 poland1 portugal1 romania1 russia1 san_marino1 serbia1 scotland1 slovakia1 slovenia1 spain1 sweden_allsvenskan switzerland1 turkey1 ukraine1 wales1 + 11 + 1 + 1 + + + + 0 + -6 + + + + 0 + 48 + + + + LEAGUE1 + 3 + 3 + 5 + + + + CUP1 + 1 + 1 + 3 + + + + spain1 + 2 + + + 1 + 1 + + + + spain1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + 1 + + + 1 + 1 + + + + england1 + #the cup winner here. + 1 + + + 1 + 1 + + + + england1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + italy1 + 2 + + + 1 + 1 + + + + italy1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + 1 + + + 1 + 1 + + + + france1 + #the cup winner here. + 1 + + + 1 + 1 + + + + france1 + #the league cup winner here. + 1 + + + 1 + 1 + + + + germany1 + 2 + + + 1 + 1 + + + + germany1 + #the cup winner here. + 1 + + + 1 + 1 + + + + portugal1 + 2 + + + 1 + 1 + + + + portugal1 + #the cup winner here. + 1 + + + 1 + 1 + + + + romania1 + 3 + + + 1 + 1 + + + + romania1 + #the cup winner here. + 1 + + + 1 + 1 + + + + netherlands1 + 3 + + + 1 + 1 + + + + netherlands1 + #the cup winner here. + 1 + + + 1 + 1 + + + + russia1 + #the cup winner here. + 1 + + + 1 + 1 + + + + scotland1 + #the cup winner here. + 1 + + + 1 + 1 + + + + ukraine1 + #the cup winner here. + 1 + + + 1 + 1 + + + + belgium1 + #the cup winner here. + 1 + + + 1 + 1 + + + + czech1 + #the cup winner here. + 1 + + + 1 + 1 + + + + turkey1 + #the cup winner here. + 1 + + + 1 + 1 + + + + + europe_champ_league* + europe_champ_league* + 1 + 0 + 16 + 33 + 48 + + + 0 + -6 + + + + 8 + 3 + 0 + -5 + + + + 8 + + + + + europe_champ_league* + 1 + 0 + 8 + 17 + 24 + + + 3 + + + + 2 + + + + 2 + + + + 1 + + + + 0 + 1 + + + \ No newline at end of file diff --git a/support_files/definitions/miscellaneous/europe/cup_supercup_europe_intercontinental.xml b/support_files/definitions/miscellaneous/europe/cup_supercup_europe_intercontinental.xml index b454dfa0..31bd22e2 100644 --- a/support_files/definitions/miscellaneous/europe/cup_supercup_europe_intercontinental.xml +++ b/support_files/definitions/miscellaneous/europe/cup_supercup_europe_intercontinental.xml @@ -15,7 +15,7 @@ - europe_champ_league + europe_champ_league* 1 1 1 diff --git a/support_files/definitions/miscellaneous/europe/cup_supercup_europe_uefa.xml b/support_files/definitions/miscellaneous/europe/cup_supercup_europe_uefa.xml index 14749418..e74568fe 100644 --- a/support_files/definitions/miscellaneous/europe/cup_supercup_europe_uefa.xml +++ b/support_files/definitions/miscellaneous/europe/cup_supercup_europe_uefa.xml @@ -14,14 +14,14 @@ - europe_champ_league + europe_champ_league* 1 1 1 - europe_uefa + europe_uefa* 1 1 1