~ubuntu-branches/ubuntu/intrepid/enigma/intrepid

« back to all changes in this revision

Viewing changes to data/levels/oxe28.lua

  • Committer: Bazaar Package Importer
  • Author(s): Erich Schubert
  • Date: 2005-08-28 15:30:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050828153009-sky64kb6tcq37xt5
Tags: 0.92.1-1
* New upstream subversion checkout
* Remove menu.s3m, which we are allowed to distributed but not to modify
  also copyright notice is confusing... (Closes: #321669)
* Rebuild with new libzipios (Closes: #325405)
  I hope this works without a versioned build-dependency
* Added "enigma replaces enigma-data" for upgrades (Closes: #308558)
* Added notes about the fonts copyright.
* updated to policy 3.6.2.1 (no changes)

Show diffs side-by-side

added added

removed removed

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