Compare commits
138 Commits
2efbf6f717
...
v1.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 51eb933383 | |||
| 3f127b5444 | |||
| 2055ac523d | |||
| 0a5a79dc60 | |||
| baae73a38d | |||
| ec7ac7114e | |||
| cabbb52cbb | |||
| ac4e1f3298 | |||
| b292ae710a | |||
| 9827865e9c | |||
| 119136332b | |||
| 77cdf90c99 | |||
| 304f636a95 | |||
| fa97ea79e8 | |||
| f38d50e7f9 | |||
| 0ccd8a570a | |||
| 52d3916f8c | |||
| 394773003a | |||
| da3cb5ff8e | |||
| d17ac3a2ed | |||
| f84eb3e238 | |||
| c3d1b672c2 | |||
| 3919281080 | |||
| 1251ef5110 | |||
| 9ca1e59f44 | |||
| b44ba3517a | |||
| e009aef341 | |||
| 1f6956ad81 | |||
| c92f2a13aa | |||
| 54667d3ebc | |||
| 5620fff446 | |||
| 0ca9ad3f0b | |||
| 931548c4d1 | |||
| d093b2215d | |||
| 4ba4214ebb | |||
| 2abc429616 | |||
| 231a81a9e5 | |||
| 093cd5916b | |||
| eccbe43588 | |||
| 45bc160ef4 | |||
| a3edcb2684 | |||
| 100497a54b | |||
| dc87a214c5 | |||
| 2799ef28aa | |||
| 1521c7e152 | |||
| 70cb65237a | |||
| ade6efdf6d | |||
| 8c639f2330 | |||
| 1d85db4052 | |||
| d1ce8c9d5d | |||
| 1b9dfddc94 | |||
| c49684981c | |||
| 6d1734755f | |||
| a3ada11daf | |||
| e7224cc376 | |||
| 5a22961c47 | |||
| 15ca066e9b | |||
| eb86874244 | |||
| 6dc59af774 | |||
| edc8e0b51d | |||
| 11da5b033c | |||
| 66241e6a6a | |||
| 81b9791144 | |||
| 16914932ec | |||
| 241ae1bd8e | |||
| ecd4f7d6b4 | |||
| 39b304c265 | |||
| 1c53f49125 | |||
| 99d0583833 | |||
| a825581108 | |||
| a62dec7567 | |||
| f1f37d7801 | |||
| 1d255b70e0 | |||
| 21c7385ff4 | |||
| 87d7b4ce46 | |||
| 4ace433340 | |||
| 2461efd01f | |||
| 2fd5f39285 | |||
| 1383378a19 | |||
| aa8013082f | |||
| dc24aa009b | |||
| 2ec21a2c2a | |||
| 9d0d02c0c2 | |||
| 1cd08b1110 | |||
| b0dd34b5df | |||
| 8725532586 | |||
| 0a24e2b3fe | |||
| 1f9f19e715 | |||
| 8c8449fb16 | |||
| 1f6ce61ee2 | |||
| 0a1b4f8715 | |||
| 3a51938d80 | |||
| 7263242bd6 | |||
| a459ff8a85 | |||
| 087ed163cb | |||
| 3f6082328e | |||
| 5e2105cfeb | |||
| cd44dceb6b | |||
| 12674cc1a6 | |||
| ed160b0588 | |||
| 68985ad843 | |||
| 68608925d3 | |||
| 3016027a74 | |||
| 97cc9a0bfd | |||
| ebf3d11e70 | |||
| c9f41c9635 | |||
| c4cbda9b23 | |||
| b794ebe608 | |||
| 7365d72360 | |||
| 2a629529fd | |||
| 77cb597c80 | |||
| c7aa601813 | |||
| 0299ec4fd9 | |||
| c37ca60235 | |||
| b6e9310a38 | |||
| 4d91e86178 | |||
| 1e216bfd24 | |||
| c7f6ad7538 | |||
| 0315a88cf2 | |||
| d4ce5ef973 | |||
| 84618348e2 | |||
| f9733da46f | |||
| 2b60054466 | |||
| ee4d869ac9 | |||
| 40a531f8b5 | |||
| 0cee2e3c36 | |||
| c48ba26b64 | |||
| f87a24c0a5 | |||
| 434014d708 | |||
| 8be12f5ec0 | |||
| b4bda1a63b | |||
| ea61a56c22 | |||
| c7186119c2 | |||
| 06d58b090d | |||
| eed4ec899c | |||
| 3e83fcdaa8 | |||
| af6c5f43ef | |||
| 33cfc7ee99 |
7
.gitignore
vendored
@@ -1,5 +1,10 @@
|
||||
*.exe
|
||||
*.dll
|
||||
.vscode/*
|
||||
*.dSYM/*
|
||||
build/*
|
||||
thepool
|
||||
thepool_debug
|
||||
thepool_debug
|
||||
valgrind*
|
||||
release/*
|
||||
data.jf2
|
||||
|
||||
14
Makefile
@@ -3,25 +3,25 @@ source = source/*.cpp
|
||||
|
||||
windows:
|
||||
@echo off
|
||||
g++ $(source) icon.res -lmingw32 -lSDL2main -lSDL2 -lSDL2_mixer -mwindows -o "$(executable).exe"
|
||||
g++ $(source) icon.res -lmingw32 -lSDL2main -lSDL2 -mwindows -o "$(executable).exe"
|
||||
strip -s -R .comment -R .gnu.version --strip-unneeded "$(executable).exe"
|
||||
|
||||
windows_debug:
|
||||
@echo off
|
||||
g++ $(source) -D DEBUG -g -Wall -fvar-tracking -lmingw32 -lSDL2main -lSDL2 -lSDL2_mixer -o "$(executable)_debug.exe"
|
||||
g++ $(source) -D DEBUG -g -Wall -fvar-tracking -lmingw32 -lSDL2main -lSDL2 -o "$(executable)_debug.exe"
|
||||
|
||||
macos:
|
||||
clang++ $(source) -Wall -Os -std=c++11 -ffunction-sections -fdata-sections -lSDL2 -lSDL2_mixer -o "$(executable)"
|
||||
clang++ $(source) -Wall -Os -std=c++11 -ffunction-sections -fdata-sections -lSDL2 -o "$(executable)"
|
||||
|
||||
macos_debug:
|
||||
clang++ $(source) -D DEBUG -g -Wall -Os -std=c++11 -ffunction-sections -fdata-sections -lSDL2 -lSDL2_mixer -o "$(executable)_debug"
|
||||
clang++ $(source) -D DEBUG -g -Wall -std=c++11 -lSDL2 -o "$(executable)_debug"
|
||||
|
||||
macos_bundle:
|
||||
clang++ $(source) -D MACOS_BUNDLE -Wall -Os -std=c++11 -framework SDL2 -framework SDL2_mixer -F /Library/Frameworks -ffunction-sections -fdata-sections -o mini_bundle -rpath @executable_path/../Frameworks/ -target x86_64-apple-macos10.12
|
||||
clang++ $(source) -D MACOS_BUNDLE -Wall -Os -std=c++11 -framework SDL2 -F /Library/Frameworks -ffunction-sections -fdata-sections -o mini_bundle -rpath @executable_path/../Frameworks/ -target x86_64-apple-macos10.12
|
||||
|
||||
linux:
|
||||
g++ $(source) -Wall -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lSDL2 -lSDL2_mixer -o "$(executable)"
|
||||
g++ $(source) -Wall -Os -ffunction-sections -fdata-sections -Wl,--gc-sections -lSDL2 -o "$(executable)"
|
||||
strip -s -R .comment -R .gnu.version --strip-unneeded "$(executable)"
|
||||
|
||||
linux_debug:
|
||||
g++ $(source) -D DEBUG -g -lSDL2 -lSDL2_mixer -o "$(executable)_debug"
|
||||
g++ $(source) -D DEBUG -g -lSDL2 -o "$(executable)_debug"
|
||||
|
||||
BIN
data/25anys.gif
Normal file
|
After Width: | Height: | Size: 190 B |
BIN
data/altres.gif
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
data/batgrumpy.gif
Normal file
|
After Width: | Height: | Size: 295 B |
BIN
data/batman.gif
Normal file
|
After Width: | Height: | Size: 643 B |
BIN
data/caixes.gif
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 4.4 KiB |
BIN
data/doors.gif
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.7 KiB |
BIN
data/draft.gif
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
data/end1.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
data/end2.gif
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
data/floor.gif
|
Before Width: | Height: | Size: 651 B After Width: | Height: | Size: 791 B |
BIN
data/font2.gif
|
Before Width: | Height: | Size: 632 B After Width: | Height: | Size: 662 B |
BIN
data/fosforo.gif
Normal file
|
After Width: | Height: | Size: 148 B |
2078
data/gamecontrollerdb.txt
Normal file
BIN
data/gat2.gif
Normal file
|
After Width: | Height: | Size: 647 B |
@@ -1,12 +1,33 @@
|
||||
25anys.gif
|
||||
abad.gif
|
||||
altres.gif
|
||||
batman.gif
|
||||
caixes.gif
|
||||
doors.gif
|
||||
end1.gif
|
||||
end2.gif
|
||||
floor.gif
|
||||
font.gif
|
||||
font2.gif
|
||||
fosforo.gif
|
||||
gat.gif
|
||||
gat2.gif
|
||||
intro1.gif
|
||||
intro2.gif
|
||||
intro3.gif
|
||||
intro4.gif
|
||||
intro5.gif
|
||||
jailgames.gif
|
||||
lordabad.gif
|
||||
mapa.gif
|
||||
objectes.gif
|
||||
obrer.gif
|
||||
piscina.gif
|
||||
prologo1.gif
|
||||
prologo2.gif
|
||||
prologo3.gif
|
||||
prologo4.gif
|
||||
roomaux.gif
|
||||
sam.gif
|
||||
test.gif
|
||||
walls.gif
|
||||
|
||||
13
data/gifs_editor.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
abad.gif
|
||||
batman.gif
|
||||
altres.gif
|
||||
caixes.gif
|
||||
gat.gif
|
||||
gat2.gif
|
||||
lordabad.gif
|
||||
objectes.gif
|
||||
obrer.gif
|
||||
piscina.gif
|
||||
sam.gif
|
||||
test.gif
|
||||
doors.gif
|
||||
BIN
data/ingame.ogg
Normal file
BIN
data/intro1.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
data/intro2.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
data/intro3.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
data/intro4.gif
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
data/intro5.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
data/jailgames.gif
Normal file
|
After Width: | Height: | Size: 197 B |
BIN
data/lordabad.gif
Normal file
|
After Width: | Height: | Size: 377 B |
BIN
data/mapa.gif
Normal file
|
After Width: | Height: | Size: 614 B |
BIN
data/mus_gameover.ogg
Normal file
BIN
data/mus_ingame.ogg
Normal file
BIN
data/mus_menu.ogg
Normal file
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.6 KiB |
57
data/old_rooms/00.txt
Normal file
@@ -0,0 +1,57 @@
|
||||
width: 2
|
||||
height: 1
|
||||
door-height-xp: 1
|
||||
door-height-xn: 1
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 5
|
||||
exit-xn: 1
|
||||
exit-zn: 2
|
||||
|
||||
actor{
|
||||
name: PLATFORM02
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 16 20 0
|
||||
size: 8 8 4
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM00
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 8 28 0
|
||||
size: 8 8 4
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM01
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 16 28 0
|
||||
size: 8 8 4
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM04
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 28 0
|
||||
size: 8 8 4
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM03
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 28 0
|
||||
size: 8 8 4
|
||||
}
|
||||
112
data/old_rooms/01.txt
Normal file
@@ -0,0 +1,112 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yp: 0
|
||||
color: CYAN
|
||||
floor-texture: 9
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 0
|
||||
exit-xp: 0
|
||||
exit-yp: 3
|
||||
|
||||
actor{
|
||||
name: ARMARI01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 8 8 0
|
||||
size: 8 4 5
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULETA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 5
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: S-SHOES
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 162 0 28 22
|
||||
bmp-offset: -3 24
|
||||
pos: 48 8 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARMARI02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 8 8 8
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 7 5
|
||||
size: 8 5 8
|
||||
orient: XP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NES
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 6
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 40 32 0
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
flags: MOVING DEADLY
|
||||
movement: Y
|
||||
}
|
||||
24
data/old_rooms/02.txt
Normal file
@@ -0,0 +1,24 @@
|
||||
width: 2
|
||||
height: 1
|
||||
door-height-xn: 4
|
||||
door-height-yp: 0
|
||||
color: PURPLE
|
||||
floor-texture: 1
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 2
|
||||
exit-xn: 3
|
||||
exit-yp: 4
|
||||
exit-zp: 0
|
||||
|
||||
actor{
|
||||
name: G-FILTER
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
anim-wait: 4
|
||||
flags: PUSHABLE ANIMATED GRAVITY SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
67
data/old_rooms/03.txt
Normal file
@@ -0,0 +1,67 @@
|
||||
width: 1
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yn: 4
|
||||
color: PURPLE
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 2
|
||||
exit-yn: 1
|
||||
|
||||
actor{
|
||||
name: CONVEYOR
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 144 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 48 0
|
||||
size: 8 8 4
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 15 23 4
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 15 31 4
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX
|
||||
bmp: test.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 27 31 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: test.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 27 29 8
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
250
data/old_rooms/04.txt
Normal file
@@ -0,0 +1,250 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-yp: 2
|
||||
door-height-yn: 2
|
||||
color: GREEN
|
||||
floor-texture: 1
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-yn: 2
|
||||
|
||||
actor{
|
||||
name: BOX
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX20
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX21
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX15
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX16
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX17
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX22
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 32 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX19
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX18
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX23
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
11
data/old_rooms/05.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
color: YELLOW
|
||||
floor-texture: 8
|
||||
wall-texture: 8
|
||||
door-texture: 5
|
||||
under-door-texture: 0
|
||||
exit-xp: 6
|
||||
exit-xn: 0
|
||||
114
data/old_rooms/06.txt
Normal file
@@ -0,0 +1,114 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xn: 0
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 5
|
||||
exit-zp: 7
|
||||
|
||||
actor{
|
||||
name: SOFA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 0 48 40
|
||||
bmp-offset: 0 32
|
||||
pos: 0 0 0
|
||||
size: 16 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LLIT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 0 57 47
|
||||
bmp-offset: 12 33
|
||||
pos: 16 0 0
|
||||
size: 16 16 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 56 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: MOVING
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: B4-02
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 0 40 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: B8-00
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 0 48 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: YONKI
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 168 64 19 32
|
||||
bmp-offset: -7 37
|
||||
pos: 18 56 0
|
||||
size: 6 6 12
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BARREL
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 64 18 32
|
||||
bmp-offset: -7 37
|
||||
pos: 25 57 0
|
||||
size: 6 6 12
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE ANIMATED GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NEVERA1
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NEVERA2
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
33
data/old_rooms/07.txt
Normal file
@@ -0,0 +1,33 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
color: PURPLE
|
||||
floor-texture: 0
|
||||
wall-texture: 14
|
||||
door-texture: 2
|
||||
under-door-texture: 0
|
||||
exit-xn: 8
|
||||
exit-zn: 6
|
||||
|
||||
actor{
|
||||
name: LIFT
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 56 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: MOVING
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 76 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 0 9 6
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
105
data/old_rooms/08.txt
Normal file
@@ -0,0 +1,105 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 11
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 7
|
||||
|
||||
actor{
|
||||
name: P-ELBOW
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 32 22 32
|
||||
bmp-offset: -2 35
|
||||
pos: 8 16 0
|
||||
size: 4 4 4
|
||||
anim-wait: 6
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-PIPE
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 64 16 32
|
||||
bmp-offset: -8 36
|
||||
pos: 8 24 0
|
||||
size: 4 4 4
|
||||
anim-wait: 6
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-SALT
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 66 32 20 32
|
||||
bmp-offset: -7 35
|
||||
pos: 8 32 0
|
||||
size: 4 4 4
|
||||
anim-wait: 6
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: EXPLOSION
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 160 18 22
|
||||
bmp-offset: -7 38
|
||||
pos: 32 32 0
|
||||
size: 8 8 4
|
||||
anim-cycle: SEQ
|
||||
flags: ANIMATED
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-FILTER
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 34
|
||||
pos: 8 24 8
|
||||
size: 4 4 4
|
||||
anim-wait: 6
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-PUMP
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 48 64 22 32
|
||||
bmp-offset: -5 35
|
||||
pos: 8 32 11
|
||||
size: 4 4 4
|
||||
anim-wait: 6
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 160 18 22
|
||||
bmp-offset: -7 38
|
||||
pos: 32 32 5
|
||||
size: 8 8 4
|
||||
anim-cycle: SEQ
|
||||
flags: ANIMATED
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-TIMER
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 72 0 24 32
|
||||
bmp-offset: -4 34
|
||||
pos: 8 40 8
|
||||
size: 4 4 4
|
||||
anim-wait: 6
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
210
data/old_rooms/09.txt
Normal file
@@ -0,0 +1,210 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-yp: 0
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-yp: 10
|
||||
|
||||
actor{
|
||||
name: KALLAX-A03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 72 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 0 16 0
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 0 32 0
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 0 16 8
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 24 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 0 32 8
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 72 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 8 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 96 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 8 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARCADE
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 0 30 48
|
||||
bmp-offset: 0 48
|
||||
pos: 16 0 0
|
||||
size: 8 8 16
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 96 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 24 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 24 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 32 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 72 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 24 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-A09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 32 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULETA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 128 0 20 42
|
||||
bmp-offset: -5 46
|
||||
pos: 40 0 4
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 8
|
||||
react-push: XP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -5 30
|
||||
pos: 40 32 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE MOVING ANIMATED ORIENTABLE INERTIA
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 8
|
||||
size: 8 8 2
|
||||
flags: PUSHABLE
|
||||
react-push: XP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 8
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
react-push: XP
|
||||
movement: CW
|
||||
}
|
||||
110
data/old_rooms/10.txt
Normal file
@@ -0,0 +1,110 @@
|
||||
width: 0
|
||||
height: 3
|
||||
door-height-yp: 0
|
||||
door-height-yn: 5
|
||||
color: WHITE
|
||||
floor-texture: 6
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-yn: 9
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 12
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 12
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 4
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 4
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 24 32 0
|
||||
size: 8 10 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 32 32 0
|
||||
size: 8 10 4
|
||||
movement: CW
|
||||
}
|
||||
BIN
data/piscina.gif
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
data/prologo1.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
data/prologo2.gif
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
data/prologo3.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
data/prologo4.gif
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
@@ -1,57 +1,162 @@
|
||||
width: 2
|
||||
width: 3
|
||||
height: 1
|
||||
door-height-xp: 1
|
||||
door-height-xn: 1
|
||||
door-height-xp: 0
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 5
|
||||
exit-xn: 1
|
||||
exit-zn: 2
|
||||
exit-xp: 1
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATFORM02
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 16 20 0
|
||||
size: 8 8 4
|
||||
name: BOX-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 46 40 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM00
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 8 28 0
|
||||
size: 8 8 4
|
||||
name: BOX-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 40 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM01
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 16 28 0
|
||||
size: 8 8 4
|
||||
name: BOX-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 52 40 8
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM04
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 28 0
|
||||
size: 8 8 4
|
||||
name: FINESTRA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: -1 30 6
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATFORM03
|
||||
bmp: test.gif
|
||||
bmp-rect: 64 0 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 28 0
|
||||
size: 8 8 4
|
||||
name: FINESTRA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: -1 23 6
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 32 16 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 24 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 32 16 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 40 16 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 72 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 40 16 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LAMPARA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 128 0 20 41
|
||||
bmp-offset: -6 45
|
||||
pos: 1 41 0
|
||||
size: 6 6 16
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LLIT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 0 57 47
|
||||
bmp-offset: 11 32
|
||||
pos: 8 16 0
|
||||
size: 16 16 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MANCUERNA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 106 33 17 14
|
||||
bmp-offset: -6 20
|
||||
pos: 24 25 0
|
||||
size: 6 4 2
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 16 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
@@ -1,99 +1,38 @@
|
||||
width: 2
|
||||
height: 2
|
||||
width: 3
|
||||
height: 0
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
color: CYAN
|
||||
floor-texture: 6
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
color: WHITE
|
||||
floor-texture: 0
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 0
|
||||
exit-yp: 3
|
||||
exit-xp: 2
|
||||
exit-xn: 0
|
||||
exit-yp: 6
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ARMARI01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 8 8 0
|
||||
size: 8 4 5
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULETA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 5
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARMARI02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 8 8 8
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 7 5
|
||||
size: 8 5 8
|
||||
orient: XP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NES
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 6
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 8
|
||||
name: CUADRO-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 102 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 18 23 6
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 8
|
||||
name: CUADRO-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 66 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 42 23 6
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 40 32 0
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
flags: MOVING
|
||||
movement: Y
|
||||
}
|
||||
|
||||
@@ -1,24 +1,165 @@
|
||||
width: 2
|
||||
height: 1
|
||||
door-height-xn: 4
|
||||
door-height-yp: 0
|
||||
color: PURPLE
|
||||
floor-texture: 1
|
||||
width: 3
|
||||
height: 2
|
||||
door-height-xn: 0
|
||||
door-height-yn: 0
|
||||
color: GREEN
|
||||
floor-texture: 0
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 2
|
||||
exit-xn: 3
|
||||
exit-yp: 4
|
||||
exit-zp: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 1
|
||||
exit-yn: 3
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BARREL
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
anim-wait: 4
|
||||
flags: PUSHABLE ANIMATED GRAVITY
|
||||
name: ARMARI-A1
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 16 8 0
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARMARI-A2
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 16 8 8
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARMARI-B1
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 4 8 0
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARMARI-B2
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 32 24 32
|
||||
bmp-offset: -8 36
|
||||
pos: 4 8 8
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: B-00-LIVE
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 56 8 6
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 14 24 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 13 16 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 0 12 0
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 72 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 0 12 8
|
||||
size: 4 12 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LLIT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 0 57 47
|
||||
bmp-offset: 11 32
|
||||
pos: 40 8 0
|
||||
size: 16 16 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 8 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILOTA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 108 21 21
|
||||
bmp-offset: -5 24
|
||||
pos: 28 32 0
|
||||
size: 8 8 2
|
||||
orient: XN
|
||||
flags: PUSHABLE INERTIA
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 8 32 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 56 24 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
@@ -1,47 +1,144 @@
|
||||
width: 1
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yn: 4
|
||||
color: PURPLE
|
||||
floor-texture: 0
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
color: CYAN
|
||||
floor-texture: 4
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 2
|
||||
exit-yn: 1
|
||||
exit-xn: 4
|
||||
exit-yp: 2
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX
|
||||
bmp: test.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
bmp: test.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 28 29 8
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONVEYOR
|
||||
name: ARMARI-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 144 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 48 0
|
||||
size: 8 8 4
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
bmp-rect: 64 32 32 32
|
||||
bmp-offset: 8 36
|
||||
pos: 8 40 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARMARI-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 32 32 32
|
||||
bmp-offset: 8 36
|
||||
pos: 8 40 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-01
|
||||
bmp: test.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 32 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-02
|
||||
bmp: test.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 19 40 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESPILL
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: -10 38
|
||||
pos: 24 7 8
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-BATMAN
|
||||
bmp: gat.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 2
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-ROBIN
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 40 48 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 2
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 13 8 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 48 8 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: WC
|
||||
bmp: altres.gif
|
||||
bmp-rect: 105 0 21 33
|
||||
bmp-offset: -4 36
|
||||
pos: 40 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
@@ -1,250 +1,109 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-yp: 2
|
||||
door-height-yn: 2
|
||||
color: GREEN
|
||||
width: 3
|
||||
height: 1
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
color: WHITE
|
||||
floor-texture: 1
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-yn: 2
|
||||
wall-texture: 6
|
||||
door-texture: 6
|
||||
under-door-texture: 6
|
||||
exit-xp: 3
|
||||
exit-xn: 5
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX
|
||||
name: BOX-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 0
|
||||
pos: 56 16 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX02
|
||||
name: BOX-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 0 0
|
||||
pos: 0 16 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 8
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 8 16 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX20
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 24 16 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX01
|
||||
name: KALLAX-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 40 16 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX11
|
||||
name: ROOMBA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 24 24 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX12
|
||||
name: ROOMBA-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX21
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX15
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX16
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX17
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX22
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 32 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX19
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX18
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX23
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 56 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 40 32 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
@@ -1,11 +1,249 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
color: YELLOW
|
||||
floor-texture: 8
|
||||
wall-texture: 8
|
||||
door-texture: 5
|
||||
floor-texture: 4
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 6
|
||||
exit-xn: 0
|
||||
exit-xp: 4
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: FINESTRA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 7 19 6
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 7 26 6
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-BATMAN
|
||||
bmp: gat.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 16 48 2
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 2
|
||||
flags: PUSHABLE REACTIVE DEADLY GRAVITY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-ROBIN
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 32 48 2
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 2
|
||||
flags: PUSHABLE REACTIVE ORIENTABLE DEADLY GRAVITY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 8 8 0
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 8 8 8
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 8 36 0
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 8 36 8
|
||||
size: 4 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-PUMP
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 70 64 22 32
|
||||
bmp-offset: -5 41
|
||||
pos: 8 10 16
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 32 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 40 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 16 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 32 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA-14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 40 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 16 48 0
|
||||
size: 8 8 2
|
||||
orient: XP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 32 48 0
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: S-GLOVES
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 165 45 21 22
|
||||
bmp-offset: -2 26
|
||||
pos: 8 22 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: WC
|
||||
bmp: altres.gif
|
||||
bmp-rect: 105 0 21 33
|
||||
bmp-offset: -4 36
|
||||
pos: 8 48 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
@@ -1,107 +1,143 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xn: 0
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yn: 0
|
||||
color: PURPLE
|
||||
floor-texture: 3
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 5
|
||||
exit-zp: 7
|
||||
under-door-texture: 2
|
||||
exit-xp: 7
|
||||
exit-yn: 1
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: B1-00
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 0 0 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
name: BOX-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 16 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT
|
||||
name: BOX-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 56 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: MOVING
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: YONKI
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 168 64 19 32
|
||||
bmp-offset: -7 37
|
||||
pos: 18 9 0
|
||||
size: 6 6 12
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE GRAVITY
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 28 16 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: B2-01
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
name: BOX-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 16 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PICKABLE PUSHABLE ORIENTABLE GRAVITY
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BARREL
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 64 18 32
|
||||
bmp-offset: -7 37
|
||||
pos: 25 9 0
|
||||
size: 6 6 12
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE ANIMATED GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NEVERA1
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NEVERA2
|
||||
name: BOX-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 96 32 32
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 8
|
||||
pos: 16 40 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: B4-02
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 0 40 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
name: BOX-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 40 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 40 48 0
|
||||
size: 8 8 2
|
||||
orient: XP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 48 16 0
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 16 8 0
|
||||
size: 8 8 2
|
||||
orient: XN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 8 40 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
@@ -1,20 +1,147 @@
|
||||
width: 3
|
||||
height: 3
|
||||
color: PURPLE
|
||||
floor-texture: 0
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
color: YELLOW
|
||||
floor-texture: 3
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-zn: 6
|
||||
under-door-texture: 2
|
||||
exit-xn: 6
|
||||
exit-yp: 8
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: LIFT
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 56 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: MOVING
|
||||
movement: Z
|
||||
name: GAT-BATMAN
|
||||
bmp: gat.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 40 16 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 2
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: HUNT
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 28 28 0
|
||||
size: 8 8 4
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-21
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-22
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-31
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-32
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILAR-33
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
112
data/rooms/08.txt
Normal file
@@ -0,0 +1,112 @@
|
||||
width: 0
|
||||
height: 3
|
||||
door-height-yp: 0
|
||||
door-height-yn: 5
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-yp: 9
|
||||
exit-yn: 7
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ESCALO-001
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-011
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 8
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-020
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-030
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-100
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-101
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 8
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-110
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-111
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 8
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-120
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESCALO-130
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
187
data/rooms/09.txt
Normal file
@@ -0,0 +1,187 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: PURPLE
|
||||
floor-texture: 3
|
||||
wall-texture: 9
|
||||
door-texture: 3
|
||||
under-door-texture: 9
|
||||
exit-xp: 12
|
||||
exit-xn: 10
|
||||
exit-yp: 17
|
||||
exit-yn: 8
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BUBBLE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 32 24 28
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
flags: PUSHABLE REACTIVE MOVING DEADLY INERTIA
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 24 32 9
|
||||
size: 8 8 8
|
||||
orient: ZN
|
||||
flags: PUSHABLE REACTIVE MOVING DEADLY INERTIA
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 32 32 21
|
||||
size: 8 8 8
|
||||
orient: ZN
|
||||
flags: PUSHABLE REACTIVE MOVING DEADLY INERTIA
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 24 24 15
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
flags: PUSHABLE REACTIVE MOVING DEADLY INERTIA
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 18 8 0
|
||||
size: 6 5 4
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 8 19 0
|
||||
size: 6 5 4
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 8 41 0
|
||||
size: 6 5 4
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 8 49 0
|
||||
size: 6 5 4
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 49 8 0
|
||||
size: 6 5 4
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 41 8 0
|
||||
size: 6 5 4
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 32 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
190
data/rooms/10.txt
Normal file
@@ -0,0 +1,190 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-xp: 0
|
||||
door-height-yn: 0
|
||||
color: WHITE
|
||||
floor-texture: 4
|
||||
wall-texture: 7
|
||||
door-texture: 2
|
||||
under-door-texture: 0
|
||||
exit-xp: 9
|
||||
exit-yn: 11
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BANCADA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BANCADA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BANCADA-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -8 40
|
||||
pos: 8 51 0
|
||||
size: 5 4 4
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -8 40
|
||||
pos: 8 59 0
|
||||
size: 5 4 4
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -8 40
|
||||
pos: 31 44 0
|
||||
size: 5 4 4
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 8 33 9
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 8 41 9
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FORN
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NEVERA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 96 32 32
|
||||
bmp-offset: 2 33
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NEVERA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 96 32 32
|
||||
bmp-offset: 2 33
|
||||
pos: 8 8 8
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 96 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 48 0 0
|
||||
size: 8 8 2
|
||||
orient: XN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RAND
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 24 48 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RAND
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 28 32 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 28 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
318
data/rooms/11.txt
Normal file
@@ -0,0 +1,318 @@
|
||||
width: 3
|
||||
height: 2
|
||||
door-height-yp: 0
|
||||
color: YELLOW
|
||||
floor-texture: 4
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 0
|
||||
exit-yp: 10
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: FINESTRA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: -1 36 4
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: -1 44 4
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 48 2 5
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 75 20 33
|
||||
bmp-offset: 0 39
|
||||
pos: 40 2 5
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-BATMAN
|
||||
bmp: gat.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-ROBIN
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 40 32 0
|
||||
size: 8 8 8
|
||||
orient: XN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 56 24 0
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: S-PANTS
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 167 22 18 23
|
||||
bmp-offset: -7 27
|
||||
pos: 0 16 0
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-10
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-11
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-12
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 6
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-13
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-14
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 40 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-15
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 12
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-16
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 40 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-17
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 40 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-18
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 48 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-19
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 6
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-20
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 12
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
170
data/rooms/12.txt
Normal file
@@ -0,0 +1,170 @@
|
||||
width: 3
|
||||
height: 1
|
||||
door-height-xp: 5
|
||||
door-height-xn: 5
|
||||
door-height-yn: 0
|
||||
color: GREEN
|
||||
floor-texture: 0
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 3
|
||||
exit-xp: 13
|
||||
exit-xn: 9
|
||||
exit-yn: 15
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ABAD
|
||||
bmp: abad.gif
|
||||
bmp-rect: 0 0 20 33
|
||||
bmp-offset: -6 38
|
||||
pos: 0 40 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ANBERNIC0
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 56 16 0
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BATMAN
|
||||
bmp: batman.gif
|
||||
bmp-rect: 0 0 21 32
|
||||
bmp-offset: -5 35
|
||||
pos: 56 40 0
|
||||
size: 8 8 8
|
||||
orient: XN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 28 16
|
||||
size: 8 8 4
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 28 16
|
||||
size: 8 8 4
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 28 16
|
||||
size: 8 8 4
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 28 16
|
||||
size: 8 8 4
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 28 16
|
||||
size: 8 8 4
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 28 16
|
||||
size: 8 8 4
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 24 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 32 16
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILOTA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 108 21 21
|
||||
bmp-offset: -6 26
|
||||
pos: 40 40 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE INERTIA
|
||||
movement: CW
|
||||
}
|
||||
244
data/rooms/13.txt
Normal file
@@ -0,0 +1,244 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xn: 1
|
||||
door-height-yn: 1
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 12
|
||||
exit-yn: 14
|
||||
exit-zn: 18
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: LIFT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 56 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 24 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT16
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT17
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT18
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT19
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT20
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT21
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT22
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT23
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT28
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 40 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT29
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT30
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT31
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT32
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT33
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT34
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT35
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 48 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
415
data/rooms/14.txt
Normal file
@@ -0,0 +1,415 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-xn: 3
|
||||
door-height-yp: 3
|
||||
color: WHITE
|
||||
floor-texture: 11
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 15
|
||||
exit-yp: 13
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BLOCK-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 40 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 8 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCK-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 40 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 8 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCK-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 40 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCK-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 40 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 24 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 56 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 0 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-XP-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 4
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CONV-YP-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 4
|
||||
size: 8 8 4
|
||||
orient: YP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: YP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: OBRER
|
||||
bmp: obrer.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 37
|
||||
pos: 48 0 4
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: REACTIVE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 48 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLAT-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 136 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 40 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: S-SHOES
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 162 0 28 22
|
||||
bmp-offset: -3 24
|
||||
pos: 40 0 4
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
25
data/rooms/15.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
width: 1
|
||||
height: 3
|
||||
door-height-xp: 0
|
||||
door-height-yp: 0
|
||||
door-height-yn: 3
|
||||
color: YELLOW
|
||||
floor-texture: 6
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 3
|
||||
exit-xp: 14
|
||||
exit-yp: 12
|
||||
exit-yn: 16
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PILOTA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 108 21 21
|
||||
bmp-offset: -6 26
|
||||
pos: 24 32 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE INERTIA
|
||||
movement: CW
|
||||
}
|
||||
215
data/rooms/16.txt
Normal file
@@ -0,0 +1,215 @@
|
||||
width: 3
|
||||
height: 1
|
||||
door-height-yp: 0
|
||||
color: PURPLE
|
||||
floor-texture: 4
|
||||
wall-texture: 1
|
||||
door-texture: 2
|
||||
under-door-texture: 0
|
||||
exit-yp: 15
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-A-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 16 16 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-PIPE
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 16 64 16 32
|
||||
bmp-offset: -8 36
|
||||
pos: 0 14 18
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 0 16 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 8 16 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 16 16 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 40 16 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 48 16 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 56 17 0
|
||||
size: 8 5 6
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 0 16 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 8 16 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-10
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 16 16 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-11
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 0 16 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-12
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 8 16 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-13
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 40 16 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-14
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 48 16 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-15
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 56 16 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-17
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 40 16 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-18
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 48 16 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-19
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 56 16 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
32
data/rooms/17.txt
Normal file
@@ -0,0 +1,32 @@
|
||||
width: 0
|
||||
height: 3
|
||||
door-height-xn: 1
|
||||
door-height-yn: 0
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 27
|
||||
exit-yn: 9
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: FINESTRA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 76 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 23 8 4
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINESTRA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 84 76 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 23 48 4
|
||||
size: 1 1 9
|
||||
movement: CW
|
||||
}
|
||||
116
data/rooms/18.txt
Normal file
@@ -0,0 +1,116 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xn: 0
|
||||
door-height-yn: 0
|
||||
color: PURPLE
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 0
|
||||
exit-xn: 21
|
||||
exit-yn: 19
|
||||
exit-zp: 13
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 48 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 20 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 10 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-B-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 10 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-B-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 42 48 8
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-C-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 13 32 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-C-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 44 8 8
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 56 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 24 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: MOVING
|
||||
movement: Z
|
||||
}
|
||||
244
data/rooms/19.txt
Normal file
@@ -0,0 +1,244 @@
|
||||
width: 3
|
||||
height: 1
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: YELLOW
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 0
|
||||
exit-yp: 18
|
||||
exit-yn: 20
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BUBBLE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 56 40 6
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE INERTIA
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 0 40 6
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE INERTIA
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 24 24 8
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 16 24 10
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 8 24 12
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 32 24 6
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 40 24 4
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 48 24 2
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 56 24 0
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 20
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 23
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 28
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 24
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 24
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 40 24 18
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 28
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 56 24 22
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: OBRER
|
||||
bmp: obrer.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 37
|
||||
pos: 56 16 0
|
||||
size: 8 8 8
|
||||
orient: XN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: REIXA-Y
|
||||
bmp: altres.gif
|
||||
bmp-rect: 101 108 17 24
|
||||
bmp-offset: -11 29
|
||||
pos: 0 24 14
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 40 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
273
data/rooms/20.txt
Normal file
@@ -0,0 +1,273 @@
|
||||
width: 1
|
||||
height: 3
|
||||
door-height-yp: 0
|
||||
color: CYAN
|
||||
floor-texture: 3
|
||||
wall-texture: 6
|
||||
door-texture: 6
|
||||
under-door-texture: 0
|
||||
exit-yp: 19
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: CONV-XP-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 4
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
flags: REACTIVE ANIMATED ORIENTABLE
|
||||
react-mask: ZN
|
||||
react-push: XP
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-ROBIN
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 16 0 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: X
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 30
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 24 32 30
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 30
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: INVISI-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 16 13
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 30
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: OBRER-00
|
||||
bmp: obrer.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 37
|
||||
pos: 24 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: OBRER-01
|
||||
bmp: obrer.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 37
|
||||
pos: 32 48 0
|
||||
size: 8 8 8
|
||||
orient: YN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-TIMER
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 96 0 24 32
|
||||
bmp-offset: -4 34
|
||||
pos: 16 0 8
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: PUSHABLE GRAVITY SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 32 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: REIXA-Y-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 83 108 18 25
|
||||
bmp-offset: -11 29
|
||||
pos: 24 16 14
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: REIXA-Y-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 83 108 18 25
|
||||
bmp-offset: -11 29
|
||||
pos: 24 32 5
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: REIXA-Y-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 83 108 18 25
|
||||
bmp-offset: -11 29
|
||||
pos: 32 16 14
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: REIXA-Y-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 83 108 18 25
|
||||
bmp-offset: -11 29
|
||||
pos: 32 32 5
|
||||
size: 8 2 8
|
||||
orient: ZN
|
||||
flags: MOVING DEADLY
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 32 8
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 16 8
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 16 8
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 8
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
123
data/rooms/21.txt
Normal file
@@ -0,0 +1,123 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 1
|
||||
door-height-xn: 1
|
||||
door-height-yp: 1
|
||||
color: WHITE
|
||||
floor-texture: 0
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 0
|
||||
exit-xp: 18
|
||||
exit-xn: 22
|
||||
exit-yp: 24
|
||||
exit-zn: 25
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
82
data/rooms/22.txt
Normal file
@@ -0,0 +1,82 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yp: 0
|
||||
color: GREEN
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 13
|
||||
exit-xp: 21
|
||||
exit-yp: 23
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATF-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 16 16 0
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDV
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 32 32 0
|
||||
size: 8 8 2
|
||||
orient: XN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDV
|
||||
}
|
||||
176
data/rooms/23.txt
Normal file
@@ -0,0 +1,176 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-yn: 0
|
||||
color: WHITE
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 0
|
||||
exit-yn: 22
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ABAD
|
||||
bmp: abad.gif
|
||||
bmp-rect: 0 0 20 33
|
||||
bmp-offset: -6 39
|
||||
pos: 32 9 2
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE REACTIVE ORIENTABLE DEADLY GRAVITY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: B-01-JUMP
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 8 48 12
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BATMAN
|
||||
bmp: batman.gif
|
||||
bmp-rect: 0 0 21 32
|
||||
bmp-offset: -6 39
|
||||
pos: 40 8 2
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 1
|
||||
flags: PUSHABLE REACTIVE ORIENTABLE DEADLY GRAVITY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINISH-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 133 80 24 11
|
||||
bmp-offset: 0 11
|
||||
pos: 40 48 0
|
||||
size: 8 8 0
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINISH-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 133 80 24 11
|
||||
bmp-offset: 0 11
|
||||
pos: 32 48 0
|
||||
size: 8 8 0
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINISH-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 133 80 24 11
|
||||
bmp-offset: 0 11
|
||||
pos: 24 48 0
|
||||
size: 8 8 0
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINISH-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 133 80 24 11
|
||||
bmp-offset: 0 11
|
||||
pos: 16 48 0
|
||||
size: 8 8 0
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: FINISH-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 133 80 24 11
|
||||
bmp-offset: 0 11
|
||||
pos: 48 48 0
|
||||
size: 8 8 0
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 40 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 32 8 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDV
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 40 8 0
|
||||
size: 8 8 2
|
||||
orient: YP
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDV
|
||||
}
|
||||
96
data/rooms/24.txt
Normal file
@@ -0,0 +1,96 @@
|
||||
width: 1
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yp: 3
|
||||
door-height-yn: 4
|
||||
color: YELLOW
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 0
|
||||
exit-xp: 25
|
||||
exit-yp: 26
|
||||
exit-yn: 21
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: COFFEE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 32 133 21 21
|
||||
bmp-offset: 0 34
|
||||
pos: 16 8 0
|
||||
size: 8 8 2
|
||||
orient: XP
|
||||
anim-cycle: DUO
|
||||
anim-wait: 3
|
||||
flags: REACTIVE MOVING ANIMATED DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDJ
|
||||
}
|
||||
|
||||
actor{
|
||||
name: COFFEE-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 32 133 21 21
|
||||
bmp-offset: 0 34
|
||||
pos: 40 48 0
|
||||
size: 8 8 2
|
||||
orient: XN
|
||||
anim-cycle: DUO
|
||||
anim-wait: 3
|
||||
flags: REACTIVE MOVING ANIMATED DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDJ
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 48 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 48 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 10
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 6
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 2
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
161
data/rooms/25.txt
Normal file
@@ -0,0 +1,161 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xn: 4
|
||||
color: PURPLE
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 13
|
||||
exit-xn: 24
|
||||
exit-zp: 21
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ANBERNIC1
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 24 40 8
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BARREL
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 64 18 32
|
||||
bmp-offset: -7 37
|
||||
pos: 40 16 0
|
||||
size: 6 6 12
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 1
|
||||
flags: REACTIVE ANIMATED DEADLY GRAVITY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-B-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 40 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 16 48 0
|
||||
size: 6 5 8
|
||||
orient: YP
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 40 0 0
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 8 8 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 8 8 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 8 8 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 16 8 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 16 8 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 16 8 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 40 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: YONKI
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 168 65 19 31
|
||||
bmp-offset: -6 37
|
||||
pos: 32 16 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
189
data/rooms/26.txt
Normal file
@@ -0,0 +1,189 @@
|
||||
width: 3
|
||||
height: 2
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: GREEN
|
||||
floor-texture: 10
|
||||
wall-texture: 1
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 86
|
||||
exit-yp: 50
|
||||
exit-yn: 24
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ABAD
|
||||
bmp: abad.gif
|
||||
bmp-rect: 0 0 20 33
|
||||
bmp-offset: -6 38
|
||||
pos: 8 21 0
|
||||
size: 8 8 8
|
||||
orient: XN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ANBERNIC2
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -6 10
|
||||
pos: 40 8 6
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARCADE
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 0 30 48
|
||||
bmp-offset: 0 49
|
||||
pos: 56 8 0
|
||||
size: 8 8 16
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BATMAN
|
||||
bmp: batman.gif
|
||||
bmp-rect: 0 0 21 32
|
||||
bmp-offset: -5 35
|
||||
pos: 9 29 0
|
||||
size: 8 8 8
|
||||
orient: XN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 0 16 0
|
||||
size: 6 5 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LAMPARA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 128 0 20 41
|
||||
bmp-offset: -6 45
|
||||
pos: 16 8 0
|
||||
size: 6 6 16
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NES
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: -2 33
|
||||
pos: 0 32 0
|
||||
size: 8 7 6
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: SOFA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 0 48 40
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 16 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: SOFA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 0 48 40
|
||||
bmp-offset: 6 35
|
||||
pos: 0 44 0
|
||||
size: 16 8 6
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: SPECTRUM
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 32 32
|
||||
bmp-offset: -4 34
|
||||
pos: 8 9 8
|
||||
size: 8 6 2
|
||||
orient: YP
|
||||
flags: PICKABLE PUSHABLE ORIENTABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: 2 35
|
||||
pos: 0 24 4
|
||||
size: 8 6 8
|
||||
orient: YP
|
||||
anim-cycle: DUO
|
||||
anim-wait: 4
|
||||
flags: ANIMATED ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: -4 34
|
||||
pos: 0 9 8
|
||||
size: 8 6 8
|
||||
orient: YP
|
||||
anim-cycle: DUO
|
||||
anim-wait: 5
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
235
data/rooms/27.txt
Normal file
@@ -0,0 +1,235 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
color: YELLOW
|
||||
floor-texture: 10
|
||||
wall-texture: 9
|
||||
door-texture: 3
|
||||
under-door-texture: 9
|
||||
exit-xp: 17
|
||||
exit-xn: 28
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: B-03-GOD
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 114 78 15 18
|
||||
bmp-offset: -8 22
|
||||
pos: 48 -3 16
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 16 32 0
|
||||
size: 6 5 8
|
||||
orient: YP
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 66 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 7 8 6
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 102 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 7 48 6
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 16 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 16 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 24 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 8 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 40 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 24 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 48 0 0
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 96 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 40 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 72 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 48 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 96 48 24 27
|
||||
bmp-offset: -8 31
|
||||
pos: 8 0 8
|
||||
size: 8 4 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: NES
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: -2 33
|
||||
pos: 32 0 0
|
||||
size: 8 7 6
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 8 56 0
|
||||
size: 8 8 2
|
||||
orient: XN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 32 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: -4 34
|
||||
pos: 24 0 4
|
||||
size: 8 6 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
293
data/rooms/28.txt
Normal file
@@ -0,0 +1,293 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xp: 0
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: GREEN
|
||||
floor-texture: 10
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 3
|
||||
exit-xp: 27
|
||||
exit-yp: 35
|
||||
exit-yn: 29
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ANBERNIC3
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 0 8 0
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 48 48 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 48 40 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 40 48 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 48 16 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 48 8 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 40 8 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 16 8 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 8 8 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 8 16 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 8 40 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-10
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 8 48 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-11
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 16 48 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-12
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 24 24 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-13
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 32 24 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-14
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 32 32 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BLOCMATA-15
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 133 32 27
|
||||
bmp-offset: 0 27
|
||||
pos: 24 32 0
|
||||
size: 8 8 6
|
||||
flags: REACTIVE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 8 8 6
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
flags: PUSHABLE MOVING INERTIA
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 8 48 31
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
flags: PUSHABLE MOVING INERTIA
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 48 48 23
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
flags: PUSHABLE MOVING INERTIA
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 48 8 15
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
flags: PUSHABLE MOVING INERTIA
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-BATMAN
|
||||
bmp: gat.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 0 24 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RAND
|
||||
}
|
||||
|
||||
actor{
|
||||
name: GAT-ROBIN
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RAND
|
||||
}
|
||||
36
data/rooms/29.txt
Normal file
@@ -0,0 +1,36 @@
|
||||
width: 0
|
||||
height: 3
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: WHITE
|
||||
floor-texture: 4
|
||||
wall-texture: 2
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 31
|
||||
exit-yp: 28
|
||||
exit-yn: 30
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: CUADRO-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 66 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 23 8 6
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 102 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 23 48 6
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
258
data/rooms/30.txt
Normal file
@@ -0,0 +1,258 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-yp: 1
|
||||
color: CYAN
|
||||
floor-texture: 11
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-yp: 29
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATF-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 16
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ROOMBA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 0 56 4
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
flags: REACTIVE MOVING DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: S-BAG
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 145 41 20 25
|
||||
bmp-offset: -5 27
|
||||
pos: 0 56 20
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 26 6
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 26 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 4 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 4 6
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 4 12
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 4 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 4 16
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 4 8
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: -4 34
|
||||
pos: 0 13 24
|
||||
size: 8 6 8
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
118
data/rooms/31.txt
Normal file
@@ -0,0 +1,118 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yp: 5
|
||||
color: PURPLE
|
||||
floor-texture: 1
|
||||
wall-texture: 2
|
||||
door-texture: 3
|
||||
under-door-texture: 2
|
||||
exit-xp: 29
|
||||
exit-yp: 32
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 26 29 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 8
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 48 8 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 40 8 0
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 40 8 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 48 8 6
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 48 8 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ESTANT-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 21 101 26 24
|
||||
bmp-offset: -6 27
|
||||
pos: 40 8 12
|
||||
size: 8 5 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
23
data/rooms/32.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
width: 0
|
||||
height: 0
|
||||
door-height-yp: 3
|
||||
door-height-yn: 0
|
||||
color: CYAN
|
||||
floor-texture: 6
|
||||
wall-texture: 3
|
||||
door-texture: 1
|
||||
under-door-texture: 3
|
||||
exit-yp: 33
|
||||
exit-yn: 31
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-C
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
226
data/rooms/33.txt
Normal file
@@ -0,0 +1,226 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xp: 0
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: WHITE
|
||||
floor-texture: 10
|
||||
wall-texture: 9
|
||||
door-texture: 3
|
||||
under-door-texture: 0
|
||||
exit-xp: 35
|
||||
exit-yp: 34
|
||||
exit-yn: 32
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ANBERNIC4
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 24 32 0
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: OBRER-00
|
||||
bmp: obrer.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 37
|
||||
pos: 32 24 0
|
||||
size: 8 8 9
|
||||
orient: YP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: Y
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 40 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 32 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 24 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 40 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 40 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 40 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 24 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-15
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 32 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
407
data/rooms/34.txt
Normal file
@@ -0,0 +1,407 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-yp: 0
|
||||
door-height-yn: 2
|
||||
color: GREEN
|
||||
floor-texture: 7
|
||||
wall-texture: 5
|
||||
door-texture: 6
|
||||
under-door-texture: 0
|
||||
exit-yp: 36
|
||||
exit-yn: 33
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ANBERNIC5
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 40 16 0
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 9 17 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BARANA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 48 16 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-01
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 24 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-02
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 32 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-03
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 40 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-04
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 48 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-05
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 56 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-06
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 17 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-07
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 24 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-08
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 32 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-09
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 40 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-10
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 48 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-A-11
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 56 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 40 16 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 16 16 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 8 16 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 176 94 16 40
|
||||
bmp-offset: -3 40
|
||||
pos: 40 17 9
|
||||
size: 1 8 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 80 133 16 47
|
||||
bmp-offset: 0 45
|
||||
pos: 48 -8 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 80 133 16 47
|
||||
bmp-offset: 0 45
|
||||
pos: 40 -8 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 80 133 16 47
|
||||
bmp-offset: 0 45
|
||||
pos: 16 -8 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO-09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 80 133 16 47
|
||||
bmp-offset: 0 45
|
||||
pos: 8 -8 9
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PASAMANS
|
||||
bmp: altres.gif
|
||||
bmp-rect: 176 94 16 40
|
||||
bmp-offset: -3 38
|
||||
pos: 23 17 9
|
||||
size: 1 8 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
229
data/rooms/35.txt
Normal file
@@ -0,0 +1,229 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xn: 3
|
||||
door-height-yn: 3
|
||||
color: YELLOW
|
||||
floor-texture: 11
|
||||
wall-texture: 9
|
||||
door-texture: 3
|
||||
under-door-texture: 9
|
||||
exit-xn: 33
|
||||
exit-yn: 28
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: PUSHABLE
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 0 12
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 0 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 8 12
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 16 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 24 4
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 40 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 32 4
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 48 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 56 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-15
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-16
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-17
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 8
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
26
data/rooms/36.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yn: 0
|
||||
color: YELLOW
|
||||
floor-texture: 7
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-xp: 37
|
||||
exit-yn: 34
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: GAT-ROBIN
|
||||
bmp: gat2.gif
|
||||
bmp-rect: 0 0 24 28
|
||||
bmp-offset: -4 32
|
||||
pos: 24 32 0
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RAND
|
||||
}
|
||||
29
data/rooms/37.txt
Normal file
@@ -0,0 +1,29 @@
|
||||
width: 3
|
||||
height: 0
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
door-height-yn: 0
|
||||
color: CYAN
|
||||
floor-texture: 7
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-xn: 36
|
||||
exit-yp: 38
|
||||
exit-yn: 39
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: COFFEE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 32 133 21 21
|
||||
bmp-offset: -6 26
|
||||
pos: 48 24 0
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
anim-cycle: DUO
|
||||
anim-wait: 3
|
||||
flags: REACTIVE MOVING ANIMATED DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDJ
|
||||
}
|
||||
210
data/rooms/38.txt
Normal file
@@ -0,0 +1,210 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-yn: 0
|
||||
color: PURPLE
|
||||
floor-texture: 7
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-yn: 37
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 18 51 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BOX-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 0
|
||||
size: 8 8 8
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: P-SALT
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 86 32 20 32
|
||||
bmp-offset: -7 35
|
||||
pos: 56 56 32
|
||||
size: 4 4 4
|
||||
anim-cycle: SEQ
|
||||
anim-wait: 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 16
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 24
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 16
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 8
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 16
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 24
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 24
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
135
data/rooms/39.txt
Normal file
@@ -0,0 +1,135 @@
|
||||
width: 3
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-yp: 0
|
||||
color: WHITE
|
||||
floor-texture: 7
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-xp: 40
|
||||
exit-yp: 37
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ANBERNIC6
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 0 8 0
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-00
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 40 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-01
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 32 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-02
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 10 18 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-03
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 8 24 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-04
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 16 16 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-05
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 24 16 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-06
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 32 16 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-07
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 40 16 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-08
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 48 16 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
225
data/rooms/40.txt
Normal file
@@ -0,0 +1,225 @@
|
||||
width: 2
|
||||
height: 3
|
||||
door-height-xn: 1
|
||||
door-height-yp: 1
|
||||
door-height-yn: 1
|
||||
color: YELLOW
|
||||
floor-texture: 11
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-xn: 39
|
||||
exit-yp: 44
|
||||
exit-yn: 41
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 32 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 24 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 16 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 32 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-10
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 32 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-11
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 40 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-12
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 48 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-13
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 48 0
|
||||
size: 8 8 6
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-14
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 40 0
|
||||
size: 8 8 6
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
89
data/rooms/41.txt
Normal file
@@ -0,0 +1,89 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 5
|
||||
door-height-yp: 5
|
||||
color: CYAN
|
||||
floor-texture: 11
|
||||
wall-texture: 5
|
||||
door-texture: 5
|
||||
under-door-texture: 0
|
||||
exit-xp: 42
|
||||
exit-yp: 40
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 26 34 10
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 32 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 36 28 12
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 48 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 48 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
43
data/rooms/42.txt
Normal file
@@ -0,0 +1,43 @@
|
||||
width: 3
|
||||
height: 0
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
color: GREEN
|
||||
floor-texture: 7
|
||||
wall-texture: 5
|
||||
door-texture: 4
|
||||
under-door-texture: 0
|
||||
exit-xn: 41
|
||||
exit-yp: 43
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ARBUST-00
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 56 24 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARBUST-01
|
||||
bmp: doors.gif
|
||||
bmp-rect: 160 7 16 40
|
||||
bmp-offset: -8 47
|
||||
pos: 56 32 0
|
||||
size: 6 6 14
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: WC
|
||||
bmp: altres.gif
|
||||
bmp-rect: 105 0 21 33
|
||||
bmp-offset: -4 36
|
||||
pos: 40 24 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
92
data/rooms/43.txt
Normal file
@@ -0,0 +1,92 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-yn: 1
|
||||
color: WHITE
|
||||
floor-texture: 0
|
||||
wall-texture: 15
|
||||
door-texture: 8
|
||||
under-door-texture: 0
|
||||
exit-yn: 42
|
||||
exit-zn: 47
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: LIFT-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 0 24 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LIFT-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 24
|
||||
bmp-offset: 0 24
|
||||
pos: 0 32 16
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LORD-ABAD
|
||||
bmp: lordabad.gif
|
||||
bmp-rect: 0 0 20 33
|
||||
bmp-offset: -6 38
|
||||
pos: 2 28 20
|
||||
size: 8 8 8
|
||||
orient: XP
|
||||
anim-cycle: MIN
|
||||
anim-wait: 1
|
||||
flags: ANIMATED ORIENTABLE
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
585
data/rooms/44.txt
Normal file
@@ -0,0 +1,585 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xp: 1
|
||||
door-height-yn: 3
|
||||
color: GREEN
|
||||
floor-texture: 0
|
||||
wall-texture: 4
|
||||
door-texture: 5
|
||||
under-door-texture: 0
|
||||
exit-xp: 45
|
||||
exit-yn: 40
|
||||
exit-zn: 46
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-A
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 56 34 24 42
|
||||
bmp-offset: 2 45
|
||||
pos: 8 8 0
|
||||
size: 2 8 8
|
||||
flags: PUSHABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 0 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-15
|
||||
bmp: doors.gif
|
||||
bmp-rect: 96 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-16
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-17
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-18
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 16 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-19
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-20
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 32 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-20
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-21
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-22
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-23
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-24
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-25
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 64 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-26
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-27
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 0 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-28
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 0 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-29
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 0 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-30
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 0 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-31
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 0 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-32
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 8 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-32
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-33
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 16 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-34
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 24 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-35
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 0 32 32 23
|
||||
bmp-offset: 0 23
|
||||
pos: 32 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-36
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-37
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-38
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-39
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-40
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-41
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 160 0 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 56 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-42
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 48 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-43
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 40 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-44
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 32 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-45
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 16 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-46
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-47
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 8 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATF-48
|
||||
bmp: piscina.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 0 4
|
||||
size: 8 8 8
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-25
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-26
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-27
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-35
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-36
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-37
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-38
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
218
data/rooms/45.txt
Normal file
@@ -0,0 +1,218 @@
|
||||
width: 3
|
||||
height: 2
|
||||
door-height-xn: 5
|
||||
color: PURPLE
|
||||
floor-texture: 0
|
||||
wall-texture: 13
|
||||
door-texture: 5
|
||||
under-door-texture: 13
|
||||
exit-xn: 44
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BARANA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 0 23 19
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BARANA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 8 30 23
|
||||
size: 1 8 10
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BARANA-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 94 16 36
|
||||
bmp-offset: -15 43
|
||||
pos: 8 38 23
|
||||
size: 1 8 10
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: G-ELBOW
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 32 22 32
|
||||
bmp-offset: -2 35
|
||||
pos: 24 8 0
|
||||
size: 4 4 4
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: G-FILTER
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 0 24 32
|
||||
bmp-offset: -4 34
|
||||
pos: 24 8 8
|
||||
size: 4 4 4
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: G-PIPE
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 0 64 16 32
|
||||
bmp-offset: -8 36
|
||||
pos: 16 8 0
|
||||
size: 4 4 4
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: G-PUMP
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 48 64 22 32
|
||||
bmp-offset: -5 35
|
||||
pos: 16 8 11
|
||||
size: 4 4 4
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: G-SALT
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 66 32 20 32
|
||||
bmp-offset: -7 35
|
||||
pos: 32 8 0
|
||||
size: 4 4 4
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: G-TIMER
|
||||
bmp: objectes.gif
|
||||
bmp-rect: 72 0 24 32
|
||||
bmp-offset: -4 34
|
||||
pos: 32 8 8
|
||||
size: 4 4 4
|
||||
anim-wait: 2
|
||||
flags: ANIMATED SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PASAMANS
|
||||
bmp: altres.gif
|
||||
bmp-rect: 176 94 16 40
|
||||
bmp-offset: -3 38
|
||||
pos: 8 40 18
|
||||
size: 1 8 10
|
||||
orient: YP
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PASAMANS-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 176 94 16 40
|
||||
bmp-offset: -15 48
|
||||
pos: 17 47 1
|
||||
size: 8 1 10
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PASAMANS-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 176 94 16 40
|
||||
bmp-offset: -15 48
|
||||
pos: 9 47 5
|
||||
size: 8 1 14
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 15
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 15
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 11
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 7
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 48 3
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
191
data/rooms/46.txt
Normal file
@@ -0,0 +1,191 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xp: 0
|
||||
door-height-xn: 0
|
||||
door-height-yp: 0
|
||||
color: WHITE
|
||||
floor-texture: 1
|
||||
wall-texture: 8
|
||||
door-texture: 5
|
||||
under-door-texture: 13
|
||||
exit-xp: 49
|
||||
exit-xn: 56
|
||||
exit-yp: 55
|
||||
exit-zp: 44
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BUBBLE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 16 16 21
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 24 16 17
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-02
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 32 16 15
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-03
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 40 16 16
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-04
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 40 24 18
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-05
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 40 32 17
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-06
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 32 40 15
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-07
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 40 40 21
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-08
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 24 40 18
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-09
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 16 40 25
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-10
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 16 32 15
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-11
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 16 24 20
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-12
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 24 24 20
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-13
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 32 24 18
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-14
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 32 32 17
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: BUBBLE-15
|
||||
bmp: altres.gif
|
||||
bmp-rect: 20 75 28 26
|
||||
bmp-offset: -2 28
|
||||
pos: 24 32 19
|
||||
size: 8 8 8
|
||||
flags: DISAPPEAR
|
||||
movement: CW
|
||||
}
|
||||
350
data/rooms/47.txt
Normal file
@@ -0,0 +1,350 @@
|
||||
width: 3
|
||||
height: 3
|
||||
door-height-xp: 1
|
||||
door-height-yp: 1
|
||||
door-height-yn: 1
|
||||
color: CYAN
|
||||
floor-texture: 0
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xp: 50
|
||||
exit-yp: 49
|
||||
exit-yn: 48
|
||||
exit-zp: 43
|
||||
exit-zn: 51
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BATMAN
|
||||
bmp: batman.gif
|
||||
bmp-rect: 0 0 21 32
|
||||
bmp-offset: -5 35
|
||||
pos: 0 24 4
|
||||
size: 8 8 8
|
||||
orient: YN
|
||||
anim-wait: 1
|
||||
flags: REACTIVE MOVING ANIMATED ORIENTABLE DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: CCW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-08
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-09
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-10
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-11
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-12
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-13
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-14
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-15
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-16
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-17
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-18
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-19
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-20
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-21
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-22
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-23
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-24
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-25
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-25
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: MOVING
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-26
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-27
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 16 0 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
123
data/rooms/48.txt
Normal file
@@ -0,0 +1,123 @@
|
||||
width: 1
|
||||
height: 3
|
||||
door-height-yp: 1
|
||||
door-height-yn: 5
|
||||
color: PURPLE
|
||||
floor-texture: 11
|
||||
wall-texture: 13
|
||||
door-texture: 7
|
||||
under-door-texture: 13
|
||||
exit-yp: 47
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: BOX-A
|
||||
bmp: sam.gif
|
||||
bmp-rect: 0 0 19 33
|
||||
bmp-offset: -10 38
|
||||
pos: 27 0 19
|
||||
size: 8 8 8
|
||||
anim-cycle: DUO
|
||||
anim-wait: 20
|
||||
flags: PUSHABLE ANIMATED
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 8 10
|
||||
bmp-offset: 0 32
|
||||
pos: 28 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 32
|
||||
bmp-offset: 0 24
|
||||
pos: 24 0 15
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 32 32 32
|
||||
bmp-offset: 0 24
|
||||
pos: 32 0 15
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 56 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 48 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 40 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
49
data/rooms/49.txt
Normal file
@@ -0,0 +1,49 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-xn: 5
|
||||
door-height-yn: 0
|
||||
color: GREEN
|
||||
floor-texture: 1
|
||||
wall-texture: 13
|
||||
door-texture: 5
|
||||
under-door-texture: 13
|
||||
exit-xn: 46
|
||||
exit-yn: 47
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: COFFEE-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 32 133 21 21
|
||||
bmp-offset: -6 26
|
||||
pos: 16 48 0
|
||||
size: 8 8 2
|
||||
orient: YN
|
||||
anim-cycle: DUO
|
||||
anim-wait: 3
|
||||
flags: REACTIVE MOVING ANIMATED DEADLY
|
||||
react-mask: XP XN YP YN ZP ZN
|
||||
movement: RANDJ
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 35 32 0
|
||||
size: 8 8 6
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TRANSPA-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 160 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 35 6
|
||||
size: 8 8 6
|
||||
flags: PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
127
data/rooms/50.txt
Normal file
@@ -0,0 +1,127 @@
|
||||
width: 3
|
||||
height: 2
|
||||
door-height-xn: 4
|
||||
door-height-yn: 1
|
||||
color: YELLOW
|
||||
floor-texture: 11
|
||||
wall-texture: 0
|
||||
door-texture: 0
|
||||
under-door-texture: 0
|
||||
exit-xn: 47
|
||||
exit-yn: 26
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: NES
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 96 0 32 32
|
||||
bmp-offset: -2 33
|
||||
pos: 32 16 4
|
||||
size: 8 7 6
|
||||
flags: PICKABLE PUSHABLE GRAVITY
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-00
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-01
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 24 8 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 16 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-02
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 24 12
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-03
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 0 32 12
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-04
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 32 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-05
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-06
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 48 24 0
|
||||
size: 8 8 4
|
||||
orient: ZP
|
||||
flags: DISAPPEAR
|
||||
movement: Z
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PLATH-07
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 128 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 56 24 0
|
||||
size: 8 8 4
|
||||
orient: XN
|
||||
flags: MOVING
|
||||
movement: X
|
||||
}
|
||||
157
data/rooms/51.txt
Normal file
@@ -0,0 +1,157 @@
|
||||
width: 2
|
||||
height: 2
|
||||
door-height-yp: 0
|
||||
color: PURPLE
|
||||
floor-texture: 1
|
||||
wall-texture: 8
|
||||
door-texture: 5
|
||||
under-door-texture: 0
|
||||
exit-yp: 52
|
||||
exit-zp: 47
|
||||
editor-done: 1
|
||||
|
||||
actor{
|
||||
name: ANBERNIC7
|
||||
bmp: altres.gif
|
||||
bmp-rect: 157 80 24 14
|
||||
bmp-offset: -4 16
|
||||
pos: 8 40 0
|
||||
size: 6 4 2
|
||||
flags: SPECIAL
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: ARCADE
|
||||
bmp: altres.gif
|
||||
bmp-rect: 160 0 30 48
|
||||
bmp-offset: 0 49
|
||||
pos: 8 24 0
|
||||
size: 8 8 16
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CADIRA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 64 96 20 32
|
||||
bmp-offset: -7 38
|
||||
pos: 16 8 0
|
||||
size: 6 5 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: CUADRO
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 75 18 32
|
||||
bmp-offset: 0 39
|
||||
pos: 35 7 12
|
||||
size: 1 1 9
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-00
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 8 48 0
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: KALLAX-01
|
||||
bmp: altres.gif
|
||||
bmp-rect: 24 48 24 27
|
||||
bmp-offset: 0 31
|
||||
pos: 8 48 8
|
||||
size: 8 4 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: LLIT
|
||||
bmp: altres.gif
|
||||
bmp-rect: 48 0 57 47
|
||||
bmp-offset: 11 32
|
||||
pos: 24 8 0
|
||||
size: 16 16 8
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: MESITA
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 0 64 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 40 8 0
|
||||
size: 8 8 4
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: PILOTA
|
||||
bmp: altres.gif
|
||||
bmp-rect: 0 108 21 21
|
||||
bmp-offset: -6 26
|
||||
pos: 8 32 0
|
||||
size: 8 8 8
|
||||
flags: PUSHABLE INERTIA
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: SPECTRUM
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 0 32 32
|
||||
bmp-offset: 0 34
|
||||
pos: 8 16 8
|
||||
size: 8 6 2
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-A
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 128 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 8 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TAULA-B
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 160 32 32 32
|
||||
bmp-offset: 0 32
|
||||
pos: 8 16 0
|
||||
size: 8 8 8
|
||||
orient: YP
|
||||
flags: ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
|
||||
actor{
|
||||
name: TV
|
||||
bmp: caixes.gif
|
||||
bmp-rect: 32 64 32 32
|
||||
bmp-offset: 2 34
|
||||
pos: 8 8 8
|
||||
size: 8 6 8
|
||||
orient: YP
|
||||
flags: PUSHABLE ORIENTABLE
|
||||
movement: CW
|
||||
}
|
||||
12
data/rooms/52.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
width: 0
|
||||
height: 3
|
||||
door-height-xn: 0
|
||||
door-height-yn: 0
|
||||
color: WHITE
|
||||
floor-texture: 3
|
||||
wall-texture: 8
|
||||
door-texture: 5
|
||||
under-door-texture: 0
|
||||
exit-xn: 53
|
||||
exit-yn: 51
|
||||
editor-done: 1
|
||||