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

« back to all changes in this revision

Viewing changes to data/levels/daniel2.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
 
levelw = 20
2
 
levelh = 13
3
 
 
4
 
create_world(levelw, levelh)
5
 
oxyd_default_flavor = "c"       -- Default flavor for oxyd stones.
6
 
 
7
 
enigma.ConserveLevel = FALSE
8
 
fill_floor("fl-gray")
9
 
draw_border("st-greenbrown")
10
 
draw_border("st-greenbrown", 0,5,3,3)
11
 
draw_border("st-greenbrown", 17,5,3,3)
12
 
oxyd(1,1)
13
 
oxyd(7,1)
14
 
oxyd(12,1)
15
 
oxyd(18,1)
16
 
oxyd(3,6)
17
 
oxyd(16,6)
18
 
oxyd(1,11)
19
 
oxyd(7,11)
20
 
oxyd(12,11)
21
 
oxyd(18,11)
22
 
oxyd_shuffle()
23
 
 
24
 
local ac=set_actor("ac-blackball", 10,6.5)
25
 
local st1=set_stone("st-brownie", 1,6)
26
 
local st2=set_stone("st-brownie", 18,6)
27
 
AddRubberBand(ac, st1, 15)
28
 
AddRubberBand(ac, st2, 15)
29
 
 
30