
//------------------------------------------------------------------
// Zone Description
// contains information about the whole zone
// can be completely omitted (then default-values are used)
//------------------------------------------------------------------
<Zone>        // this starts the zone description

              /* display name for this zone */
Name="Pastel";
              /* default="<name of directory>" */

    //------------------------------------

              /* Name of the author */
Author="Andreas Spreen";
              /* Only the first 20 characters will be displayed.
               * default="" (no display) */

    //------------------------------------

              /* skill level for this zone
               *  (the zones are ordered by this value) */
Skill=2;
              /* 1=easy , ... , 10=hard
               * default=5 */

    //------------------------------------

              /* backgroundcolor for all levels */
Backcolor=RGB(191,205,250); 
              /* hexadecimal number 0xrrggbb with rr=red, gg=green, bb=blue
               * default=0x000000
               * or use RGB : Backgroundcolor=RGB(16,32,48)
               *              three decimal numbers for red, green and blue */

    //------------------------------------

              /* bitmap file for the snake graphics */
SnakeGfxFile="../../Gfx/items_blue.bmp";
              /* default="../../Gfx/items.bmp"  , for backcolor=black
               * for backcolor=light blue use "../../Gfx/items_blue.bmp"
               * for other colors or just new snake-gfx
               * create your own bmp the same size
               * in local directory  (e.g. "./myNewSnakeGfx.bmp") */

</Zone>       // this ends the zone description


//------------------------------------------------------------------



//------------------------------------------------------------------
// Level-Header
// contains information about one level
// can not be omitted (although only the filename is nessecary)
//------------------------------------------------------------------
<Level>       // begin level description

              /* name of the level file without the .fmp ending */
Filename="x05";

              /* timelimit for the level in seconds */
Time=70,50,30;
              /* The three numbers stand for easy, normal and hard skill. 
               * default=60,50,40 */

              /* Snakespeed at the start */
StartSpeed=9,8,7;
              /* This is the speed that the snakes starts with
               * (and returns to when collecting the Slow-Down-Bonus)
               * 1=very very fast, 10 or more is rather slow
               * default=10,8,6 */

              /* maximal speed for the snake */
TopSpeed=5,4,3;
              /* This is the speed the snake eventually gets
               * after the speed slowly increases.
               * 1=very very fast, 10 or more is rather slow
               * default=5,4,3 */

              /* number of seconds before the speed increases again */
IncSpeed=8,7,6;
              /* Every x.th second the snake's speed is increased
               * until it reaches TopSpeed
               * default=7,6,5 */

</Level>      // end of level description  


<Level>       // begin level description
  Filename="x03";
  Time=60,50,40;
  StartSpeed=9,8,7;
  TopSpeed=5,4,3;
  IncSpeed=8,7,6;
</Level>      // end of level description  


<Level>       // begin level description
  Filename="x04";
  Time=80,60,40;
  StartSpeed=9,8,7;
  TopSpeed=5,4,3;
  IncSpeed=8,7,6;
</Level>      // end of level description  


<Level>       // begin level description
  Filename="x01";
  Time=90,70,50;
  StartSpeed=9,8,7;
  TopSpeed=5,4,3;
  IncSpeed=8,7,6;
</Level>      // end of level description  
	

<Level>       // begin level description
  Filename="x02";
  Time=120,90,50;
  StartSpeed=9,8,7;
  TopSpeed=5,4,3;
  IncSpeed=8,7,6;
</Level>      // end of level description  
