Greece added, Brazil changed.

This commit is contained in:
gyboth 2005-12-04 16:41:25 +00:00
parent fd19fab727
commit 391c8c2dd5
62 changed files with 161 additions and 516 deletions

View File

@ -15,6 +15,7 @@
type a few letters to begin search)
- added job exchange (including jobs from abroad!)
- added betting
- added definition for Greece (thanks to Theodore Dimitriadis)
09/10/2005: v1.9.1

File diff suppressed because one or more lines are too long

View File

@ -1062,7 +1062,7 @@ game_post_match(Fixture *fix)
user_history_add(&usr(fixture_user_team_involved(fix)),
USER_HISTORY_REACH_CUP_ROUND,
usr(fixture_user_team_involved(fix)).name,
usr(fixture_user_team_involved(fix)).tm->name,
league_cup_get_name_string(fix->clid),
buf, buf2);
user_add_cup_success(&usr(fixture_user_team_involved(fix)),

View File

@ -351,9 +351,6 @@ league_remove_team_with_id(League *league, gint id)
{
gint i;
/*d*/
printf("lrm %s %d\n", league->name, id);
for(i=0;i<league->teams->len;i++)
if(g_array_index(league->teams, Team, i).id == id)
{
@ -501,9 +498,6 @@ league_get_team_movements_prom_rel(const League *league, GArray *team_movements)
new_move.dest_idcs = dest_idcs;
new_move.dest_assigned = FALSE;
g_array_append_val(team_movements, new_move);
printf("tmov1 %s tm %s %d\n", league->name, new_move.tm.name,
new_move.tm.id);
}
free_gchar_array(&dest_sids);

View File

@ -127,6 +127,7 @@ load_save_save_game(const gchar *filename)
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(
lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
/* The 'job exchange' is a list of teams looking for a manager. */
_("Saving job exchange..."),
PIC_TYPE_SAVE);
@ -279,6 +280,7 @@ load_save_load_game(const gchar* filename, gboolean create_main_window)
((PROGRESS_MAX * gtk_progress_bar_get_fraction(
GTK_PROGRESS_BAR(
lookup_widget(window.progress, "progressbar")))) + 1) / PROGRESS_MAX,
/* The 'job exchange' is a list of teams looking for a manager. */
_("Loading job exchange..."),
PIC_TYPE_LOAD);

View File

@ -74,7 +74,7 @@ main_parse_cl_arguments(gint *argc, gchar ***argv)
{{ "support-dir", 's', 0, G_OPTION_ARG_STRING, &support_dir,
_("Specify additional support directory (takes priority over default ones)"), "DIR" },
{ "debug-level", 'd', 0, G_OPTION_ARG_INT, &deb_level, _("Debug level to use"), "N" },
{ "debug-level", 'd', 0, G_OPTION_ARG_INT, &deb_level, "[developer] Debug level to use", "N" },
{ "lang", 'L', 0, G_OPTION_ARG_STRING, &lang, _("Language to use (a code like 'de')"), "CODE" },
@ -86,6 +86,9 @@ main_parse_cl_arguments(gint *argc, gchar ***argv)
_("Commentary file name (may be in a support dir)"), "FILE" },
{ "token-file", 'T', 0, G_OPTION_ARG_STRING, &token_file,
/* Live game tokens are strings like _AT_ in live game commentary files
which will be filled in by the program during runtime; e.g. _AT_ becomes
the attendace for the match. */
_("File containing live game tokens (may be in a support dir)"), "FILE" },
{ "event-name", 'e', 0, G_OPTION_ARG_STRING, &event_name,
@ -95,13 +98,13 @@ main_parse_cl_arguments(gint *argc, gchar ***argv)
_("How many commentaries to generate per event"), "N" },
{ "calodds", 'o', 0, G_OPTION_ARG_NONE, &calodds,
_("Calibrate the betting odds by simulating a lot of matches"), NULL },
"[developer] Calibrate the betting odds by simulating a lot of matches", NULL },
{ "num-matches", 'm', 0, G_OPTION_ARG_INT, &num_matches,
_("How many matches to simulate per skill diff step"), "N" },
"[developer] How many matches to simulate per skill diff step", "N" },
{ "num-skilldiff", 'S', 0, G_OPTION_ARG_INT, &skilldiffmax,
_("How many skill diff steps to take"), "N" },
"[developer] How many skill diff steps to take", "N" },
{NULL}};

View File

@ -316,6 +316,9 @@ misc2_callback_evaluate_job_application(Job *job, User *user)
if(job->type != JOB_TYPE_NATIONAL)
{
game_gui_show_warning(
/* A lame duck is someone who will quit his job soon and thus doesn't have
a lot of influence/impact anymore, e.g. an American president during
the last 2 years of his second presidency. */
_("The owners of %s accept your application. Since %s don't want to get stuck with a lame duck, you get fired instantly and spend the rest of the current season tending your garden."),
job_get_team(job)->name, user->tm->name);
job_change_country(job);
@ -325,10 +328,8 @@ misc2_callback_evaluate_job_application(Job *job, User *user)
_("The owners of %s accept your application."),
current_user.tm->name);
printf("misc2 1\n");
user_change_team(user, team_of_id(job->team_id));
printf("misc2 2\n");
if(job->type == JOB_TYPE_NATIONAL)
job_remove(job, TRUE);
else
@ -336,7 +337,6 @@ misc2_callback_evaluate_job_application(Job *job, User *user)
job_remove(job, FALSE);
job_remove_national();
}
printf("misc2 3\n");
return TRUE;
}

