wolf3d-browser/js/episodes.js
Brian Harris e0b653888d Wolfenstein 3D browser version
This is the code for the browser version of Wolfenstein 3D which is
playable on http://www.wolfenstein.com/game_NA.php
2013-05-16 11:34:31 -05:00

80 lines
3.3 KiB
JavaScript

/*
* ===========================================================================
*
* Wolf3D Browser Version GPL Source Code
* Copyright (C) 2012 id Software LLC, a ZeniMax Media company.
*
* This file is part of the Wolf3D Browser Version GPL Source Code ("Wolf3D Browser Source Code").
*
* Wolf3D Browser Source Code is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* Wolf3D Browser Source Code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License version 2
* along with Wolf3D Browser Source Code. If not, see <http://www.gnu.org/licenses/>.
*
* 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.
*
* ===========================================================================
*/
/**
* @namespace
* @description Episode data
*/
Wolf.Episodes = [
{
name : "Escape from Wolfenstein",
enabled : true,
levels : [
{ file : "maps/w00.map", partime : 1.5 },
{ file : "maps/w01.map", partime : 2.0 },
{ file : "maps/w02.map", partime : 2.0 },
{ file : "maps/w03.map", partime : 3.5 },
{ file : "maps/w04.map", partime : 3.0 },
{ file : "maps/w05.map", partime : 3.0 },
{ file : "maps/w06.map", partime : 2.5 },
{ file : "maps/w07.map", partime : 2.5 },
{ file : "maps/w08.map", partime : 0.0 },
{ file : "maps/w09.map", partime : 0.0, secret : true }
]
},{
name : "Operation: Eisenfaust",
enabled : true,
levels : [
{ file : "maps/w10.map", partime : 1.5 },
{ file : "maps/w11.map", partime : 3.5 },
{ file : "maps/w12.map", partime : 3.0 },
{ file : "maps/w13.map", partime : 2.0 },
{ file : "maps/w14.map", partime : 4.0 },
{ file : "maps/w15.map", partime : 6.0 },
{ file : "maps/w16.map", partime : 1.0 },
{ file : "maps/w17.map", partime : 3.0 },
{ file : "maps/w18.map", partime : 0.0 },
{ file : "maps/w19.map", partime : 0.0, secret : true }
]
},{
name : "Die, Fuhrer, Die!",
enabled : true,
levels : [
{ file : "maps/w20.map", partime : 1.5 },
{ file : "maps/w21.map", partime : 1.5 },
{ file : "maps/w22.map", partime : 2.5 },
{ file : "maps/w23.map", partime : 2.5 },
{ file : "maps/w24.map", partime : 3.5 },
{ file : "maps/w25.map", partime : 2.5 },
{ file : "maps/w26.map", partime : 2.0 },
{ file : "maps/w27.map", partime : 6.0 },
{ file : "maps/w28.map", partime : 0.0 },
{ file : "maps/w29.map", partime : 0.0, secret : true }
]
}
];