20 lines
682 B
C#
20 lines
682 B
C#
public static class JapanMap {
|
|
public static MapDefinition Create() {
|
|
return new MapDefinition {
|
|
mapId = MapId.Japan,
|
|
displayName = "Japan",
|
|
routeName = "후쿠오카 라멘 투어",
|
|
isTutorial = false,
|
|
platformSkin = Platform.PlatformSkin.Japan,
|
|
backgroundResourcePath = "Map_Japan_Fukuoka",
|
|
finishGateStyle = FinishGateStyle.JapanTorii,
|
|
targetDistance = 1200f,
|
|
timeLimit = 105f,
|
|
clearMileageReward = 250,
|
|
hasNextMap = true,
|
|
nextMapId = MapId.China,
|
|
courseProfile = JapanCourseProfile.Create()
|
|
};
|
|
}
|
|
}
|