Changeset 102 for trunk/UEngine.pas


Ignore:
Timestamp:
Sep 28, 2022, 9:54:51 PM (20 months ago)
Author:
chronos
Message:
  • Modified: More cities available in career mode.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.