Changeset 102


Ignore:
Timestamp:
Sep 28, 2022, 9:54:51 PM (19 months ago)
Author:
chronos
Message:
  • Modified: More cities available in career mode.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Languages/BigMetro.cs.po

    r100 r102  
    3535msgstr "Zpět"
    3636
     37#: uengine.sbeijing
     38msgid "Beijing"
     39msgstr "Peking"
     40
    3741#: uengine.sbigmetro
    3842msgctxt "uengine.sbigmetro"
     
    167171msgid "Rome"
    168172msgstr "Řím"
     173
     174#: uengine.sseoul
     175msgid "Seoul"
     176msgstr "Soul"
    169177
    170178#: uengine.sstationnotdefined
  • trunk/Languages/BigMetro.de.po

    r100 r102  
    3737msgstr "Zurück"
    3838
     39#: uengine.sbeijing
     40msgid "Beijing"
     41msgstr ""
     42
    3943#: uengine.sbigmetro
    4044#, fuzzy
     
    183187msgstr ""
    184188
     189#: uengine.sseoul
     190msgid "Seoul"
     191msgstr ""
     192
    185193#: uengine.sstationnotdefined
    186194msgid "Station have to be defined"
  • trunk/Languages/BigMetro.fr.po

    r100 r102  
    3737msgstr "Retour"
    3838
     39#: uengine.sbeijing
     40msgid "Beijing"
     41msgstr ""
     42
    3943#: uengine.sbigmetro
    4044#, fuzzy
     
    183187msgstr ""
    184188
     189#: uengine.sseoul
     190msgid "Seoul"
     191msgstr ""
     192
    185193#: uengine.sstationnotdefined
    186194msgid "Station have to be defined"
  • trunk/Languages/BigMetro.pot

    r100 r102  
    2525msgstr ""
    2626
     27#: uengine.sbeijing
     28msgid "Beijing"
     29msgstr ""
     30
    2731#: uengine.sbigmetro
    2832msgctxt "uengine.sbigmetro"
     
    156160#: uengine.srome
    157161msgid "Rome"
     162msgstr ""
     163
     164#: uengine.sseoul
     165msgid "Seoul"
    158166msgstr ""
    159167
  • trunk/UEngine.pas

    r101 r102  
    387387  STokyo = 'Tokyo';
    388388  SRome = 'Rome';
     389  SSeoul = 'Seoul';
     390  SBeijing = 'Beijing';
    389391
    390392{ TMetroCarriage }
     
    19551957      LineColors := [clRed, clGreen, clYellow];
    19561958      InitialLineCount := 1;
    1957       PassengersCountToUnlock := 200;
     1959      PassengersCountToUnlock := 300;
    19581960    end;
    19591961    with AddNew('Paris', SParis, 2138551) do begin
     
    19611963        clPurple, clOlive, clAqua, clDarkYellow, clPink];
    19621964      InitialLineCount := 1;
    1963       PassengersCountToUnlock := 300;
     1965      PassengersCountToUnlock := 500;
    19641966    end;
    19651967    with AddNew('Rome', SRome, 2872800) do begin
    19661968      LineColors := [clRed, clGreen, clYellow];
    19671969      InitialLineCount := 1;
    1968       PassengersCountToUnlock := 500;
     1970      PassengersCountToUnlock := 700;
    19691971    end;
    19701972    with AddNew('NewYork', SNewYork, 8804190) do begin
    19711973      InitialLineCount := 1;
    1972       PassengersCountToUnlock := 700;
     1974      PassengersCountToUnlock := 1000;
    19731975    end;
    19741976    with AddNew('London', SLondon, 9002488) do begin
    19751977      InitialLineCount := 3;
    1976       PassengersCountToUnlock := 1000;
     1978      PassengersCountToUnlock := 1500;
     1979    end;
     1980    with AddNew('Seoul', SSeoul, 10197604) do begin
     1981      InitialLineCount := 3;
     1982      LineColors := [clRed, clGreen, clYellow, clOrange, clGray,
     1983        clPink, clCyan, clMoneyGreen, clPurple, clSkyBlue];
     1984      PassengersCountToUnlock := 2000;
    19771985    end;
    19781986    with AddNew('Tokyo', STokyo, 13960236) do begin
    19791987      InitialLineCount := 3;
    1980       PassengersCountToUnlock := 2000;
     1988      PassengersCountToUnlock := 2500;
     1989    end;
     1990    with AddNew('Beijing', SBeijing, 21893095) do begin
     1991      InitialLineCount := 3;
     1992      LineColors := [clRed, clGreen, clYellow, clOrange, clOlive, clGray,
     1993        clPink, clCyan, clMoneyGreen, clPurple, clSkyBlue, clBrown];
     1994      PassengersCountToUnlock := 3000;
    19811995    end;
    19821996  end;
Note: See TracChangeset for help on using the changeset viewer.