episodes.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * ===========================================================================
  3. *
  4. * Wolf3D Browser Version GPL Source Code
  5. * Copyright (C) 2012 id Software LLC, a ZeniMax Media company.
  6. *
  7. * This file is part of the Wolf3D Browser Version GPL Source Code ("Wolf3D Browser Source Code").
  8. *
  9. * Wolf3D Browser Source Code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation, either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * Wolf3D Browser Source Code is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License version 2
  20. * along with Wolf3D Browser Source Code. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. * If you have questions concerning this license, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
  23. *
  24. * ===========================================================================
  25. */
  26. /**
  27. * @namespace
  28. * @description Episode data
  29. */
  30. Wolf.Episodes = [
  31. {
  32. name : "Escape from Wolfenstein",
  33. enabled : true,
  34. levels : [
  35. { file : "maps/w00.map", partime : 1.5 },
  36. { file : "maps/w01.map", partime : 2.0 },
  37. { file : "maps/w02.map", partime : 2.0 },
  38. { file : "maps/w03.map", partime : 3.5 },
  39. { file : "maps/w04.map", partime : 3.0 },
  40. { file : "maps/w05.map", partime : 3.0 },
  41. { file : "maps/w06.map", partime : 2.5 },
  42. { file : "maps/w07.map", partime : 2.5 },
  43. { file : "maps/w08.map", partime : 0.0 },
  44. { file : "maps/w09.map", partime : 0.0, secret : true }
  45. ]
  46. },{
  47. name : "Operation: Eisenfaust",
  48. enabled : true,
  49. levels : [
  50. { file : "maps/w10.map", partime : 1.5 },
  51. { file : "maps/w11.map", partime : 3.5 },
  52. { file : "maps/w12.map", partime : 3.0 },
  53. { file : "maps/w13.map", partime : 2.0 },
  54. { file : "maps/w14.map", partime : 4.0 },
  55. { file : "maps/w15.map", partime : 6.0 },
  56. { file : "maps/w16.map", partime : 1.0 },
  57. { file : "maps/w17.map", partime : 3.0 },
  58. { file : "maps/w18.map", partime : 0.0 },
  59. { file : "maps/w19.map", partime : 0.0, secret : true }
  60. ]
  61. },{
  62. name : "Die, Fuhrer, Die!",
  63. enabled : true,
  64. levels : [
  65. { file : "maps/w20.map", partime : 1.5 },
  66. { file : "maps/w21.map", partime : 1.5 },
  67. { file : "maps/w22.map", partime : 2.5 },
  68. { file : "maps/w23.map", partime : 2.5 },
  69. { file : "maps/w24.map", partime : 3.5 },
  70. { file : "maps/w25.map", partime : 2.5 },
  71. { file : "maps/w26.map", partime : 2.0 },
  72. { file : "maps/w27.map", partime : 6.0 },
  73. { file : "maps/w28.map", partime : 0.0 },
  74. { file : "maps/w29.map", partime : 0.0, secret : true }
  75. ]
  76. }
  77. ];