36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using static CourseStepFactory;
|
|
|
|
public static class JapanMap {
|
|
public static MapDefinition Create() {
|
|
return new MapDefinition {
|
|
mapId = MapId.Japan,
|
|
displayName = "Japan",
|
|
routeName = "후쿠오카 라멘 투어",
|
|
isTutorial = false,
|
|
platformSkin = Platform.PlatformSkin.Japan,
|
|
backgroundResourcePath = "",
|
|
finishGateStyle = FinishGateStyle.JapanTorii,
|
|
targetDistance = 1200f,
|
|
timeLimit = 105f,
|
|
clearMileageReward = 250,
|
|
hasNextMap = true,
|
|
nextMapId = MapId.China,
|
|
openingSteps = new CourseStep[] {
|
|
Basic(),
|
|
Basic()
|
|
},
|
|
loopSteps = new CourseStep[] {
|
|
Basic(),
|
|
Jump(),
|
|
Basic(GroundY, LandingSpacing),
|
|
Aerial(),
|
|
Basic(GroundY, LandingSpacing),
|
|
Slide(SlideObstaclePattern.SlideLayout.CenterPair),
|
|
Basic(),
|
|
Jump(Platform.PlatformPattern.LowLeft),
|
|
Basic()
|
|
}
|
|
};
|
|
}
|
|
}
|