home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 August / GSSH0804.iso / Geschicklichkeit / Enigma / Enigma-081.exe / data / levels / oxm010.lua < prev    next >
Text File  |  2003-03-08  |  861b  |  24 lines

  1. -- Meditation -- Oxyd Magnum -- the Enigma Level
  2. -- (c) 2002 Petr Machata/ant_39
  3. -- Licensed under GPL v2.0 or above
  4. -- 2003-02-21
  5.  
  6. dofile(enigma.FindDataFile("levels/ant.lua"))
  7. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  8. normal = cell{floor="fl-brick"}
  9. stone  = cell{stone="st-marble"}
  10. marble = cell{actor={"ac-whiteball-small", {player=0, mouseforce=1}}}
  11. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  12. create_world(20, 13)
  13. draw_border_func(abyss)
  14. fill_world_func(normal, 0,1,0,-2)
  15. draw_border_func(stone, 0,1,0,-2)
  16. draw_func_corners(hollow, 2,3,-4,-6)
  17. draw_func_corners(stone,  4,3,-8,-6)
  18. draw_func_corners(stone,  7,5,-14,-10)
  19. draw_func_corners(marble, 8,5,-16,-10)
  20. draw_func(stone, {{7,4},{7,-4}}, {1,0}, 6)
  21. draw_func(stone, {{5,5},{-5,5}}, {0,1}, 3)
  22. stone({{2,6},{-2,6}})
  23.  
  24.