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

« back to all changes in this revision

Viewing changes to data/levels/oxe11.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
 
Require("levels/ant.lua")
3
 
 
4
 
 
5
 
cells={}
6
 
cells[" "]=cell{floor="fl-inverse"}
7
 
cells["#"]=cell{stone="st-rock1"}
8
 
cells["."]=cell{item= {"it-crack1", {fixed=1}}}
9
 
cells[","]=cell{item= {"it-crack2", {fixed=1}}}
10
 
cells[":"]=cell{item= {"it-crack3", {fixed=1}}}
11
 
 
12
 
level = {
13
 
   "####################",
14
 
   "#       :          #",
15
 
   "#      ,           #",
16
 
   "#  0            0  #",
17
 
   "#                . #",
18
 
   "#   D .        D   #",
19
 
   "#          O       #",
20
 
   "#   D          D   #",
21
 
   "#    ,             #",
22
 
   "#  0            0  #",
23
 
   "#           :,     #",
24
 
   "#,                 #",
25
 
   "####################"
26
 
}
27
 
 
28
 
 
29
 
set_default_parent(cells[" "])
30
 
oxyd_default_flavor = "c"
31
 
create_world_by_map(level)
32
 
oxyd_shuffle()