more seeds
This commit is contained in:
@@ -3,6 +3,7 @@ import { Track } from '@core/racing/domain/entities/Track';
|
||||
export class RacingTrackFactory {
|
||||
create(): Track[] {
|
||||
return [
|
||||
// Road tracks - various difficulties
|
||||
Track.create({
|
||||
id: 'track-spa',
|
||||
name: 'Spa-Francorchamps',
|
||||
@@ -63,6 +64,67 @@ export class RacingTrackFactory {
|
||||
imageUrl: '/images/tracks/suzuka.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-laguna',
|
||||
name: 'WeatherTech Raceway Laguna Seca',
|
||||
shortName: 'LAG',
|
||||
country: 'United States',
|
||||
category: 'road',
|
||||
difficulty: 'advanced',
|
||||
lengthKm: 3.602,
|
||||
turns: 11,
|
||||
imageUrl: '/images/tracks/laguna.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-zandvoort',
|
||||
name: 'Circuit Zandvoort',
|
||||
shortName: 'ZAN',
|
||||
country: 'Netherlands',
|
||||
category: 'road',
|
||||
difficulty: 'intermediate',
|
||||
lengthKm: 4.259,
|
||||
turns: 14,
|
||||
imageUrl: '/images/tracks/zandvoort.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-imola',
|
||||
name: 'Autodromo Enzo e Dino Ferrari',
|
||||
shortName: 'IMO',
|
||||
country: 'Italy',
|
||||
category: 'road',
|
||||
difficulty: 'advanced',
|
||||
lengthKm: 4.909,
|
||||
turns: 19,
|
||||
imageUrl: '/images/tracks/imola.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-le-mans',
|
||||
name: 'Circuit de la Sarthe',
|
||||
shortName: 'LEM',
|
||||
country: 'France',
|
||||
category: 'road',
|
||||
difficulty: 'expert',
|
||||
lengthKm: 13.626,
|
||||
turns: 38,
|
||||
imageUrl: '/images/tracks/le-mans.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-hockenheim',
|
||||
name: 'Hockenheimring',
|
||||
shortName: 'HOC',
|
||||
country: 'Germany',
|
||||
category: 'road',
|
||||
difficulty: 'intermediate',
|
||||
lengthKm: 4.574,
|
||||
turns: 17,
|
||||
imageUrl: '/images/tracks/hockenheim.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
// Oval tracks
|
||||
Track.create({
|
||||
id: 'track-daytona',
|
||||
name: 'Daytona International Speedway',
|
||||
@@ -76,15 +138,65 @@ export class RacingTrackFactory {
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-laguna',
|
||||
name: 'WeatherTech Raceway Laguna Seca',
|
||||
shortName: 'LAG',
|
||||
id: 'track-indianapolis',
|
||||
name: 'Indianapolis Motor Speedway',
|
||||
shortName: 'IMS',
|
||||
country: 'United States',
|
||||
category: 'road',
|
||||
category: 'oval',
|
||||
difficulty: 'advanced',
|
||||
lengthKm: 3.602,
|
||||
turns: 11,
|
||||
imageUrl: '/images/tracks/laguna.jpg',
|
||||
lengthKm: 4.192,
|
||||
turns: 4,
|
||||
imageUrl: '/images/tracks/indianapolis.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-talladega',
|
||||
name: 'Talladega Superspeedway',
|
||||
shortName: 'TAL',
|
||||
country: 'United States',
|
||||
category: 'oval',
|
||||
difficulty: 'beginner',
|
||||
lengthKm: 4.280,
|
||||
turns: 4,
|
||||
imageUrl: '/images/tracks/talladega.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
// Street tracks
|
||||
Track.create({
|
||||
id: 'track-miami',
|
||||
name: 'Miami Street Circuit',
|
||||
shortName: 'MIA',
|
||||
country: 'United States',
|
||||
category: 'street',
|
||||
difficulty: 'intermediate',
|
||||
lengthKm: 5.410,
|
||||
turns: 19,
|
||||
imageUrl: '/images/tracks/miami.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
Track.create({
|
||||
id: 'track-las-vegas',
|
||||
name: 'Las Vegas Street Circuit',
|
||||
shortName: 'VEG',
|
||||
country: 'United States',
|
||||
category: 'street',
|
||||
difficulty: 'advanced',
|
||||
lengthKm: 6.201,
|
||||
turns: 17,
|
||||
imageUrl: '/images/tracks/las-vegas.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
// Dirt tracks
|
||||
Track.create({
|
||||
id: 'track-eldo',
|
||||
name: 'Eldora Speedway',
|
||||
shortName: 'ELD',
|
||||
country: 'United States',
|
||||
category: 'dirt',
|
||||
difficulty: 'beginner',
|
||||
lengthKm: 0.805,
|
||||
turns: 4,
|
||||
imageUrl: '/images/tracks/eldora.jpg',
|
||||
gameId: 'iracing',
|
||||
}),
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user