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

  1. -- Dance With Me -- Oxyd Extra -- the Enigma Level
  2. -- (c) 2002 Petr Machata/ant_39
  3. -- Licensed under GPL v2.0 or above
  4. -- 2003-02-21
  5. --
  6. --- NOTE
  7. --- there has to be a killer actor in this level - small marble that kills the big one,
  8. --- if the two touch. As soon as it's, replace ac-whiteball-small with correct model name,
  9. --- or supply coorect attributes.
  10. --
  11. --- ALSO NOTE
  12. --- in Oxyd Extra, the killer marble was a lot faster than black one. I tried to use
  13. --- mouseforce=2 with no effect, please repair as soon as this feature becomes
  14. --- implemented.
  15. ---
  16. --- FINAL NOTE
  17. --- everything should work now :-) Daniel
  18.  
  19.  
  20. dofile(enigma.FindDataFile("levels/ant.lua"))
  21. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  22. fl0 = cell{floor="fl-gray"}
  23. marble = cell{actor={"ac-blackball", {player=0}}}
  24. killer = cell{actor={"ac-killerball", {mouseforce=2, controllers=1}}}
  25. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  26. create_world(20, 13)
  27. oxyd_default_flavor="c"
  28. fill_world_func(abyss)
  29. fill_world_func(fl0, 7, 4, 5, 5)
  30. draw_func(oxyd, {{8,3},{8,-3}}, {1,0}, 3)
  31. draw_func(oxyd, {{6,5},{-7,5}}, {0,1}, 3)
  32. draw_func_corners(oxyd, 7, 4, 5, 5)
  33.  
  34. marble(9, -4)
  35. killer(9, 4)
  36.  
  37. oxyd_shuffle()
  38.