~ubuntu-branches/ubuntu/trusty/enigma/trusty-proposed

« back to all changes in this revision

Viewing changes to data/levels/enigma_tutorial/m_tut11.xml

  • Committer: Package Import Robot
  • Author(s): Erich Schubert
  • Date: 2013-04-06 14:54:02 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20130406145402-jgjrtk7hac8gtvza
Tags: 1.20-dfsg.1-1
* New upstream release (Closes: #704595)
  (Repacked: dropped zipios++ source and main menu music)
* Update watch file, sf.net again.
* Fix documentation links (Closes: #653508)
* Conflict with enigma-level-previews to encourage deinstallation
  (Pregenerated level previews were only used with version 1.01)
* Use dh7 for building instead of CDBS
* Update to policy 3.9.4.0 (no changes)
* Register documentation with doc-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
2
 
<el:level xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://enigma-game.org/schema/level/1 level.xsd" xmlns:el="http://enigma-game.org/schema/level/1">
3
 
  <el:protected>
4
 
    <el:info el:type="level">
5
 
      <el:identity el:title="Floors 3" el:subtitle="" el:id="m_tutor/m_tut11"/>
6
 
      <el:version el:score="1" el:release="1" el:revision="0" el:status="released"/>
7
 
      <el:author  el:name="Martin Hawlisch" el:email="" el:homepage=""/>
8
 
      <el:copyright>Copyright © 2003 Martin Hawlisch</el:copyright>
9
 
      <el:license el:type="GPL version 2" el:open="true"/>
10
 
      <el:compatibility el:enigma="0.92">
11
 
       <el:dependency el:path="lib/ant" el:id="lib/ant" el:release="1" el:preload="true"/>
12
 
      </el:compatibility>
13
 
      <el:modes el:easy="false" el:single="true" el:network="false"/>
14
 
      <el:comments>
15
 
        <el:code>Lua 5.1 and XML converted by Leveladministrators</el:code>
16
 
      </el:comments>
17
 
      <el:score el:easy="-" el:difficult="-"/>
18
 
    </el:info>
19
 
    <el:luamain><![CDATA[
20
 
oxyd_default_flavor = "d"
21
 
 
22
 
cells={}
23
 
cells[" "]=cell{floor="fl-leaves"}
24
 
cells["1"]=cell{floor="fl-water"}
25
 
cells["#"]=cell{stone="st-likeoxyda"}
26
 
cells["d"]=cell{{{document, "text1"}}}
27
 
cells["o"]=cell{actor={"ac-blackball", {player=0}}}
28
 
 
29
 
level = {
30
 
   "####################",
31
 
   "#o     d  11111    #",
32
 
   "#   d  11 11111    #",
33
 
   "#11111 11 11111  1 #",
34
 
   "#1111  11 11111  1 #",
35
 
   "#111  111 11111  1 #", 
36
 
   "#11  1111 1111  11 #",
37
 
   "#1  11         11  #",
38
 
   "#  11       1111   #",
39
 
   "0 11   d   1111    #",
40
 
   "#11       11    d  0",
41
 
   "#1       11        #",
42
 
   "##0########0########"
43
 
}
44
 
 
45
 
set_default_parent(cells[" "])
46
 
create_world_by_map(level,cells)
47
 
 
48
 
oxyd_shuffle()
49
 
    ]]></el:luamain>
50
 
    <el:i18n>
51
 
      <el:string el:key="title">
52
 
        <el:english el:translate="false"/>
53
 
      </el:string>
54
 
      <el:string el:key="text1">
55
 
        <el:english el:translate="true">Careful - you can not swim in the water.</el:english>
56
 
      </el:string> 
57
 
    </el:i18n>
58
 
  </el:protected>
59
 
</el:level>