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

« back to all changes in this revision

Viewing changes to data/levels/ss17.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
 
dofile(enigma.FindDataFile("levels/ant.lua"))
3
 
cells={}
4
 
 
5
 
cells[" "]=cell{floor="fl-black"}
6
 
cells["#"]=cell{stone="st-brick"}
7
 
cells["b"]=cell{stone="st-actorimpulse_invisible"}
8
 
cells["S"]=cell{stone="st-swap"}
9
 
cells["h"]=cell{parent=cells[" "],item="it-hollow"}
10
 
 
11
 
level = {
12
 
   "####################",--00
13
 
   "#                  #",--01
14
 
   "# bbb          bbb #",--02
15
 
   "#  hb          bh  #",--03
16
 
   "# bbb          bbb #",--04
17
 
   "#       SDDS       #",--05
18
 
   "#       SDDS       #",--06
19
 
   "#       SDDS       #",--07
20
 
   "# bbb          bbb #",--08
21
 
   "# bh           bhb #",--09
22
 
   "# bbb          b b #",--10
23
 
   "#                  #",--11
24
 
   "####################" --12
25
 
}
26
 
set_default_parent(cells[" "])
27
 
 
28
 
create_world_by_map(level,cells)
29
 
 
30
 
set_actor("ac-whiteball-small", 8.5, 2.5, {player=0, mouseforce=-1, essential=1})
31
 
set_actor("ac-whiteball-small",11.5, 2.5, {player=0, mouseforce= 1, essential=1})
32
 
set_actor("ac-whiteball-small", 8.5,10.5, {player=0, mouseforce=-1, essential=1})
33
 
set_actor("ac-whiteball-small",11.5,10.5, {player=0, mouseforce= 1, essential=1})
34
 
 
35
 
 
36
 
 
37
 
 
38