Compare commits
1 Commits
v0.8
...
new_engine
| Author | SHA1 | Date | |
|---|---|---|---|
| dfb4919a3e |
3
.gitignore
vendored
@@ -1,6 +1,7 @@
|
||||
.vscode
|
||||
bin
|
||||
*config.txt
|
||||
data/config.bin
|
||||
data/score.bin
|
||||
dll
|
||||
docs
|
||||
icon
|
||||
|
||||
14
Makefile
@@ -1,18 +1,12 @@
|
||||
executable = jaildoctors_dilemma
|
||||
source = source/*.cpp source/common/*.cpp
|
||||
|
||||
windows:
|
||||
@echo off
|
||||
if not exist bin\ (mkdir bin)
|
||||
if not exist data\config (mkdir data\config)
|
||||
g++ $(source) -std=c++11 -Wall -O2 -lmingw32 -lSDL2main -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -static-libstdc++ -Wl,-subsystem,windows -o bin/$(executable).exe
|
||||
strip -s -R .comment -R .gnu.version bin/$(executable).exe --strip-unneeded
|
||||
mkdir bin
|
||||
g++ -std=c++11 -Wall -O2 -lSDL2 -lmingw32 -lSDL2main -mwindows source/*.cpp -o bin/$(executable).exe
|
||||
macos:
|
||||
mkdir -p bin
|
||||
mkdir -p data/config
|
||||
g++ $(source) -std=c++11 -Wall -O2 -lSDL2 -ffunction-sections -fdata-sections -o bin/$(executable)_macos
|
||||
g++ -std=c++11 -Wall -O2 source/*.cpp -o bin/$(executable)_macos -lSDL2
|
||||
linux:
|
||||
mkdir -p bin
|
||||
mkdir -p data/config
|
||||
g++ $(source) -std=c++11 -Wall -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_linux
|
||||
g++ source/*.cpp -std=c++11 -Os -lSDL2 -ffunction-sections -fdata-sections -Wl,--gc-sections -o bin/$(executable)_linux
|
||||
strip -s -R .comment -R .gnu.version bin/$(executable)_linux --strip-unneeded
|
||||
@@ -1,9 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 267 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,9 +0,0 @@
|
||||
frameWidth=7
|
||||
frameHeight=7
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=10
|
||||
loop=0
|
||||
frames=0
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 122 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=7
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=10
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 139 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=5
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 129 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,3,3,3,3,3,3,3,3,3,3,3,2,1,0,0,0
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 250 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 234 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=9
|
||||
frameHeight=7
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=3
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 134 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 241 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=10
|
||||
loop=0
|
||||
frames=0,1,2,3,4
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 174 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 306 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=24
|
||||
frameHeight=32
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7,6,5,4,3,2,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 180 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=10
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,0,1,2,3,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5,4,5
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 253 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 319 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 329 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 298 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 285 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 271 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 306 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=13
|
||||
frameHeight=15
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 205 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=11
|
||||
frameHeight=13
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 189 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 351 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3,4,5,1,3,5,1,3,5,1,3,5
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 323 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 378 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 160 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=32
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 414 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 332 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=12
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 228 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 310 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 441 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=5
|
||||
loop=0
|
||||
frames=0,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 205 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 177 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,3,2,1,0
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 317 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=16
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 300 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=24
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=4
|
||||
loop=0
|
||||
frames=0,1,2,3
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 413 B |
@@ -1,9 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=8
|
||||
|
||||
[animation]
|
||||
name=default
|
||||
speed=6
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,4,3,2,1
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 163 B |
|
Before Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 219 B |
@@ -1,23 +0,0 @@
|
||||
frameWidth=8
|
||||
frameHeight=16
|
||||
|
||||
[animation]
|
||||
name=stand
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0
|
||||
[/animation]
|
||||
|
||||
[animation]
|
||||
name=walk
|
||||
speed=8
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7
|
||||
[/animation]
|
||||
|
||||
[animation]
|
||||
name=walk_menu
|
||||
speed=0
|
||||
loop=0
|
||||
frames=0,1,2,3,4,5,6,7
|
||||
[/animation]
|
||||
|
Before Width: | Height: | Size: 314 B |
@@ -1,201 +1,102 @@
|
||||
name=THE JAIL
|
||||
bgColor=bright_blue
|
||||
border=blue
|
||||
tilemap=01.tmx
|
||||
name=void main
|
||||
bgColor=black
|
||||
border=red
|
||||
tileset=standard.png
|
||||
roomUp=0
|
||||
roomDown=0
|
||||
roomLeft=0
|
||||
roomLeft=06.room
|
||||
roomRight=02.room
|
||||
|
||||
[tilemap]
|
||||
01.tmx
|
||||
[/tilemap]
|
||||
|
||||
[enemy]
|
||||
tileset=jailer.png
|
||||
animation=jailer.ani
|
||||
tileset=paco.png
|
||||
animation=paco.ani
|
||||
width=16
|
||||
height=16
|
||||
x=1
|
||||
y=13
|
||||
y=0
|
||||
vx=0
|
||||
vy=0
|
||||
vy=0.3
|
||||
x1=1
|
||||
y1=13
|
||||
y1=0
|
||||
x2=1
|
||||
y2=13
|
||||
color=white
|
||||
y2=6
|
||||
color=red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=jailer3.png
|
||||
animation=jailer3.ani
|
||||
width=16
|
||||
height=16
|
||||
x=4
|
||||
y=13
|
||||
vx=0
|
||||
vy=0
|
||||
x1=4
|
||||
y1=13
|
||||
x2=4
|
||||
y2=13
|
||||
color=white
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=jailer.png
|
||||
animation=jailer.ani
|
||||
width=16
|
||||
height=16
|
||||
x=7
|
||||
y=13
|
||||
vx=0
|
||||
vy=0
|
||||
x1=7
|
||||
y1=13
|
||||
x2=7
|
||||
y2=13
|
||||
color=white
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=jailer2.png
|
||||
animation=jailer2.ani
|
||||
width=16
|
||||
height=16
|
||||
x=10
|
||||
y=13
|
||||
vx=0
|
||||
vy=0
|
||||
x1=10
|
||||
y1=13
|
||||
x2=10
|
||||
y2=13
|
||||
color=white
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=jailer.png
|
||||
animation=jailer.ani
|
||||
width=16
|
||||
height=16
|
||||
x=13
|
||||
y=13
|
||||
vx=0
|
||||
vy=0
|
||||
x1=13
|
||||
y1=13
|
||||
x2=13
|
||||
y2=13
|
||||
color=white
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=printer.png
|
||||
animation=printer.ani
|
||||
width=16
|
||||
height=16
|
||||
x=2
|
||||
y=9
|
||||
vx=0
|
||||
vy=0
|
||||
x1=2
|
||||
y1=9
|
||||
x2=2
|
||||
y2=9
|
||||
color=white
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=printer.png
|
||||
animation=printer.ani
|
||||
tileset=paco.png
|
||||
animation=paco.ani
|
||||
width=16
|
||||
height=16
|
||||
x=5
|
||||
y=9
|
||||
vx=0
|
||||
vx=0.6
|
||||
vy=0
|
||||
x1=5
|
||||
y1=9
|
||||
x2=5
|
||||
x2=22
|
||||
y2=9
|
||||
color=white
|
||||
color=yellow
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=lamp.png
|
||||
animation=lamp.ani
|
||||
width=16
|
||||
height=16
|
||||
x=23
|
||||
y=5
|
||||
vx=0
|
||||
vy=0
|
||||
x1=23
|
||||
y1=5
|
||||
x2=23
|
||||
y2=5
|
||||
color=white
|
||||
[/enemy]
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=1
|
||||
y=7
|
||||
counter=6
|
||||
[/item]
|
||||
|
||||
[enemy]
|
||||
tileset=bry.png
|
||||
animation=bry.ani
|
||||
width=8
|
||||
height=16
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=17
|
||||
y=13
|
||||
vx=0
|
||||
vy=0
|
||||
x1=17
|
||||
y1=13
|
||||
x2=17
|
||||
y2=13
|
||||
color=white
|
||||
[/enemy]
|
||||
y=8
|
||||
counter=7
|
||||
[/item]
|
||||
|
||||
#[enemy]
|
||||
#tileset=tv_panel.png
|
||||
#animation=tv_panel.ani
|
||||
#width=24
|
||||
#height=16
|
||||
#x=18
|
||||
#y=9
|
||||
#vx=0
|
||||
#vy=0
|
||||
#x1=18
|
||||
#y1=9
|
||||
#x2=18
|
||||
#y2=9
|
||||
#color=white
|
||||
#[/enemy]
|
||||
#
|
||||
#[enemy]
|
||||
#tileset=tv_panel.png
|
||||
#animation=tv_panel.ani
|
||||
#width=24
|
||||
#height=16
|
||||
#x=22
|
||||
#y=9
|
||||
#vx=0
|
||||
#vy=0
|
||||
#x1=22
|
||||
#y1=9
|
||||
#x2=22
|
||||
#y2=9
|
||||
#color=white
|
||||
#[/enemy]
|
||||
#
|
||||
#[enemy]
|
||||
#tileset=tv_panel.png
|
||||
#animation=tv_panel.ani
|
||||
#width=24
|
||||
#height=16
|
||||
#x=26
|
||||
#y=9
|
||||
#vx=0
|
||||
#vy=0
|
||||
#x1=26
|
||||
#y1=9
|
||||
#x2=26
|
||||
#y2=9
|
||||
#color=white
|
||||
#[/enemy]
|
||||
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=12
|
||||
y=12
|
||||
counter=1
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=13
|
||||
y=12
|
||||
counter=2
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=14
|
||||
y=12
|
||||
counter=3
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=15
|
||||
y=12
|
||||
counter=4
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=0
|
||||
x=16
|
||||
y=12
|
||||
counter=5
|
||||
[/item]
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<map version="1.9" tiledversion="1.9.1" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="../../../jaildoctors_dilemma_resources/tilesets/standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,
|
||||
188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,
|
||||
188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,
|
||||
43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,
|
||||
43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,
|
||||
43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,
|
||||
34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,21,21,21,21,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,21,21,21,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,21,0,0,0,0,0,21,21,21,21,21,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,0,0,0,0,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,211,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,
|
||||
21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
|
||||
@@ -1,65 +1,35 @@
|
||||
name=road to the jail
|
||||
name=case switch
|
||||
bgColor=black
|
||||
border=cyan
|
||||
tilemap=02.tmx
|
||||
border=green
|
||||
tileset=standard.png
|
||||
roomUp=0
|
||||
roomDown=04.room
|
||||
roomLeft=01.room
|
||||
roomRight=03.room
|
||||
|
||||
[enemy]
|
||||
tileset=diskette.png
|
||||
animation=diskette.ani
|
||||
width=16
|
||||
height=16
|
||||
x=5
|
||||
y=6
|
||||
vx=0
|
||||
vy=0.4
|
||||
x1=5
|
||||
y1=4
|
||||
x2=5
|
||||
y2=10
|
||||
color=bright_red
|
||||
[/enemy]
|
||||
[tilemap]
|
||||
02.tmx
|
||||
[/tilemap]
|
||||
|
||||
[enemy]
|
||||
tileset=diskette.png
|
||||
animation=diskette.ani
|
||||
tileset=paco.png
|
||||
animation=paco.ani
|
||||
width=16
|
||||
height=16
|
||||
x=13
|
||||
y=1
|
||||
x=14
|
||||
y=0
|
||||
vx=0
|
||||
vy=0.4
|
||||
x1=13
|
||||
y1=1
|
||||
x2=13
|
||||
y2=9
|
||||
color=red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=chip.png
|
||||
animation=chip.ani
|
||||
width=8
|
||||
height=16
|
||||
x=8
|
||||
y=13
|
||||
vx=0.4
|
||||
vy=0
|
||||
x1=8
|
||||
y1=13
|
||||
x2=23
|
||||
y2=13
|
||||
color=yellow
|
||||
vy=1
|
||||
x1=14
|
||||
y1=0
|
||||
x2=14
|
||||
y2=12
|
||||
color=magenta
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=21
|
||||
x=1
|
||||
y=9
|
||||
counter=1
|
||||
tile=1
|
||||
x=19
|
||||
y=6
|
||||
[/item]
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<map version="1.9" tiledversion="1.9.0" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="../../../jaildoctors_dilemma_resources/tilesets/standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
39,417,417,417,417,0,0,417,417,417,417,417,417,0,0,417,417,417,417,417,417,417,417,417,417,417,505,39,39,39,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,39,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,39,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,39,39,39,
|
||||
39,417,417,417,417,0,0,417,417,417,417,417,417,0,0,417,417,417,417,417,417,417,505,0,0,0,0,0,0,0,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,39,39,
|
||||
39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,0,0,0,0,39,39,
|
||||
39,417,417,417,417,0,0,417,417,417,417,417,417,0,0,417,417,417,417,0,0,0,0,0,0,0,0,0,0,0,39,39,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,0,0,39,39,39,39,39,39,39,39,39,39
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,203,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,23,23,23,0,0,0,0,0,0,0,0,0,23,
|
||||
23,23,23,23,23,23,0,0,0,203,0,0,0,0,0,0,0,0,0,23,0,0,0,0,203,203,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,23,0,0,0,0,203,203,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,203,203,23,
|
||||
0,0,0,0,0,0,0,203,203,203,203,203,203,0,0,0,0,0,0,23,0,0,0,0,203,203,0,0,0,0,0,23,
|
||||
0,0,0,0,0,203,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,23,
|
||||
43,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,83,83,83,83,83,83,83,83,83,83,83,83,
|
||||
43,43,43,43,43,43,43,43,43,43,43,43,43,43,223,0,0,223,43,43,43,43,43,43,43,43,43,43,43,43,43,43
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
|
||||
@@ -1,36 +1,67 @@
|
||||
name=void main
|
||||
bgColor=black
|
||||
border=magenta
|
||||
tilemap=03.tmx
|
||||
name=the edge
|
||||
bgColor=bright_black
|
||||
border=black
|
||||
tileset=standard.png
|
||||
roomUp=0
|
||||
roomDown=0
|
||||
roomDown=05.room
|
||||
roomLeft=02.room
|
||||
roomRight=0
|
||||
autoSurface=left
|
||||
itemColor1=bright_cyan
|
||||
itemColor2=yellow
|
||||
|
||||
[tilemap]
|
||||
03.tmx
|
||||
[/tilemap]
|
||||
|
||||
[enemy]
|
||||
tileset=code.png
|
||||
animation=code.ani
|
||||
width=16
|
||||
tileset=chip.png
|
||||
animation=chip.ani
|
||||
width=8
|
||||
height=16
|
||||
x=3
|
||||
y=2
|
||||
vx=0.4
|
||||
vy=0
|
||||
x1=3
|
||||
x=4
|
||||
y=5
|
||||
vx=0
|
||||
vy=1
|
||||
x1=4
|
||||
y1=2
|
||||
x2=27
|
||||
y2=2
|
||||
color=yellow
|
||||
x2=4
|
||||
y2=13
|
||||
color=green
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=chip.png
|
||||
animation=chip.ani
|
||||
width=8
|
||||
height=16
|
||||
x=10
|
||||
y=4
|
||||
vx=0
|
||||
vy=1
|
||||
x1=10
|
||||
y1=2
|
||||
x2=10
|
||||
y2=13
|
||||
color=bright_blue
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=chip.png
|
||||
animation=chip.ani
|
||||
width=8
|
||||
height=16
|
||||
x=16
|
||||
y=3
|
||||
vx=0
|
||||
vy=1
|
||||
x1=16
|
||||
y1=2
|
||||
x2=16
|
||||
y2=13
|
||||
color=magenta
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=42
|
||||
x=21
|
||||
y=13
|
||||
counter=1
|
||||
tile=5
|
||||
x=12
|
||||
y=2
|
||||
[/item]
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<map version="1.9" tiledversion="1.9.0" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="../../../jaildoctors_dilemma_resources/tilesets/standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,
|
||||
25,25,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,0,0,505,25,25,25,25,25,25,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,25,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,25,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,25,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,25,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,25,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,25,0,0,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,0,0,0,25,25,25,0,0,0,25,25,
|
||||
25,25,0,0,0,0,0,0,0,253,253,253,253,253,253,253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,25,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,25,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,441,441,441,441,0,0,0,0,0,0,0,0,135,25,
|
||||
25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,0,232,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,
|
||||
26,26,26,0,0,0,26,26,26,0,0,0,26,26,26,0,0,0,26,26,26,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
|
||||
@@ -1,25 +1,82 @@
|
||||
name=no 04
|
||||
bgColor=black
|
||||
border=red
|
||||
tilemap=04.tmx
|
||||
name=The Fridge
|
||||
bgColor=blue
|
||||
border=blue
|
||||
tileset=standard.png
|
||||
roomUp=02.room
|
||||
roomDown=0
|
||||
roomLeft=07.room
|
||||
roomLeft=0
|
||||
roomRight=05.room
|
||||
|
||||
[tilemap]
|
||||
04.tmx
|
||||
[/tilemap]
|
||||
|
||||
[enemy]
|
||||
tileset=chip.png
|
||||
animation=chip.ani
|
||||
width=8
|
||||
height=16
|
||||
x=24
|
||||
y=12
|
||||
vx=0.3
|
||||
x=1
|
||||
y=3
|
||||
vx=1
|
||||
vy=0
|
||||
x1=24
|
||||
y1=12
|
||||
x2=31
|
||||
y2=12
|
||||
x1=1
|
||||
y1=3
|
||||
x2=14
|
||||
y2=3
|
||||
color=magenta
|
||||
[/enemy]
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=chip.png
|
||||
animation=chip.ani
|
||||
width=8
|
||||
height=16
|
||||
x=30
|
||||
y=7
|
||||
vx=-0.8
|
||||
vy=0
|
||||
x1=10
|
||||
y1=7
|
||||
x2=30
|
||||
y2=7
|
||||
color=bright_white
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=wave.png
|
||||
animation=wave.ani
|
||||
width=8
|
||||
height=8
|
||||
x=15
|
||||
y=12
|
||||
vx=0.5
|
||||
vy=0
|
||||
x1=15
|
||||
y1=12
|
||||
x2=30
|
||||
y2=12
|
||||
color=bright_magenta
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=6
|
||||
x=2
|
||||
y=2
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=6
|
||||
x=29
|
||||
y=5
|
||||
[/item]
|
||||
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=6
|
||||
x=21
|
||||
y=12
|
||||
[/item]
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<map version="1.9" tiledversion="1.9.0" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="../../../jaildoctors_dilemma_resources/tilesets/standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,0,0,0,
|
||||
15,15,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,522,0,0,0,0,0,0,0,0,0,0,0,0,0,513,15,63,15,63,15,63,15,63,
|
||||
63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63,63
|
||||
25,249,249,249,249,249,249,249,249,249,249,249,249,249,0,0,0,0,249,249,249,249,249,249,249,249,249,249,249,249,249,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,25,25,25,0,25,25,25,25,25,0,25,25,25,25,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,270,270,270,270,270,270,0,0,270,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,25,25,25,25,0,0,25,25,25,25,25,25,25,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,229,229,229,229,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
25,249,249,249,249,249,249,249,249,249,249,249,249,249,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,
|
||||
22,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
22,0,0,0,0,0,289,0,0,0,0,0,0,0,0,0,0,0,381,0,0,0,0,0,0,381,0,0,0,0,0,0,
|
||||
25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
|
||||
@@ -1,41 +1,108 @@
|
||||
name=no 05
|
||||
name=sigmasua
|
||||
bgColor=black
|
||||
border=red
|
||||
tilemap=05.tmx
|
||||
border=blue
|
||||
tileset=standard.png
|
||||
roomUp=0
|
||||
roomDown=60.room
|
||||
roomUp=03.room
|
||||
roomDown=0
|
||||
roomLeft=04.room
|
||||
roomRight=06.room
|
||||
roomRight=0
|
||||
|
||||
[tilemap]
|
||||
05.tmx
|
||||
[/tilemap]
|
||||
|
||||
[enemy]
|
||||
tileset=diskette.png
|
||||
animation=diskette.ani
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=15
|
||||
y=1
|
||||
y=7
|
||||
vx=0.8
|
||||
vy=0
|
||||
x1=9
|
||||
y1=7
|
||||
x2=25
|
||||
y2=7
|
||||
color=red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=3
|
||||
y=8
|
||||
vx=0
|
||||
vy=0.6
|
||||
x1=15
|
||||
y1=1
|
||||
x2=15
|
||||
vy=0.4
|
||||
x1=3
|
||||
y1=5
|
||||
x2=3
|
||||
y2=12
|
||||
color=magenta
|
||||
color=red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=10
|
||||
y=10
|
||||
vx=0
|
||||
vy=0.3
|
||||
x1=10
|
||||
y1=10
|
||||
x2=10
|
||||
y2=13
|
||||
color=bright_red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=23
|
||||
y=13
|
||||
vx=0
|
||||
vy=-0.3
|
||||
x1=23
|
||||
y1=10
|
||||
x2=23
|
||||
y2=13
|
||||
color=bright_red
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=1
|
||||
x=2
|
||||
y=6
|
||||
tile=9
|
||||
counter=1
|
||||
x=21
|
||||
y=3
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=1
|
||||
x=29
|
||||
y=12
|
||||
tile=9
|
||||
counter=2
|
||||
x=1
|
||||
y=8
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=9
|
||||
counter=3
|
||||
x=26
|
||||
y=14
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=9
|
||||
counter=4
|
||||
x=18
|
||||
y=5
|
||||
[/item]
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<map version="1.9" tiledversion="1.9.1" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="../../../jaildoctors_dilemma_resources/tilesets/standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,267,267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,52,52,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,28,28,28,28,28,0,0,0,267,267,0,0,0,0,0,0,0,0,28,0,0,0,0,267,267,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,267,267,0,0,0,0,0,0,0,0,0,28,0,0,0,0,267,267,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,28,28,28,
|
||||
0,0,0,0,0,0,0,267,267,267,267,267,267,0,0,0,0,0,0,28,0,0,0,0,267,267,0,0,0,0,0,28,
|
||||
0,0,0,0,0,267,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,28,
|
||||
28,28,532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,52,52,52,52,52,52,52,52,52,52,52,28,
|
||||
28,28,28,28,28,28,28,28,28,28,28,28,28,28,267,0,0,267,28,28,28,28,28,28,28,28,28,28,28,28,28,28
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,68,0,0,68,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
62,222,0,0,0,0,0,222,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,62,222,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,
|
||||
62,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,222,0,0,0,
|
||||
62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,
|
||||
0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,222,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0,0,
|
||||
68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
|
||||
@@ -1,36 +1,12 @@
|
||||
name=welcome to my abbey
|
||||
name=the test room
|
||||
bgColor=blue
|
||||
border=yellow
|
||||
tilemap=06.tmx
|
||||
border=blue
|
||||
tileset=standard.png
|
||||
roomUp=15.room
|
||||
roomUp=0
|
||||
roomDown=0
|
||||
roomLeft=05.room
|
||||
roomRight=25.room
|
||||
itemColor1=yellow
|
||||
itemColor2=cyan
|
||||
roomLeft=0
|
||||
roomRight=01.room
|
||||
|
||||
[enemy]
|
||||
tileset=abad.png
|
||||
animation=abad.ani
|
||||
width=8
|
||||
height=16
|
||||
x=1
|
||||
y=13
|
||||
vx=0.8
|
||||
vy=0
|
||||
x1=1
|
||||
y1=13
|
||||
x2=30
|
||||
y2=13
|
||||
color=yellow
|
||||
flip=true
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=48
|
||||
x=7
|
||||
y=2
|
||||
counter=1
|
||||
[/item]
|
||||
[tilemap]
|
||||
06.tmx
|
||||
[/tilemap]
|
||||
@@ -1,24 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<map version="1.9" tiledversion="1.9.1" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="../../../jaildoctors_dilemma_resources/tilesets/standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
32,32,32,32,0,0,0,0,32,32,67,68,67,68,67,68,67,68,67,68,67,68,67,68,67,68,67,68,67,68,67,68,
|
||||
32,32,0,0,0,0,0,0,0,0,91,92,91,92,91,92,91,92,91,92,91,92,91,92,91,92,91,92,91,92,91,92,
|
||||
93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,
|
||||
117,0,0,0,403,403,403,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,
|
||||
117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,
|
||||
117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,
|
||||
141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,
|
||||
32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,403,403,403,403,403,550,0,0,0,117,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,426,0,0,0,0,0,427,550,0,0,117,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,426,0,0,0,0,0,0,0,0,403,403,117,
|
||||
32,67,68,67,68,403,403,403,550,0,0,0,0,0,526,403,67,68,67,68,403,550,0,0,0,0,0,0,0,0,140,141,
|
||||
32,91,92,91,92,0,0,0,427,550,0,0,0,526,426,0,91,92,91,92,0,427,550,0,0,0,0,0,0,0,0,32,
|
||||
135,0,0,0,0,0,0,0,0,0,0,0,526,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
135,0,0,0,0,0,0,0,0,0,0,526,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90,89,90
|
||||
26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,66,66,66,66,187,0,0,0,0,164,65,65,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,0,161,212,212,212,212,212,212,212,0,212,212,181,0,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,0,181,0,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,269,0,0,0,0,181,0,0,0,0,0,0,0,0,26,
|
||||
26,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,269,0,0,0,0,0,181,0,0,0,0,0,0,0,0,
|
||||
26,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0,0,289,0,0,0,0,0,0,181,0,0,0,0,0,0,0,
|
||||
26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,
|
||||
26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
|
||||
@@ -1,105 +0,0 @@
|
||||
name=sigmasua
|
||||
bgColor=black
|
||||
border=black
|
||||
tilemap=07.tmx
|
||||
tileset=standard.png
|
||||
roomUp=0
|
||||
roomDown=0
|
||||
roomLeft=08.room
|
||||
roomRight=04.room
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=15
|
||||
y=7
|
||||
vx=0.8
|
||||
vy=0
|
||||
x1=9
|
||||
y1=7
|
||||
x2=25
|
||||
y2=7
|
||||
color=bright_red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=3
|
||||
y=8
|
||||
vx=0
|
||||
vy=0.4
|
||||
x1=3
|
||||
y1=5
|
||||
x2=3
|
||||
y2=12
|
||||
color=bright_red
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=12
|
||||
y=10
|
||||
vx=0
|
||||
vy=0.3
|
||||
x1=12
|
||||
y1=10
|
||||
x2=12
|
||||
y2=13
|
||||
color=bright_magenta
|
||||
[/enemy]
|
||||
|
||||
[enemy]
|
||||
tileset=sigmasua.png
|
||||
animation=sigmasua.ani
|
||||
width=16
|
||||
height=16
|
||||
x=17
|
||||
y=13
|
||||
vx=0
|
||||
vy=-0.3
|
||||
x1=17
|
||||
y1=10
|
||||
x2=17
|
||||
y2=13
|
||||
color=bright_green
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=9
|
||||
x=15
|
||||
y=5
|
||||
counter=1
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=9
|
||||
x=1
|
||||
y=8
|
||||
counter=2
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=9
|
||||
x=30
|
||||
y=8
|
||||
counter=3
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=9
|
||||
x=21
|
||||
y=13
|
||||
counter=4
|
||||
[/item]
|
||||
@@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,
|
||||
74,265,0,0,0,0,0,265,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,265,0,0,0,0,0,265,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,265,265,0,0,0,0,0,74,
|
||||
74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,74,
|
||||
0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,265,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,0,0,0,0,
|
||||
74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74,74
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
@@ -1,50 +0,0 @@
|
||||
name=THE GARDEN
|
||||
bgColor=black
|
||||
border=cyan
|
||||
tilemap=08.tmx
|
||||
tileset=standard.png
|
||||
roomUp=09.room
|
||||
roomDown=0
|
||||
roomLeft=16.room
|
||||
roomRight=07.room
|
||||
|
||||
[enemy]
|
||||
tileset=abad.png
|
||||
animation=abad.ani
|
||||
width=8
|
||||
height=16
|
||||
x=4
|
||||
y=13
|
||||
vx=0.4
|
||||
vy=0
|
||||
x1=2
|
||||
y1=13
|
||||
x2=10
|
||||
y2=13
|
||||
color=green
|
||||
flip=true
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=18
|
||||
x=5
|
||||
y=5
|
||||
counter=1
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=18
|
||||
x=25
|
||||
y=9
|
||||
counter=2
|
||||
[/item]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=18
|
||||
x=10
|
||||
y=5
|
||||
counter=3
|
||||
[/item]
|
||||
@@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,505,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,0,0,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,306,306,0,0,0,306,0,0,0,0,0,82,
|
||||
82,0,0,0,0,306,0,0,0,0,306,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,306,0,0,0,82,
|
||||
82,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,306,0,0,0,0,0,82,
|
||||
82,0,0,306,0,0,0,0,0,0,0,0,0,306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,
|
||||
82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,
|
||||
0,0,0,0,0,0,0,0,0,0,0,0,516,82,82,82,82,82,82,540,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
0,0,0,0,0,0,0,0,0,0,0,516,82,82,82,82,82,82,82,82,540,0,0,0,0,0,0,0,0,0,0,0,
|
||||
82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82,82
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
@@ -1,33 +0,0 @@
|
||||
name=no 09
|
||||
bgColor=black
|
||||
border=red
|
||||
tilemap=09.tmx
|
||||
tileset=standard.png
|
||||
roomUp=10.room
|
||||
roomDown=08.room
|
||||
roomLeft=0
|
||||
roomRight=0
|
||||
|
||||
[enemy]
|
||||
tileset=diskette.png
|
||||
animation=diskette.ani
|
||||
width=16
|
||||
height=16
|
||||
x=2
|
||||
y=2
|
||||
vx=0
|
||||
vy=0
|
||||
x1=2
|
||||
y1=2
|
||||
x2=2
|
||||
y2=2
|
||||
color=magenta
|
||||
[/enemy]
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=1
|
||||
x=1
|
||||
y=1
|
||||
counter=1
|
||||
[/item]
|
||||
@@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,17,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,17,17,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,17,17,17,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,17,17,17,17,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,505,17,17,17,17,17,17,
|
||||
17,0,0,0,0,305,305,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,17,17,17,17,17,17,17,
|
||||
17,0,0,0,0,0,0,0,305,305,529,0,0,0,0,0,0,0,0,0,0,305,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,349,349,349,349,349,349,0,0,0,0,0,305,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,305,0,0,0,41,41,41,41,0,0,0,305,305,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,305,305,529,0,0,0,0,0,0,41,41,0,0,305,0,0,0,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,0,349,349,349,349,349,349,349,349,349,349,349,529,0,0,0,0,0,0,0,0,0,17,
|
||||
17,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,41,349,349,349,349,349,349,349,349,349,349,0,0,349,349,349
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||
@@ -1,17 +0,0 @@
|
||||
name=the hall
|
||||
bgColor=black
|
||||
border=magenta
|
||||
tilemap=10.tmx
|
||||
tileset=standard.png
|
||||
roomUp=0
|
||||
roomDown=09.room
|
||||
roomLeft=0
|
||||
roomRight=11.room
|
||||
|
||||
[item]
|
||||
tileset=items.png
|
||||
tile=22
|
||||
x=20
|
||||
y=4
|
||||
counter=1
|
||||
[/item]
|
||||
@@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="1.9" tiledversion="1.9.2" orientation="orthogonal" renderorder="right-down" width="32" height="16" tilewidth="8" tileheight="8" infinite="0" nextlayerid="2" nextobjectid="1">
|
||||
<tileset firstgid="1" source="standard.tsx"/>
|
||||
<layer id="1" name="Capa de patrones 1" width="32" height="16">
|
||||
<data encoding="csv">
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,39,39,39,39,39,39,39,39,39,39,39,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
|
||||
86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,518,86,86,
|
||||
86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,86,0,0,86,86,86,86
|
||||
</data>
|
||||
</layer>
|
||||
</map>
|
||||