View File

@ -60,7 +60,6 @@ on_button_offer_ok_clicked (GtkButton *button,
else
user_change_team(&current_user, (Team*)statp);
printf("misc2 4\n");
if(changed)
{
if(stat2 == STATUS_JOB_OFFER_SUCCESS ||

View File

@ -132,6 +132,7 @@ on_treeview_bets_button_press_event (GtkWidget *widget,
stat2 = bet->fix_id;
stat3 = col_num - 1;
/* 'Wager' is the amount of money the user placed on a bet. */
window_show_digits(buf, _("Wager"), 0, NULL, -1);
spin_wager = GTK_SPIN_BUTTON(lookup_widget(window.digits, "spinbutton1"));
gtk_spin_button_set_range(spin_wager, 0,

View File

@ -268,7 +268,9 @@ treeview2_create_bets(GtkListStore *ls)
gtk_list_store_append(ls, &iter);
gtk_list_store_set(ls, &iter,
0, (k == 1) ?
/* Copy the <span...> stuff, translate in between. */
_("<span background='lightgrey' size='large' weight='bold'>Current bets</span>") :
/* Copy the <span...> stuff, translate in between. */
_("<span background='lightgrey' size='large' weight='bold'>Recent bets</span>"),
1, NULL, 2, NULL, 3, NULL, 4, "", 5, "", -1);
}
@ -362,6 +364,7 @@ treeview2_set_up_bets(GtkTreeView *treeview)
/* Team 2 wins (betting window). */
_("Win2"),
_("Team2"),
/* How much the user wagers; how much he won or lost. */
_("Wager/\nWin/Loss")};
gtk_tree_selection_set_mode(gtk_tree_view_get_selection(treeview),

View File

@ -41,6 +41,7 @@ enum
TAG_LEAGUE_FIRST_WEEK,
TAG_LEAGUE_ROUND_ROBINS,
TAG_LEAGUE_ACTIVE,
TAG_LEAGUE_AVERAGE_TALENT,
TAG_LEAGUE_PROM_REL,
TAG_LEAGUE_PROM_REL_PROM_GAMES_DEST_SID,
TAG_LEAGUE_PROM_REL_PROM_GAMES_CUP_SID,
@ -107,6 +108,7 @@ xml_loadsave_league_end_element (GMarkupParseContext *context,
if(tag == TAG_LEAGUE_FIRST_WEEK ||
tag == TAG_LEAGUE_LAYER ||
tag == TAG_LEAGUE_ACTIVE ||
tag == TAG_LEAGUE_AVERAGE_TALENT ||
tag == TAG_LEAGUE_ROUND_ROBINS ||
tag == TAG_NAME ||
tag == TAG_NAMES_FILE ||
@ -152,10 +154,12 @@ xml_loadsave_league_text (GMarkupParseContext *context,
{
gchar buf[SMALL];
gint int_value = -1;
gfloat float_value = -1;
strncpy(buf, text, text_len);
buf[text_len] = '\0';
float_value = (gfloat)g_ascii_strtod(buf, NULL) / 10000;
int_value = (gint)g_ascii_strtod(buf, NULL);
if(state == TAG_NAME)
@ -182,6 +186,8 @@ xml_loadsave_league_text (GMarkupParseContext *context,
new_league->yellow_red = int_value;
else if(state == TAG_LEAGUE_ACTIVE)
new_league->active = int_value;
else if(state == TAG_LEAGUE_AVERAGE_TALENT)
new_league->average_talent = float_value;
else if(state == TAG_LEAGUE_PROM_REL_PROM_GAMES_DEST_SID)
misc_string_assign(&new_league->prom_rel.prom_games_dest_sid, buf);
else if(state == TAG_LEAGUE_PROM_REL_PROM_GAMES_CUP_SID)
@ -270,6 +276,7 @@ xml_loadsave_league_write(const gchar *prefix, const League *league)
xml_write_int(fil, league->week_gap, TAG_WEEK_GAP, I0);
xml_write_int(fil, league->yellow_red, TAG_YELLOW_RED, I0);
xml_write_int(fil, league->active, TAG_LEAGUE_ACTIVE, I0);
xml_write_float(fil, league->average_talent, TAG_LEAGUE_AVERAGE_TALENT, I0);
fprintf(fil, "%s<_%d>\n", I0, TAG_LEAGUE_PROM_REL);

View File

@ -17,6 +17,7 @@ string_contrib_title Country definitions
string_contrib_entry Győző Both (Australia, Italy, Scotland, USA, WC2006)
string_contrib_entry Mark Calderbank (Bulgaria, England, Ireland, Spain, Victoria, Wales)
string_contrib_entry Tobe &amp; Arne Deprez (Belgium)
string_contrib_entry Theodore Dimitriadis (Greece)
string_contrib_entry Celso Goya (Brazil)
string_contrib_entry Pechorin (Serbia &amp; Montenegro)
string_contrib_entry Koen Pijnenburg (Netherlands)

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Aus_Victoria</name>
<rating>3</rating>
<symbol>flag_aus_victoria.png</symbol>
<sid>aus_vic</sid>
<leagues>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Australia</name>
<rating>5</rating>
<symbol>flag_australia.png</symbol>
<sid>australia</sid>
<leagues>

View File

@ -1,5 +1,6 @@
<country>
<name>Belgium</name>
<rating>7</rating>
<symbol>flag_belgium.png</symbol>
<sid>belgium</sid>
<leagues>

View File

@ -24,6 +24,7 @@
<dest_sid>belgium2</dest_sid>
<prom_rel_type>promotion</prom_rel_type>
</prom_rel_element>
<prom_games>
<prom_games_dest_sid>belgium2</prom_games_dest_sid>
<prom_games_cup_sid>belgium_eindronde3</prom_games_cup_sid>

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<cup>
<name>Quadrangular Série C2</name>
<short_name>Quad. C2</short_name>
<symbol>flag_brazil.png</symbol>
<sid>brazil_prom_games4</sid>
<add_week>1000</add_week>
<property>national</property>
<property>highlight2</property>
<cup_rounds>
<cup_round>
<choose_teams>
<choose_team>
<choose_team_sid>brazil4</choose_team_sid>
<number_of_teams>4</number_of_teams>
<start_idx>1</start_idx>
<end_idx>4</end_idx>
</choose_team>
</choose_teams>
</cup_round>
<cup_round>
</cup_round>
</cup_rounds>
</cup>

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<cup>
<name>Quadrangular Série C3</name>
<short_name>Quad. C3</short_name>
<symbol>flag_brazil.png</symbol>
<sid>brazil_prom_games5</sid>
<add_week>1000</add_week>
<property>national</property>
<property>highlight2</property>
<cup_rounds>
<cup_round>
<choose_teams>
<choose_team>
<choose_team_sid>brazil5</choose_team_sid>
<number_of_teams>4</number_of_teams>
<start_idx>1</start_idx>
<end_idx>4</end_idx>
</choose_team>
</choose_teams>
</cup_round>
<cup_round>
</cup_round>
</cup_rounds>
</cup>

View File

@ -1,27 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<cup>
<name>Quadrangular Série C4</name>
<short_name>Quad. C4</short_name>
<symbol>flag_brazil.png</symbol>
<sid>brazil_prom_games6</sid>
<add_week>1000</add_week>
<property>national</property>
<property>highlight2</property>
<cup_rounds>
<cup_round>
<choose_teams>
<choose_team>
<choose_team_sid>brazil6</choose_team_sid>
<number_of_teams>4</number_of_teams>
<start_idx>1</start_idx>
<end_idx>4</end_idx>
</choose_team>
</choose_teams>
</cup_round>
<cup_round>
</cup_round>
</cup_rounds>
</cup>

View File

@ -1,86 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<league>
<sid>brazil3</sid>
<name>Série C1</name>
<short_name>Série C1</short_name>
<symbol>flag_brazil.png</symbol>
<first_week>1</first_week>
<week_gap>1</week_gap>
<average_talent>7300</average_talent>
<yellow_red>3</yellow_red>
<layer>3</layer>
<names_file>brazil</names_file>
<prom_rel>
<prom_games>
<prom_games_dest_sid>brazil2</prom_games_dest_sid>
<prom_games_cup_sid>brazil_prom_games3</prom_games_cup_sid>
</prom_games>
</prom_rel>
<teams>
<team>
<team_name>Americano</team_name>
</team>
<team>
<team_name>Confiança</team_name>
</team>
<team>
<team_name>CRAC</team_name>
</team>
<team>
<team_name>América</team_name>
</team>
<team>
<team_name>Grêmio C.</team_name>
</team>
<team>
<team_name>H.A. Rio Grande do Sul</team_name>
</team>
<team>
<team_name>Iraty</team_name>
</team>
<team>
<team_name>Itacuruba</team_name>
</team>
<team>
<team_name>Limoeiro</team_name>
</team>
<team>
<team_name>Moto Club</team_name>
</team>
<team>
<team_name>Palmas</team_name>
</team>
<team>
<team_name>Parnahyba</team_name>
</team>
<team>
<team_name>Porto</team_name>
</team>
<team>
<team_name>Rio Branco-AC</team_name>
</team>
<team>
<team_name>Rio Branco-SP</team_name>
</team>
<team>
<team_name>Sampaio Corrêa</team_name>
</team>
<team>
<team_name>Serra</team_name>
</team>
<team>
<team_name>Treze</team_name>
</team>
<team>
<team_name>União B.</team_name>
</team>
<team>
<team_name>Villa Nova-MG</team_name>
</team>
</teams>
</league>

View File

@ -1,86 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<league>
<sid>brazil4</sid>
<name>Série C2</name>
<short_name>Série C2</short_name>
<symbol>flag_brazil.png</symbol>
<first_week>1</first_week>
<week_gap>1</week_gap>
<average_talent>7300</average_talent>
<yellow_red>3</yellow_red>
<layer>3</layer>
<names_file>brazil</names_file>
<prom_rel>
<prom_games>
<prom_games_dest_sid>brazil2</prom_games_dest_sid>
<prom_games_cup_sid>brazil_prom_games4</prom_games_cup_sid>
</prom_games>
</prom_rel>
<teams>
<team>
<team_name>Atlético-BA</team_name>
</team>
<team>
<team_name>Atlético Roraima</team_name>
</team>
<team>
<team_name>Atlético Sorocaba</team_name>
</team>
<team>
<team_name>Castanhal Campinense</team_name>
</team>
<team>
<team_name>Ceilândia</team_name>
</team>
<team>
<team_name>CENE</team_name>
</team>
<team>
<team_name>CFZ-DF</team_name>
</team>
<team>
<team_name>Tuna Luso</team_name>
</team>
<team>
<team_name>Cuiabá</team_name>
</team>
<team>
<team_name>Ferroviário</team_name>
</team>
<team>
<team_name>Gurupi</team_name>
</team>
<team>
<team_name>Novo Hamburgo</team_name>
</team>
<team>
<team_name>P. Santista</team_name>
</team>
<team>
<team_name>P. Mossoró</team_name>
</team>
<team>
<team_name>Sergipe</team_name>
</team>
<team>
<team_name>U. Rio Grande do Sul</team_name>
</team>
<team>
<team_name>União-MT</team_name>
</team>
<team>
<team_name>Tupi-MG</team_name>
</team>
<team>
<team_name>Portuguesa-RJ</team_name>
</team>
<team>
<team_name>Nacional-PR</team_name>
</team>
</teams>
</league>

View File

@ -1,86 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<league>
<sid>brazil5</sid>
<name>Série C3</name>
<short_name>Série C3</short_name>
<symbol>flag_brazil.png</symbol>
<first_week>1</first_week>
<week_gap>1</week_gap>
<average_talent>7300</average_talent>
<yellow_red>3</yellow_red>
<layer>3</layer>
<names_file>brazil</names_file>
<prom_rel>
<prom_games>
<prom_games_dest_sid>brazil2</prom_games_dest_sid>
<prom_games_cup_sid>brazil_prom_games5</prom_games_cup_sid>
</prom_games>
</prom_rel>
<teams>
<team>
<team_name>América-RJ</team_name>
</team>
<team>
<team_name>América-SP</team_name>
</team>
<team>
<team_name>B. Rio Grande do Norte</team_name>
</team>
<team>
<team_name>Catuense</team_name>
</team>
<team>
<team_name>Cianorte-PR</team_name>
</team>
<team>
<team_name>Corinthians-AL</team_name>
</team>
<team>
<team_name>Coruripe-AL</team_name>
</team>
<team>
<team_name>Esportivo-RS</team_name>
</team>
<team>
<team_name>Estrela do N.</team_name>
</team>
<team>
<team_name>Friburguense</team_name>
</team>
<team>
<team_name>Ipatinga</team_name>
</team>
<team>
<team_name>Jataiense</team_name>
</team>
<team>
<team_name>Ji-Paraná-RO</team_name>
</team>
<team>
<team_name>Lages-SC</team_name>
</team>
<team>
<team_name>Nacional-AM</team_name>
</team>
<team>
<team_name>Nacional-PR</team_name>
</team>
<team>
<team_name>River</team_name>
</team>
<team>
<team_name>SERC-MS</team_name>
</team>
<team>
<team_name>Trem-AP</team_name>
</team>
<team>
<team_name>U.S.J. Ararás</team_name>
</team>
</teams>
</league>

View File

@ -1,86 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<league>
<sid>brazil6</sid>
<name>Série C4</name>
<short_name>Série C4</short_name>
<symbol>flag_brazil.png</symbol>
<first_week>1</first_week>
<week_gap>1</week_gap>
<average_talent>7300</average_talent>
<yellow_red>3</yellow_red>
<layer>3</layer>
<names_file>brazil</names_file>
<prom_rel>
<prom_games>
<prom_games_dest_sid>brazil2</prom_games_dest_sid>
<prom_games_cup_sid>brazil_prom_games6</prom_games_cup_sid>
</prom_games>
</prom_rel>
<teams>
<team>
<team_name>Bú. Rio de Janeiro</team_name>
</team>
<team>
<team_name>B. São Paulo</team_name>
</team>
<team>
<team_name>Brasil</team_name>
</team>
<team>
<team_name>Cabofriense</team_name>
</team>
<team>
<team_name>15 Nov. Caxias</team_name>
</team>
<team>
<team_name>Fortaleza</team_name>
</team>
<team>
<team_name>G. Joinvile</team_name>
</team>
<team>
<team_name>I.d. Limeira</team_name>
</team>
<team>
<team_name>Remo</team_name>
</team>
<team>
<team_name>América-MG</team_name>
</team>
<team>
<team_name>O. Rio de Janeiro</team_name>
</team>
<team>
<team_name>Madureira</team_name>
</team>
<team>
<team_name>Joinville</team_name>
</team>
<team>
<team_name>Matonense</team_name>
</team>
<team>
<team_name>Londrina</team_name>
</team>
<team>
<team_name>Mogi Mirim</team_name>
</team>
<team>
<team_name>B. Bragança Paulista</team_name>
</team>
<team>
<team_name>Tiradentes</team_name>
</team>
<team>
<team_name>URT</team_name>
</team>
<team>
<team_name>V. Minas Gerais</team_name>
</team>
</teams>
</league>

View File

@ -1,5 +1,6 @@
<country>
<name>Bulgaria</name>
<rating>6</rating>
<symbol>flag_bulgaria.png</symbol>
<sid>bulgaria</sid>
<leagues>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>England</name>
<rating>10</rating>
<symbol>flag_england.png</symbol>
<sid>england</sid>
<leagues>

View File

@ -23,6 +23,21 @@
<team>
<team_name>London</team_name>
</team>
<team>
<team_name>Chelsea</team_name>
</team>
<team>
<team_name>Manchester</team_name>
</team>
<team>
<team_name>Liverpool</team_name>
</team>
<team>
<team_name>Everton</team_name>
</team>
<team>
<team_name>Charlton</team_name>
</team>
<team>
<team_name>Aston</team_name>
</team>
@ -35,27 +50,12 @@
<team>
<team_name>Bolton</team_name>
</team>
<team>
<team_name>Charlton</team_name>
</team>
<team>
<team_name>Chelsea</team_name>
</team>
<team>
<team_name>Everton</team_name>
</team>
<team>
<team_name>Fulham</team_name>
</team>
<team>
<team_name>Liverpool</team_name>
</team>
<team>
<team_name>Manchester C.</team_name>
</team>
<team>
<team_name>Manchester</team_name>
</team>
<team>
<team_name>Middlesbrough</team_name>
</team>

View File

@ -36,6 +36,7 @@
<teams>
<team>
<team_name>Barnsley</team_name>
<def_file>england_barnsley</def_file>
</team>
<team>
<team_name>Blackpool</team_name>

View File

@ -56,7 +56,7 @@
</choose_team>
<choose_team>
<choose_team_sid>greece1_short</choose_team_sid>
<choose_team_sid>greece1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>

View File

@ -55,7 +55,7 @@
</choose_team>
<choose_team>
<choose_team_sid>greece1_short</choose_team_sid>
<choose_team_sid>greece1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>

View File

@ -27,7 +27,7 @@
</choose_team>
<choose_team>
<choose_team_sid>belgium1 england1 france1 germany1 italy1 scotland1 spain1 greece1_short netherlands1 portugal1_short russia1_short switzerland1_short turkey1_short ukraine1_short czech1_short denmark1_short</choose_team_sid>
<choose_team_sid>belgium1 england1 france1 germany1 italy1 scotland1 spain1 greece1 netherlands1 portugal1_short russia1_short switzerland1_short turkey1_short ukraine1_short czech1_short denmark1_short</choose_team_sid>
<number_of_teams>29</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>France</name>
<rating>9</rating>
<symbol>flag_france.png</symbol>
<sid>france</sid>
<leagues>

View File

@ -21,11 +21,20 @@
<teams>
<team>
<team_name>Ajaccio</team_name>
<team_name>Paris SG</team_name>
</team>
<team>
<team_name>Auxerre</team_name>
</team>
<team>
<team_name>Lyon</team_name>
</team>
<team>
<team_name>Marseille</team_name>
</team>
<team>
<team_name>Lille</team_name>
</team>
<team>
<team_name>Bastia</team_name>
</team>
@ -42,13 +51,7 @@
<team_name>Lens</team_name>
</team>
<team>
<team_name>Lille</team_name>
</team>
<team>
<team_name>Lyon</team_name>
</team>
<team>
<team_name>Marseille</team_name>
<team_name>Ajaccio</team_name>
</team>
<team>
<team_name>Metz</team_name>
@ -62,9 +65,6 @@
<team>
<team_name>Nice</team_name>
</team>
<team>
<team_name>Paris SG</team_name>
</team>
<team>
<team_name>Rennes</team_name>
</team>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Deutschland</name>
<rating>9</rating>
<symbol>flag_germany.png</symbol>
<sid>germany</sid>
<leagues>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Ireland</name>
<rating>4</rating>
<symbol>flag_ireland.png</symbol>
<sid>ireland</sid>
<leagues>

View File

@ -49,7 +49,7 @@
</choose_team>
<choose_team>
<choose_team_sid>greece1_short</choose_team_sid>
<choose_team_sid>greece1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>

View File

@ -25,7 +25,7 @@
</choose_team>
<choose_team>
<choose_team_sid>england1 france1 germany1 greece1_short
<choose_team_sid>england1 france1 germany1 greece1
italy1 netherlands1_short portugal1_short russia1_short
scotland1 spain1 switzerland1_short turkey1_short
ukraine1_short belgium1 czech1_short

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Italy</name>
<rating>10</rating>
<symbol>flag_italy.png</symbol>
<sid>italy</sid>
<leagues>

View File

@ -20,6 +20,21 @@
</prom_rel>
<teams>
<team>
<team_name>Roma</team_name>
</team>
<team>
<team_name>Milano</team_name>
</team>
<team>
<team_name>I. Milano</team_name>
</team>
<team>
<team_name>J. Torino</team_name>
</team>
<team>
<team_name>L. Roma</team_name>
</team>
<team>
<team_name>Atalanta</team_name>
</team>
@ -38,15 +53,6 @@
<team>
<team_name>Firenze</team_name>
</team>
<team>
<team_name>I. Milano</team_name>
</team>
<team>
<team_name>J. Torino</team_name>
</team>
<team>
<team_name>L. Roma</team_name>
</team>
<team>
<team_name>Lecce</team_name>
</team>
@ -56,9 +62,6 @@
<team>
<team_name>Messina</team_name>
</team>
<team>
<team_name>Milano</team_name>
</team>
<team>
<team_name>Palermo</team_name>
</team>
@ -68,9 +71,6 @@
<team>
<team_name>Reggina</team_name>
</team>
<team>
<team_name>Roma</team_name>
</team>
<team>
<team_name>S. Genoa</team_name>
</team>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Netherlands</name>
<rating>7</rating>
<symbol>flag_netherlands.png</symbol>
<sid>netherlands</sid>
<leagues>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Poland</name>
<rating>7</rating>
<symbol>flag_poland.png</symbol>
<sid>poland</sid>
<leagues>

View File

@ -1,5 +1,6 @@
<country>
<name>România</name>
<rating>7</rating>
<symbol>flag_romania.png</symbol>
<sid>romania</sid>
<leagues>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Serbia and Montenegro</name>
<rating>5</rating>
<symbol>flag_scg.png</symbol>
<sid>scg</sid>
<leagues>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Scotland</name>
<rating>6</rating>
<symbol>flag_scotland.png</symbol>
<sid>scotland</sid>
<leagues>

View File

@ -21,15 +21,15 @@
</prom_rel>
<teams>
<team>
<team_name>Aberdeen</team_name>
</team>
<team>
<team_name>C. Glasgow</team_name>
</team>
<team>
<team_name>Glasgow R.</team_name>
</team>
<team>
<team_name>Aberdeen</team_name>
</team>
<team>
<team_name>Falkirk</team_name>
</team>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Spain</name>
<rating>10</rating>
<symbol>flag_spain.png</symbol>
<sid>spain</sid>
<leagues>

View File

@ -22,16 +22,25 @@
<teams>
<team>
<team_name>Alavés</team_name>
<team_name>A. Madrid</team_name>
</team>
<team>
<team_name>A. Madrid</team_name>
<team_name>Barcelona</team_name>
</team>
<team>
<team_name>R. Madrid</team_name>
</team>
<team>
<team_name>La Coruña</team_name>
</team>
<team>
<team_name>Valencia</team_name>
</team>
<team>
<team_name>A. Bilbao</team_name>
</team>
<team>
<team_name>Barcelona</team_name>
<team_name>Alavés</team_name>
</team>
<team>
<team_name>B. Sevilla</team_name>
@ -42,9 +51,6 @@
<team>
<team_name>C. Vigo</team_name>
</team>
<team>
<team_name>La Coruña</team_name>
</team>
<team>
<team_name>E. Barcelona</team_name>
</team>
@ -60,9 +66,6 @@
<team>
<team_name>Osasuna</team_name>
</team>
<team>
<team_name>R. Madrid</team_name>
</team>
<team>
<team_name>R. Sociedad</team_name>
</team>
@ -72,9 +75,6 @@
<team>
<team_name>Sevilla</team_name>
</team>
<team>
<team_name>Valencia</team_name>
</team>
<team>
<team_name>Villarreal</team_name>
</team>

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>United States</name>
<rating>5</rating>
<symbol>flag_usa.png</symbol>
<sid>usa</sid>
<leagues>

View File

@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>Wales</name>
<rating>4</rating>
<symbol>flag_wales.png</symbol>
<sid>wales</sid>
<supernational></supernational>
<leagues>
<league>wales1</league>
<league>wales2a</league>

View File

@ -49,7 +49,7 @@
</choose_team>
<choose_team>
<choose_team_sid>greece1_short</choose_team_sid>
<choose_team_sid>greece1</choose_team_sid>
<number_of_teams>1</number_of_teams>
<randomly>1</randomly>
<generate>1</generate>

View File

@ -25,7 +25,7 @@
</choose_team>
<choose_team>
<choose_team_sid>england1 france1 germany1 greece1_short
<choose_team_sid>england1 france1 germany1 greece1
italy1 netherlands1_short portugal1_short russia1_short
scotland1 spain1 switzerland1_short turkey1_short
ukraine1_short belgium1 czech1_short

View File

@ -1,9 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<country>
<name>World Cup 2006</name>
<rating>-1</rating>
<symbol>flag_wc06.png</symbol>
<sid>wc06</sid>
<supernational>1</supernational>
<rating>10</rating>
<leagues>
<league>wc06_europe_teams</league>

View File

@ -6,6 +6,7 @@
<short_name>Africa</short_name>
<average_talent>7000</average_talent>
<active>0</active>
<layer>1</layer>
<team>
<team_name>Togo</team_name>

View File

@ -6,6 +6,7 @@
<short_name>Asia</short_name>
<average_talent>7000</average_talent>
<active>0</active>
<layer>1</layer>
<teams>
<team>

View File

@ -7,6 +7,7 @@
<symbol>flag_eu.png</symbol>
<average_talent>9000</average_talent>
<active>0</active>
<layer>1</layer>
<teams>
<team>
@ -59,7 +60,7 @@
<team>
<team_name>Greece</team_name>
<team_average_talent>8495</team_average_talent>
<team_symbol>flag_gr.png</team_symbol>
<team_symbol>flag_greece.png</team_symbol>
</team>
<team>
<team_name>Denmark</team_name>

View File

@ -5,6 +5,7 @@
<short_name>NCAmerica</short_name>
<average_talent>7000</average_talent>
<active>0</active>
<layer>1</layer>
<teams>
<team>

View File

@ -5,6 +5,7 @@
<short_name>Oceania</short_name>
<average_talent>6000</average_talent>
<active>0</active>
<layer>1</layer>
<teams>
<team>

View File

@ -5,6 +5,7 @@
<short_name>SAmerica</short_name>
<average_talent>9000</average_talent>
<active>0</active>
<layer>1</layer>
<teams>
<team>

View File

@ -8,7 +8,7 @@
<commentary>Невероятен пас по дължината на игрището и надясно.</commentary>
<commentary>Бърз пас наляво.</commentary>
<commentary>Пореден добър пробив по крилото</commentary>
<commentary>_P0_ се включва чрез паса на _P1_'s</commentary>
<commentary>_P0_ се включва чрез паса на _P1_</commentary>
<commentary>_P1_ прави пробивен пас през много играчи и намира _P0_</commentary>
<commentary>_P1_ спира на гърди и подава към _P0_</commentary>
<commentary>_P1_ подава с глава напред към _P0_</commentary>

View File

@ -90,7 +90,7 @@
<commentary pri="10" cond="_PLGOALS0_ > 10 and _TIME_ != 3">Schon _PLGOALS0_ [Treffer|Tore] für _P0_ in der _LEAGUECUPNAME_!</commentary>
<commentary pri="10" cond="_PLGOALS0_ > 15 and _TIME_ != 3">Kaum zu fassen, _PLGOALS0_-tes Tor für _P0_!</commentary>
<commentary pri="10" cond="_PLGOALS0_ > 10 and _TIME_ != 3">Ein [Goalgetter|Torjäger] wie er im Buche steht, _PLGOALS0_-tes Tor für _P0_!</commentary>
<commentary pri="5" cond="_GOALS[1 - _TT_]_ > 2 and _TIME_ != 3">Zum _GOALS[1 - _TT_]_-ten Mal muss _P1_ hinter sich greifen!</commentary>
<commentary pri="5" cond="_GOALS_TT__ > 2 and _TIME_ != 3">Zum _GOALS_TT__-ten Mal muss _P1_ hinter sich greifen!</commentary>
</event>
<event>
@ -303,7 +303,7 @@
<commentary>_P1_ foult: _P0_ scheint verletzt zu sein... er muss vielleicht raus</commentary>
<commentary>_P1_ trifft nur noch [das Bein|den Knöchel] von _P0_, [die Kugel|der Ball] war längst weg</commentary>
<commentary cond="_REDS1_ + _REDS0_ = 0">Böses Foul von _P1_, _T_TT__ spielt ab jetzt in Unterzahl</commentary>
<commentary cond="_REDS0_ = _REDS1_">Dieses fiese Foul von _P1_ stellt die Spielerverhältnisse wieder her</commentary>
<commentary cond="_REDS_TT__ + 1 = _REDS[1 - _TT_]_" pri="20">Dieses fiese Foul von _P1_ stellt die Spielerverhältnisse wieder her</commentary>
<commentary>_P0_ ist verletzt nach einer gemeinen Attacke von _P1_</commentary>
</event>
@ -314,6 +314,7 @@
<commentary>_P1_ für [ungebührliches Verhalten|Ballwegtreten|Handspiel|Behinderung]</commentary>
<commentary cond="_MT_ < 15">_P1_ für Zeitschinden</commentary>
<commentary>_P1_ wird wegen Meckerns verwarnt</commentary>
<commentary pri="5" cond="_PLYELLOWS_ > 2">_PLYELLOWS_-te gelbe Karte für _P1_</commentary>
</event>
<event>
@ -451,8 +452,8 @@
<name>style_change</name>
<commentary>_T_TT__ hat den Spielstil auf _EX_ umgestellt</commentary>
<commentary>_T_TT__s Stil ist _EX_ jetzt</commentary>
<commentary>_T_TT__s stellt auf _EX_ um</commentary>
<commentary>_T_TT__s probiert es mit _EX_</commentary>
<commentary>_T_TT__ stellt auf _EX_ um</commentary>
<commentary>_T_TT__ probiert es mit _EX_</commentary>
</event>
</lg_commentary>

View File

@ -13,10 +13,13 @@
<first_name>Bernardinho</first_name>
<first_name>Bernardo</first_name>
<first_name>Bernardão</first_name>
<first_name>Bebeto</first_name>
<first_name>Betão</first_name>
<first_name>Beto</first_name>
<first_name>Bento</first_name>
<first_name>Bilú</first_name>
<first_name>Carlinhos</first_name>
<first_name>Cabralzinho</first_name>
<first_name>Cacá</first_name>
<first_name>Carlinhos</first_name>
<first_name>Carlos</first_name>
<first_name>Cassio</first_name>
@ -40,21 +43,27 @@
<first_name>Eder</first_name>
<first_name>Edgard</first_name>
<first_name>Eduardo</first_name>
<first_name>Edmundo</first_name>
<first_name>Edson</first_name>
<first_name>Edú</first_name>
<first_name>Elcio</first_name>
<first_name>Evandro</first_name>
<first_name>Fábio</first_name>
<first_name>Fabiano</first_name>
<first_name>Fabricio</first_name>
<first_name>Felipe</first_name>
<first_name>Fernando</first_name>
<first_name>Fernandinho</first_name>
<first_name>Fernandão</first_name>
<first_name>Francisco</first_name>
<first_name>Gabriel</first_name>
<first_name>Gilberto</first_name>
<first_name>Gustavo</first_name>
<first_name>Helder</first_name>
<first_name>Hugo</first_name>
<first_name>Humberto</first_name>
<first_name>Ivan</first_name>
<first_name>Itamar</first_name>
<first_name>Ivo</first_name>
<first_name>Jair</first_name>
<first_name>Jairo</first_name>
@ -64,6 +73,7 @@
<first_name>Joãozinho</first_name>
<first_name>Jonas</first_name>
<first_name>Jorge</first_name>
<first_name>Juca</first_name>
<first_name>Juninho</first_name>
<first_name>Junior</first_name>
<first_name>Juvenal</first_name>
@ -98,6 +108,8 @@
<first_name>Rogério</first_name>
<first_name>Roger</first_name>
<first_name>Romário</first_name>
<first_name>Rômulo</first_name>
<first_name>Ronaldão</first_name>
<first_name>Ronaldo</first_name>
<first_name>Ronaldinho</first_name>
<first_name>Roque</first_name>
@ -111,6 +123,7 @@
<first_name>Silvinho</first_name>
<first_name>Tadeu</first_name>
<first_name>Tavinho</first_name>
<first_name>Tatá</first_name>
<first_name>Thiago</first_name>
<first_name>Toninho</first_name>
<first_name>Totó</first_name>
@ -118,6 +131,7 @@
<first_name>Valdemar</first_name>
<first_name>Valter</first_name>
<first_name>Vanderlei</first_name>
<first_name>Vavá</first_name>
<first_name>Vicente</first_name>
<first_name>Victor</first_name>
<first_name>Vinícius</first_name>
@ -128,6 +142,7 @@
<first_name>Wiliam</first_name>
<first_name>Zacarias</first_name>
<first_name>Zeca</first_name>
<first_name>Zequinha</first_name>
<first_name>Zé Maria</first_name>
<first_name>Zé Pedro</first_name>
<first_name>Zé Roberto</first_name>
@ -148,6 +163,7 @@
<last_name>Antunes</last_name>
<last_name>Arantes</last_name>
<last_name>Assunção</last_name>
<last_name>Bala</last_name>
<last_name>Barbosa</last_name>
<last_name>Barros</last_name>
<last_name>Barroso</last_name>
@ -157,16 +173,20 @@
<last_name>Bitencourt</last_name>
<last_name>Braga</last_name>
<last_name>Bueno</last_name>
<last_name>Caipira</last_name>
<last_name>Camargo</last_name>
<last_name>Campos</last_name>
<last_name>Capixaba</last_name>
<last_name>Carioca</last_name>
<last_name>Carvalho</last_name>
<last_name>Cearense</last_name>
<last_name>Chamusca</last_name>
<last_name>Cometa</last_name>
<last_name>Coutinho</last_name>
<last_name>Cruz</last_name>
<last_name>da Costa</last_name>
<last_name>da Mata</last_name>
<last_name>da Silva</last_name>
<last_name>Dantas</last_name>
<last_name>de Luca</last_name>
<last_name>de Jesus</last_name>
@ -174,6 +194,7 @@
<last_name>Defavori</last_name>
<last_name>Dias</last_name>
<last_name>Diniz</last_name>
<last_name>dos Anjos</last_name>
<last_name>dos Santos</last_name>
<last_name>Faria</last_name>
<last_name>Favoretto</last_name>
@ -184,24 +205,30 @@
<last_name>Galvão</last_name>
<last_name>Garcia</last_name>
<last_name>Gaúcho</last_name>
<last_name>Goiaba</last_name>
<last_name>Goiâno</last_name>
<last_name>Gomes</last_name>
<last_name>Gonçalvez</last_name>
<last_name>Goya</last_name>
<last_name>Guimarães</last_name>
<last_name>Junior</last_name>
<last_name>Junqueira</last_name>
<last_name>Laranjeira</last_name>
<last_name>Leite</last_name>
<last_name>Lima</last_name>
<last_name>Linhares</last_name>
<last_name>Lopes</last_name>
<last_name>Macedo</last_name>
<last_name>Maciel</last_name>
<last_name>Maloca</last_name>
<last_name>Mandrake</last_name>
<last_name>Marciano</last_name>
<last_name>Marques</last_name>
<last_name>Martins</last_name>
<last_name>Melo</last_name>
<last_name>Mendes</last_name>
<last_name>Mendonça</last_name>
<last_name>Metralha</last_name>
<last_name>Mineiro</last_name>
<last_name>Miranda</last_name>
<last_name>Moreno</last_name>
@ -220,7 +247,9 @@
<last_name>Paraíbano</last_name>
<last_name>Paulista</last_name>
<last_name>Pereira</last_name>
<last_name>Peres</last_name>
<last_name>Pernambucano</last_name>
<last_name>Pézão</last_name>
<last_name>Pinheiro</last_name>
<last_name>Pinto</last_name>
<last_name>Prado</last_name>
@ -233,6 +262,7 @@
<last_name>Sales</last_name>
<last_name>Santos</last_name>
<last_name>Sampaio</last_name>
<last_name>Samuca</last_name>
<last_name>Silva</last_name>
<last_name>Silveira</last_name>
<last_name>Soares</last_name>

View File

@ -81,7 +81,7 @@
<first_name>Marc</first_name>
<first_name>Mika</first_name>
<first_name>Nick</first_name>
<first_name>Till </first_name>
<first_name>Till</first_name>
<first_name>Torben</first_name>
<first_name>Björn</first_name>
<first_name>Elias</first_name>
@ -104,9 +104,9 @@
<first_name>Jason</first_name>
<first_name>Jasper</first_name>
<first_name>Jeremy</first_name>
<first_name>Konstantin </first_name>
<first_name>Konstantin</first_name>
<first_name>Marco</first_name>
<first_name>Martin </first_name>
<first_name>Martin</first_name>
<first_name>Phil</first_name>
<first_name>Richard</first_name>
<first_name>Sascha</first_name>
@ -403,7 +403,7 @@
<last_name>Lux</last_name>
<last_name>Manthei</last_name>
<last_name>Manthey</last_name>
<last_name>Mauss - Mauß</last_name>
<last_name>Mauss-Mauß</last_name>
<last_name>Mausz</last_name>
<last_name>Metzger</last_name>
<last_name>Metzler</last_name>

View File

Before

Width:  |  Height:  |  Size: 356 B

After

Width:  |  Height:  |  Size: 356 B