~ubuntu-branches/ubuntu/edgy/enigma/edgy-backports

« back to all changes in this revision

Viewing changes to data/levels/m_tutor/m_tut11.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
 
--
3
 
 
4
 
 
5
 
oxyd_default_flavor = "d"
6
 
 
7
 
dofile(enigma.FindDataFile("levels/ant.lua"))
8
 
 
9
 
cells={}
10
 
 
11
 
cells[" "]=cell{floor="fl-leaves"}
12
 
cells["1"]=cell{floor="fl-water"}
13
 
cells["#"]=cell{stone="st-likeoxyda"}
14
 
cells["d"]=cell{{{document, "Careful - you can not swim in the water."}}}
15
 
cells["o"]=cell{actor={"ac-blackball", {player=0}}}
16
 
 
17
 
level = {
18
 
   "####################",
19
 
   "#o     d  11111    #",
20
 
   "#   d  11 11111    #",
21
 
   "#11111 11 11111  1 #",
22
 
   "#1111  11 11111  1 #",
23
 
   "#111  111 11111  1 #", 
24
 
   "#11  1111 1111  11 #",
25
 
   "#1  11         11  #",
26
 
   "#  11       1111   #",
27
 
   "0 11   d   1111    #",
28
 
   "#11       11    d  0",
29
 
   "#1       11        #",
30
 
   "##0########0########"
31
 
}
32
 
 
33
 
 
34
 
set_default_parent(cells[" "])
35
 
 
36
 
create_world_by_map(level,cells)
37
 
 
38
 
oxyd_shuffle()