home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 August / GSSH0804.iso / Geschicklichkeit / Enigma / Enigma-081.exe / data / levels / oxe11.lua < prev    next >
Text File  |  2003-05-15  |  1KB  |  39 lines

  1. -- Inverse -- Oxyd Extra -- the Enigma Level
  2. -- (c) 2003 Petr Machata/ant_39
  3. -- Licensed under GPL v2.0 or above
  4. -- 2003-05-11
  5.  
  6. Require("levels/ant.lua")
  7.  
  8. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  9.  
  10. cells={}
  11. cells[" "]=cell{floor="fl-inverse"}
  12. cells["#"]=cell{stone="st-rock1"}
  13. cells["."]=cell{item= {"it-crack", {type=1, fixed=1}}}
  14. cells[","]=cell{item= {"it-crack", {type=2, fixed=1}}}
  15. cells[":"]=cell{item= {"it-crack", {type=3, fixed=1}}}
  16.  
  17. level = {
  18.    "####################",
  19.    "#       :          #",
  20.    "#      ,           #",
  21.    "#  0            0  #",
  22.    "#                . #",
  23.    "#   D .        D   #",
  24.    "#          O       #",
  25.    "#   D          D   #",
  26.    "#    ,             #",
  27.    "#  0            0  #",
  28.    "#           :,     #",
  29.    "#,                 #",
  30.    "####################"
  31. }
  32.  
  33. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  34.  
  35. set_default_parent(cells[" "])
  36. oxyd_default_flavor = "c"
  37. create_world_by_map(level)
  38. oxyd_shuffle()
  39.