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

« back to all changes in this revision

Viewing changes to data/levels/level4e.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
 
levelw = 39
5
 
levelh = 13
6
 
 
7
 
create_world(levelw, levelh)
8
 
draw_border( "st-greenbrown")
9
 
fill_floor("fl-space")
10
 
 
11
 
enigma.AddConstantForce(0,20)
12
 
 
13
 
oxyd(3,5)
14
 
oxyd(7,3)
15
 
oxyd(6,9)
16
 
oxyd(11,6)
17
 
oxyd(15,10)
18
 
oxyd(16,4)
19
 
oxyd(21,5)
20
 
oxyd(25,3)
21
 
oxyd(24,10)
22
 
oxyd(29,6)
23
 
oxyd(33,9)
24
 
oxyd(35,4)
25
 
 
26
 
oxyd_shuffle()
27
 
 
28
 
draw_stones("st-death", {1,12}, {1,0},37)
29
 
 
30
 
set_stones("st-greenbrown", {{2,5},{4,5},{6,3},{8,3},{5,9},{7,9}})
31
 
set_stones("st-greenbrown", {{10,6},{12,6},{14,10},{16,10},{15,4},{17,4}})
32
 
set_stones("st-greenbrown", {{20,5},{22,5},{24,3},{26,3},{23,10},{25,10}})
33
 
set_stones("st-greenbrown", {{28,6},{30,6},{32,9},{34,9},{34,4},{36,4}})
34
 
 
35
 
fill_floor("fl-sand", 2,3, 3,2)
36
 
fill_floor("fl-sand", 6,1, 3,2)
37
 
fill_floor("fl-sand", 5,7, 3,2)
38
 
fill_floor("fl-sand", 10,4, 3,2)
39
 
fill_floor("fl-sand", 14,8, 3,2)
40
 
fill_floor("fl-sand", 15,2, 3,2)
41
 
fill_floor("fl-sand", 20,3, 3,2)
42
 
fill_floor("fl-sand", 24,1, 3,2)
43
 
fill_floor("fl-sand", 23,8, 3,2)
44
 
fill_floor("fl-sand", 28,4, 3,2)
45
 
fill_floor("fl-sand", 32,7, 3,2)
46
 
fill_floor("fl-sand", 34,2, 3,2)
47
 
 
48
 
 
49
 
set_actor("ac-blackball", 10.5,4.5)
50
 
 
51
 
 
52
 
 
53