Compare commits

..

3 Commits

Author SHA1 Message Date
OMGeeky
b1c2a4ef8c remove unused stuff 2024-09-07 15:36:00 +02:00
OMGeeky
af3109b9d9 Fix visual Bugs & slowdowns 2024-09-07 15:06:04 +02:00
Ian
bac004ae33 Visual Glitch Fix
-Fix the issue where the application is not able to handle multiple effects simultanously
2024-09-07 18:23:07 +08:00
39 changed files with 2047 additions and 1818 deletions

View File

@@ -21,14 +21,23 @@ import com.gpl.rpg.AndorsTrail.util.Coord;
import com.gpl.rpg.AndorsTrail.util.CoordRect;
import com.gpl.rpg.AndorsTrail.util.Size;
import java.util.ArrayList;
import java.util.List;
public final class VisualEffectController {
private static final long EFFECT_UPDATE_INTERVAL = 25;
private int effectCount = 0;
private final ControllerContext controllers;
private final WorldContext world;
private final VisualEffectCollection effectTypes;
private final Handler animationHandler = new Handler();
private final List<VisualEffectAnimation> activeAnimations = new ArrayList<>();
public final VisualEffectFrameListeners visualEffectFrameListeners = new VisualEffectFrameListeners();
private long getEffectUpdateInterval() {
return EFFECT_UPDATE_INTERVAL * controllers.preferences.attackspeed_milliseconds / AndorsTrailPreferences.ATTACKSPEED_DEFAULT_MILLISECONDS;
}
public VisualEffectController(ControllerContext controllers, WorldContext world) {
this.controllers = controllers;
@@ -38,10 +47,42 @@ public final class VisualEffectController {
public void startEffect(Coord position, VisualEffectCollection.VisualEffectID effectID, String displayValue, VisualEffectCompletedCallback callback, int callbackValue) {
++effectCount;
(new VisualEffectAnimation(effectTypes.getVisualEffect(effectID), position, displayValue, callback, callbackValue))
.start();
VisualEffectAnimation animation = new VisualEffectAnimation(effectTypes.getVisualEffect(effectID), position, displayValue, callback, callbackValue);
animation.start();
}
private void startAnimation(VisualEffectAnimation animation) {
activeAnimations.add(animation);
animation.update();
if (activeAnimations.size() == 1) {
animationHandler.postDelayed(animationRunnable, 0);
}
}
private final Runnable animationRunnable = new Runnable() {
@Override
public void run() {
if(!activeAnimations.isEmpty()) {
long updateInterval = getEffectUpdateInterval();
animationHandler.postDelayed(this, updateInterval);
for (int i = 0; i < activeAnimations.size(); i++) {
VisualEffectAnimation animation = activeAnimations.get(i);
animation.durationPassed += updateInterval;
animation.updateFrame();
animation.update();
if (animation.currentFrame >= animation.effect.lastFrame) {
animation.onCompleted();
activeAnimations.remove(i);
effectCount--;
i--;
}
}
visualEffectFrameListeners.onNewAnimationFrames(activeAnimations);
}
}
};
private VisualEffectCollection.VisualEffectID enqueuedEffectID = null;
private int enqueuedEffectValue = 0;
public void enqueueEffect(VisualEffectCollection.VisualEffectID effectID, int displayValue) {
@@ -65,10 +106,9 @@ public final class VisualEffectController {
.start();
}
public final class SpriteMoveAnimation extends Handler implements Runnable {
// private static final int millisecondsPerFrame=25;
public final class SpriteMoveAnimation implements Runnable {
private final Handler handler = new Handler();
private final VisualEffectCompletedCallback callback;
private final int callbackValue;
@@ -82,11 +122,6 @@ public final class VisualEffectController {
@Override
public void run() {
onCompleted();
// update();
// if (System.currentTimeMillis() - actor.vfxStartTime >= duration) {
// } else {
// postDelayed(this, millisecondsPerFrame);
// }
}
public SpriteMoveAnimation(Coord origin, Coord destination, int duration, Actor actor, PredefinedMap map, VisualEffectCompletedCallback callback, int callbackValue) {
@@ -99,11 +134,6 @@ public final class VisualEffectController {
this.destination = destination;
}
// private void update() {
//
// visualEffectFrameListeners.onNewSpriteMoveFrame(this);
// }
private void onCompleted() {
--effectCount;
@@ -111,7 +141,6 @@ public final class VisualEffectController {
if (callback != null) callback.onVisualEffectCompleted(callbackValue);
visualEffectFrameListeners.onSpriteMoveCompleted(this);
}
public void start() {
actor.hasVFXRunning = true;
@@ -120,12 +149,9 @@ public final class VisualEffectController {
visualEffectFrameListeners.onSpriteMoveStarted(this);
if (duration == 0 || !controllers.preferences.enableUiAnimations) onCompleted();
else {
postDelayed(this, duration);
handler.postDelayed(this, duration);
}
}
}
public static final Paint textPaint = new Paint();
@@ -134,41 +160,42 @@ public final class VisualEffectController {
textPaint.setAlpha(255);
textPaint.setTextAlign(Align.CENTER);
}
public final class VisualEffectAnimation extends Handler implements Runnable {
@Override
public void run() {
if (currentFrame >= effect.lastFrame) {
onCompleted();
} else {
postDelayed(this, effect.millisecondPerFrame * controllers.preferences.attackspeed_milliseconds / AndorsTrailPreferences.ATTACKSPEED_DEFAULT_MILLISECONDS);
update();
public final class VisualEffectAnimation {
public int tileID;
public int textYOffset;
public long durationPassed = 0;
private void updateFrame() {
long frameDuration = (long) effect.millisecondPerFrame * controllers.preferences.attackspeed_milliseconds / AndorsTrailPreferences.ATTACKSPEED_DEFAULT_MILLISECONDS;
while (durationPassed > frameDuration) {
currentFrame++;
durationPassed -= frameDuration;
}
}
private void update() {
++currentFrame;
int frame = currentFrame;
int tileID = effect.frameIconIDs[frame];
int textYOffset = -2 * (frame);
if (frame >= beginFadeAtFrame && displayText != null) {
textPaint.setAlpha(255 * (effect.lastFrame - frame) / (effect.lastFrame - beginFadeAtFrame));
if (currentFrame >= effect.lastFrame) {
return;
}
tileID = effect.frameIconIDs[currentFrame];
textYOffset = -2 * (currentFrame);
if (currentFrame >= beginFadeAtFrame && displayText != null) {
textPaint.setAlpha(255 * (effect.lastFrame - currentFrame) / (effect.lastFrame - beginFadeAtFrame));
}
area.topLeft.y = position.y - 1;
visualEffectFrameListeners.onNewAnimationFrame(this, tileID, textYOffset);
}
private void onCompleted() {
--effectCount;
visualEffectFrameListeners.onAnimationCompleted(this);
if (callback != null) callback.onVisualEffectCompleted(callbackValue);
}
public void start() {
if (!controllers.preferences.enableUiAnimations) onCompleted();
else postDelayed(this, 0);
else startAnimation(this);
}
private int currentFrame = 0;
@@ -197,7 +224,7 @@ public final class VisualEffectController {
this.area = new CoordRect(new Coord(position.x - (widthNeededInTiles / 2), position.y - 1), new Size(widthNeededInTiles, 2));
this.beginFadeAtFrame = effect.lastFrame / 2;
}
public Paint getTextPaint(){
return textPaint;
}

View File

@@ -4,8 +4,10 @@ import com.gpl.rpg.AndorsTrail.controller.VisualEffectController.SpriteMoveAnima
import com.gpl.rpg.AndorsTrail.controller.VisualEffectController.VisualEffectAnimation;
import com.gpl.rpg.AndorsTrail.util.CoordRect;
import java.util.List;
public interface VisualEffectFrameListener {
void onNewAnimationFrame(VisualEffectAnimation animation, int tileID, int textYOffset);
void onNewAnimationFrames(List<VisualEffectAnimation> effects);
void onAnimationCompleted(VisualEffectAnimation animation);
void onSpriteMoveStarted(SpriteMoveAnimation animation);
void onNewSpriteMoveFrame(SpriteMoveAnimation animation);

View File

@@ -5,10 +5,12 @@ import com.gpl.rpg.AndorsTrail.controller.VisualEffectController.VisualEffectAni
import com.gpl.rpg.AndorsTrail.util.CoordRect;
import com.gpl.rpg.AndorsTrail.util.ListOfListeners;
import java.util.List;
public final class VisualEffectFrameListeners extends ListOfListeners<VisualEffectFrameListener> implements VisualEffectFrameListener {
private final Function3<VisualEffectFrameListener, VisualEffectAnimation, Integer, Integer> onNewAnimationFrame = new Function3<VisualEffectFrameListener, VisualEffectAnimation, Integer, Integer>() {
@Override public void call(VisualEffectFrameListener listener, VisualEffectAnimation animation, Integer tileID, Integer textYOffset) { listener.onNewAnimationFrame(animation, tileID, textYOffset); }
private final Function1<VisualEffectFrameListener, List<VisualEffectAnimation>> onNewAnimationFrames = new Function1<VisualEffectFrameListener, List<VisualEffectAnimation>>() {
@Override public void call(VisualEffectFrameListener listener, List<VisualEffectAnimation> effects) { listener.onNewAnimationFrames(effects); }
};
private final Function1<VisualEffectFrameListener, VisualEffectAnimation> onAnimationCompleted = new Function1<VisualEffectFrameListener, VisualEffectAnimation>() {
@@ -30,10 +32,10 @@ public final class VisualEffectFrameListeners extends ListOfListeners<VisualEffe
private final Function1<VisualEffectFrameListener, CoordRect> onAsyncAreaUpdate = new Function1<VisualEffectFrameListener, CoordRect>() {
@Override public void call(VisualEffectFrameListener listener, CoordRect area) { listener.onAsyncAreaUpdate(area); }
};
@Override
public void onNewAnimationFrame(VisualEffectAnimation animation, int tileID, int textYOffset) {
callAllListeners(this.onNewAnimationFrame, animation, tileID, textYOffset);
public void onNewAnimationFrames(List<VisualEffectAnimation> effects) {
callAllListeners(this.onNewAnimationFrames, effects);
}
@Override

View File

@@ -30,6 +30,18 @@ public final class CoordRect {
return true;
}
public static CoordRect union(CoordRect r1, CoordRect r2) {
int left = Math.min(r1.topLeft.x, r2.topLeft.x);
int top = Math.min(r1.topLeft.y, r2.topLeft.y);
int right = Math.max(r1.topLeft.x + r1.size.width, r2.topLeft.x + r2.size.width);
int bottom = Math.max(r1.topLeft.y + r1.size.height, r2.topLeft.y + r2.size.height);
int width = right - left;
int height = bottom - top;
return new CoordRect(new Coord(left, top), new Size(width, height));
}
/*
public static boolean contains(final int x, final int y, final Size size, final Coord p) {
if (p.x < x) return false;

View File

@@ -1,6 +1,7 @@
package com.gpl.rpg.AndorsTrail.view;
import java.lang.ref.WeakReference;
import java.util.List;
import com.gpl.rpg.AndorsTrail.AndorsTrailApplication;
import com.gpl.rpg.AndorsTrail.AndorsTrailPreferences;
@@ -158,8 +159,8 @@ public final class MainView extends SurfaceView
// this.surfaceSize = new Size(w, h);
this.surfaceSize = new Size((int) (getWidth() / scale), (int) (getHeight() / scale));
this.screenSizeTileCount = new Size(
(int) Math.floor(getWidth() / scaledTileSize)
,(int) Math.floor(getHeight() / scaledTileSize)
getWidth() / scaledTileSize
,getHeight() / scaledTileSize
);
if (sh.getSurfaceFrame().right != surfaceSize.width || sh.getSurfaceFrame().bottom != surfaceSize.height) {
@@ -226,28 +227,28 @@ public final class MainView extends SurfaceView
if (scrolling && why != RedrawAllDebugReason.MapScrolling) return;
if (!scrolling && movingSprites > 0 && why != RedrawAllDebugReason.SpriteMoved) return;
}
redrawArea_(mapViewArea, null, 0, 0);
redrawArea_(mapViewArea, null);
}
private void redrawTile(final Coord p, RedrawTileDebugReason why) {
if (scrolling) return;
p1x1.topLeft.set(p);
redrawArea_(p1x1, null, 0, 0);
redrawArea_(p1x1, null);
}
private void redrawArea(final CoordRect area, RedrawAreaDebugReason why) {
if (scrolling) return;
redrawArea_(area, null, 0, 0);
redrawArea_(area, null);
}
private void redrawArea_(CoordRect area, final VisualEffectAnimation effect, int tileID, int textYOffset) {
private void redrawArea_(CoordRect area, final List<VisualEffectAnimation> effects) {
if (!hasSurface) return;
if (!currentMap.intersects(area)) return;
if (!mapViewArea.intersects(area)) return;
if (shouldRedrawEverything()) {
area = mapViewArea;
}
calculateRedrawRect(area);
redrawRect.intersect(redrawClip);
Canvas c = null;
@@ -263,7 +264,7 @@ public final class MainView extends SurfaceView
if (area == mapViewArea) {
area = adaptAreaToScrolling(area);
}
synchronized (holder) { synchronized (tiles) {
int xScroll = 0;
int yScroll = 0;
@@ -275,32 +276,25 @@ public final class MainView extends SurfaceView
}
c.clipRect(redrawClip);
c.translate(screenOffset.x + xScroll, screenOffset.y + yScroll);
// c.scale(scale, scale);
doDrawRect(c, area);
if (effect != null) {
drawFromMapPosition(c, area, effect.position, tileID);
if (effect.displayText != null) {
drawEffectText(c, area, effect, textYOffset, effect.getTextPaint());
}
}
// c.drawRect(new Rect(
// (area.topLeft.x - mapViewArea.topLeft.x) * tileSize,
// (area.topLeft.y - mapViewArea.topLeft.y) * tileSize,
// (area.topLeft.x - mapViewArea.topLeft.x + area.size.width) * tileSize - 1,
// (area.topLeft.y - mapViewArea.topLeft.y + area.size.height) * tileSize - 1),
// redrawHighlight);
// if (touchedTile != null) c.drawRect(new Rect(
// (touchedTile.x - mapViewArea.topLeft.x) * tileSize,
// (touchedTile.y - mapViewArea.topLeft.y) * tileSize,
// (touchedTile.x - mapViewArea.topLeft.x + 1) * tileSize - 1,
// (touchedTile.y - mapViewArea.topLeft.y + 1) * tileSize - 1),
// touchHighlight);
renderEffects(c, effects);
} }
} finally {
if (c != null) holder.unlockCanvasAndPost(c);
}
}
private void renderEffects(Canvas canvas ,List<VisualEffectAnimation> effects) {
if(effects == null) return;
for (VisualEffectAnimation effect : effects) {
int tileID = effect.tileID;
int textYOffset = effect.textYOffset;
drawFromMapPosition(canvas, effect.area, effect.position, tileID);
if (effect.displayText != null) {
drawEffectText(canvas, effect.area, effect, textYOffset, effect.getTextPaint());
}
}
}
private boolean isRedrawRectWholeScreen(Rect redrawRect) {
// if (redrawRect.width() < mapViewArea.size.width * scaledTileSize) return false;
@@ -317,11 +311,21 @@ public final class MainView extends SurfaceView
return true;
}
private final Rect redrawRect = new Rect();
private void redrawAreaWithEffect(final VisualEffectAnimation effect, int tileID, int textYOffset) {
CoordRect area = effect.area;
// if (shouldRedrawEverythingForVisualEffect()) area = mapViewArea;
redrawArea_(area, effect, tileID, textYOffset);
private void redrawAreaWithEffect(List<VisualEffectAnimation> effects) {
CoordRect area = null;
for (int i = 0; i < effects.size(); i++) {
VisualEffectAnimation effect = effects.get(i);
if (area == null) {
area = effect.area;
} else {
area = CoordRect.union(area, effect.area);
}
}
if (area != null) {
redrawArea_(area, effects);
}
}
private void clearCanvas() {
if (!hasSurface) return;
Canvas c = null;
@@ -794,8 +798,8 @@ public final class MainView extends SurfaceView
}
@Override
public void onNewAnimationFrame(VisualEffectAnimation animation, int tileID, int textYOffset) {
redrawAreaWithEffect(animation, tileID, textYOffset);
public void onNewAnimationFrames(List<VisualEffectAnimation> effects) {
redrawAreaWithEffect(effects);
}
@Override

View File

@@ -189,7 +189,9 @@
</data>
</layer>
<layer id="2" name="Objects" width="25" height="30">
<data encoding="base64" compression="zlib">eJy1Vr9PFEEUHm7vWo7bDbshSlSslN4IluYstOMqExutjSZGjQc2xh+xoAT+gguFpSGh9jACJRYmYnUNUaExUaLEoO9z3vPezs7smRC/5OWGnZnvez9m3tBNjemW2Ni4MVfIXLQq9ncN66Li/Fqk5gfYpIcfnDDwLGTGLJK9ivLf/2p5fL7smI5B9n8btn/fHsqbi9PVvEYoJ27sh7Ex9cSOrw5ZjnsUxwyNU87fRf7djqyFcrIbe3TS/lj49mjd/Sy/Tmp1MMrxe2KQvP4LoNtkjbFKfu4L++nyS05qFVtHwY1Kfl9NnSvgVLW/dqJqa7EV23h95wb4U9ekeF56tK/h+PuBvi9lVueOmhM/Jj0xAKnDE/oGvE2tDmqj4xGIhvD3OBebI8W1bVozSzZH9oZzhJzcSqw+dDocz7tGUQP7IsfPnjpbbecMbKaW/xzx79D4I9mnNK8zwXaGNC6wjvio8yK+zzsaiGOFfLhEGus0vlkz5rPSAaQH4OxCZ9rRmlXc8x6NVdr3OrYx7HLecNU3aPyobrmfZtZH3UtEa1pp+vhF4xrHADym+jVYA7ib2fsPhHqt9CrNr88w6vGQNXSr2uA6PeE4fBqhviXnrqXOxQHlqplY/7/Sfdqm/T9SG8Ny1j8ng/jRt8CPM3A8KWqLLvgf0PwLqv0z1b+mxsvfCvct0EA+pBbi/3P2YVlpHCvR0NyHfE8Qy3m+W+hT+2TfmV9ra4Q0hP9n3H+PNH6NFr9Jb1riGKQWIY2XHu49defrqdVxfQaQpwXWQS3OBjS6zDesaixvG3J1gtaeVPmRd1E05c1yY8jlSu3f4f4ASH+RPuQC/iNXnRIN3bsA9K59rmnL09evO72549wLn4avdwHvFRfy0QzcEw1fLcr+r2qrHok86p45F7g/oRh8GlKDKadf6p55VI2yPa4f/1MDGHS/j6rhu4t6/W+5sBdU</data>
<data encoding="base64" compression="zlib">
eJy1Vr9rFEEUntzetTlvl+wSMKjxfxB7Of8ArxJstBYFUfESG4mKRcoYENsjYNIFQZJUXkTzo9JCMFbXBDVpBA0xSPR9znve29mZPSH4weMmOzPf937MvEk3NaZbYk/GjNkkc9Gq2N9VrIuK86uRmh9gCx5+cMLAM5MZ85jsZZT//lfL4/OGYzoG2f992P59fShvLk5X8xqhnLixH8bG1BM7vjhkOW5RHBdonHL+zvHvVmQtlJOd2KOT9sfCt0vrbmf5dVKrgxGO3xOD5PVfAN0ma4xW8nNf2U+XX3JSq9g6Cq5U8vtq6lwBp6r9teNVW4u3sY3Xd26AP3VNiuelR/sajr8f6ftsZnVuqDnxY8ETA5A6PKFvwLvU6qA2Oh6BaAh/j3Oxfqy4tk1rJsgmyV5zjpCTa4nVh06H43nfKGpgX+T42VNnq+2cgfXU8p8h/m0afyL7nOZ1xtmekcYK64iPOi/i+7SjgTiekw/nSeMNja/WjPmidADpATi70Fl2tCYU97RH4wXtexXbGHY4b7jqazS+V7fcDzLro+4lorWsNH38onGJYwCmqH4N1gBuZvb+A6FeK71K8+szjHrcZQ3dqta4Tvc5Dp9GqG/JuWupc3FAuWom1v9vdJ+2aP+P1MYwl/XPySB+9C3w4wwcT4raogv+OzQ/T7V/qPrX0lj5W+G+BRrIh9RC/H/EPswpjaclGpr7kO8JYjnLdwt9ao9sn/m1tkZIQ/h/xv33SOPXSPGb9KZZjkFqEdJY9HDvqjtfT62O6zOAPM2wDmoxH9DoMt+wqrG8bcjVCVp7UuVH3kXRlDfLjSGXK7V/m/sDIP1F+pAL+I9cdUo0dO8C0Lv2uKYtT1+/7PTmjnMvfBq+3gV8UFzIRzNwTzR8tSj7v6qteiTyqHvmZOD+hGLwaUgNlpx+qXvmUTXK9rh+/E8NYND9PqqG7y7q9b8BT6Q/1A==
</data>
</layer>
<layer id="3" name="Objects_replace" width="25" height="30">
<data encoding="base64" compression="zlib">
@@ -197,7 +199,9 @@
</data>
</layer>
<layer id="4" name="Above" width="25" height="30">
<data encoding="base64" compression="zlib">eJylVT1LBDEQjXfYiIVuYGGVw1psbE/B5joFG2ttrlGwsxA9rMXaytrKPyDY7oEodntwjf9A/AXamGDCzebe5GP3QeAumXlvkrzMlrkQRU+IfWccqMFhnM9+l10cU5GYIsBHMTF5WQfrafxm9f9nUoitSH7EF8Ke4r+S8XsYdbHG0cL/QDhU/HcSr02Yekfg7FP3RvMGHbzG6SNUTOxzhue5vE/GV4Wp8cE5K13jK9DQPpp6tO3epqvza0+yHkdrfFnhOV3+E+ZeXXBnF+L35Q2ZO03hD3nqoqXGOEKjLZDGB/FFiscpaF5lNI7JfVMNek87qpfsRvQTza89PHD64Y3S+MrmYzW+zXyZh/ui9c+y41F7Vj+G61TW5y18GrYe5E/Xt5eK/z5RI+R9ynO+KMSt4n+UuCakEeLXeFN96h30KuQnpBHre/SOUW4bDQS0/yYaG8w69+6QBvreUSypu90GfFxtMe+DQte6xvTyphru/n3n6NPY9PQTN+/ac44+DZ9OjMfsXlFsvzfT4HRiNGwM8u26oxHj4z5TB9cXmmjonJT3pOP/AHSefjU=</data>
<data encoding="base64" compression="zlib">
eJylVT1LBDEQjXfYiIVuYEHh8C/4C2yut7HWxkbBzkL0sBZrq8XS6rAXVrs9EPW6PbjGfyD+Am1MMOFmc2/ysfsgcJfMvDdJXmarXIhiIMSHM6ZqcJjki99VH8fUJKYI8FHMTF7Ww3oav1nz/6kU4jGSH/GFsKf4L2X8HkZ9rHGw8j8Q9hX/rcRrM6beETj71L3RvGEPr3H6CDUT+5TheS7vk/HVlqmxcM5K1/gKNLSP5h5tu7f55vLaWDbjaI3lBs/p8h8x9+qCO7sQvy/vmLnTFP6Qp847akwiNLoCaUyJL1I8TkHzaqNxSO6batB7ela95CWin2h+7eGh0w+vlcZXthyr8W3mqzzcF61/1h2P2rP6MVwnsjlv4dOw9SB/ur69UPx3iRoh71Oes1UhbhT/g8Q1IY0Qv8ab6lPvoFchPyGNWN+jd4xyu2ggoP230dhh1rl3hzTQ945iTd3tLuDjaot5HxS61m2ml7fVcPfvO0efxtjTT9y8K885+jR8OjEes3tFseVgocHpxGjYGOTbe0cjxsclUwfXF9po6JyU96Tj/wBH85E1
</data>
</layer>
<layer id="5" name="Above_replace" width="25" height="30">
<data encoding="base64" compression="zlib">

View File

@@ -190,13 +190,19 @@
</data>
</layer>
<layer name="Objects" width="13" height="11">
<data encoding="base64" compression="zlib">eJxjYBgYIM7EwCDEBKHxgctiDAzsYhD2IlYGhkdCEHo1VC8X1BxkcBioXhyI1+AxG2TOaiZUPcQAHiR1xOqZTcCPQxUAAO0DCjs=</data>
<data encoding="base64" compression="zlib">
eJxjYBgYIM7EwCDEBKHxgd2yDAzsYhD2IlYGhkdCEHo1VC8X1BxksBqoRxyoZw0es0HmrGZC1UMM4BEjXc9sAn4cqgAAlC8J9w==
</data>
</layer>
<layer name="Above" width="13" height="11">
<data encoding="base64" compression="zlib">eJxjYKAcXBYjXc9hMvRcIkMPLcFcpoF2wcACAFWfA0o=</data>
<data encoding="base64" compression="zlib">
eJxjYKAc7JYlXc9qMvTsIkMPLcFcpoF2wcACAPtvAxc=
</data>
</layer>
<layer name="Walkable" width="13" height="11" visible="0">
<data encoding="base64" compression="zlib">eJzbKMbAsHEIYRAgRR0+gK6eWECqvoEOM1phAI3JWJ8=</data>
<data encoding="base64" compression="zlib">
eJybKcvAMHMIYRAgRR0+gK6eWECqvoEOM1phAAjfUQ0=
</data>
</layer>
<objectgroup name="Mapevents">
<object name="entrance" type="mapchange" x="64" y="128" width="32" height="32">

View File

@@ -190,7 +190,9 @@
</data>
</layer>
<layer name="Objects" width="23" height="18">
<data encoding="base64" compression="zlib">eJxjYBj6QJyJgUGIibpmrqGyecjAQIh2Zh8WQ+V/EKSdXcSYzUlCOMLCBRT2WzhR5cSRzIHFtSQTqjwXiXF2A+r+nVSMj5WCCLefFILgU0A8mwi3LWJF5SOnQVxp5hIJbq9GMh/ZPGqkx2pW7OLo6REGZvOTZ88fUdR0dxmH+aNgcAMAaCoU9Q==</data>
<data encoding="base64" compression="zlib">
eJxjYBj6QJyJgUGIibpmrqGyecjAQIh2Zq+WReV/EKSdXcSYzUlCOMLCBRT2WzhR5cSRzIHFtSQTqjwXiXF2A+r+nVSMj5WCCLefFILgU0A8mwi3LWJF5SOnQVxp5hIJbq9GMh/ZPGqkx2pW7OLo6REGZvOTZ88fUdR0txuH+aNgcAMA2A4Uwg==
</data>
</layer>
<layer name="Objects_RemoveStatue" width="23" height="18" visible="0">
<data encoding="base64" compression="zlib">
@@ -198,10 +200,14 @@
</data>
</layer>
<layer name="Above" width="23" height="18">
<data encoding="base64" compression="zlib">eJxjYBi64LIY7cw+TAezZzMxMMxloq7Z6OZRO4xg5oHoS0C8moruh4ULcthTy3xsZoPATiEGhl1QTAhgcwssHLCZTQxAjy9kO5DNIzc94op/apiNSx+yOLXTN7qdyObPprJdo4B2AAC+zRyR</data>
<data encoding="base64" compression="zlib">
eJxjYBi6YLcs7cxeTQezZzMxMMxloq7Z6OZRO4xg5oHoXUC8moruh4ULcthTy3xsZoPATiGgP6CYoBlY3AILB2xmEwPQ4wvZDpRwIDMeccU/NczGpQ9ZnNrpG91OZPNnU9muUUA7AACazBsb
</data>
</layer>
<layer name="Walkable" width="23" height="18">
<data encoding="base64" compression="zlib">eJzbKMbAsHEUY8XogNrmIvOp7e7hYDa1wxxbnJICSDWb3PRAiruJNRtdPTKfHD8TazYlbic2rCgxbxQPDAYAsp8JIw==</data>
<data encoding="base64" compression="zlib">
eJybKcvAMHMUY8XogNrmIvOp7e7hYDa1wxxbnJICSDWb3PRAiruJNRtdPTKfHD8TazYlbic2rCgxbxQPDAYAh17ybw==
</data>
</layer>
<objectgroup name="Replace" visible="0">
<object name="replace_remove_statue" type="replace" x="160" y="288" width="32" height="32">

View File

@@ -192,13 +192,19 @@
</data>
</layer>
<layer name="Objects" width="13" height="11">
<data encoding="base64" compression="zlib">eJxjYCAfODMxMHCIMTAEM0H4yUz41X9ghaiVAOoRB9KfgfwvUDGYWRiADcHMAaplBvJZgHg1E8Ks3ayoWg5DzbkhyMBQjOQmZn4IXQgUO80KMQMGnvBBxJHBDj6EOSAAMqtZAL89J4B6ZhMIh+ECABXVE9E=</data>
<data encoding="base64" compression="zlib">
eJxjYCAfODMxMHCIMTAEM0H4yUz41X9ghaiVAOoRB9KfgfwvUDGYWRiADcHMAaplBvJZgHg1E8Ks3ayoWlbLQugbggwMxUhuYuaH0IVAsdOsEDNg4AkfRBwZ7OBDmAMCILOaBfDbcwKoZzaBcBguAADs0BOv
</data>
</layer>
<layer name="Above" width="13" height="11">
<data encoding="base64" compression="zlib">eJxjYCAPHBZjYHjOx8DAyUSaHlxgJx9xZkhC7fsMVH8SSY8PCe6AgRgkPfjchgvMxWKnJBnuGKoAACl2B6w=</data>
<data encoding="base64" compression="zlib">
eJxjYCAPrJZlYHjOx8DAyUSaHlxgJx9xZkhC7fsMVH8SSY8PCe6AgRgkPfjchgvMxWKnJBnuGKoAANPKB3k=
</data>
</layer>
<layer name="Walkable" width="13" height="11">
<data encoding="base64" compression="zlib">eJzbKMbAsJHOGARIVY9LDzZxYgAxerCJE9JH77AcSAwAuQ9a9A==</data>
<data encoding="base64" compression="zlib">
eJybKcvAMJPOGARIVY9LDzZxYgAxerCJE9JH77AcSAwAMFhTLw==
</data>
</layer>
<objectgroup name="Mapevents">
<object id="1" name="brother2" type="mapchange" x="288" y="96" width="32" height="32">

View File

@@ -193,7 +193,9 @@
</data>
</layer>
<layer name="Objects" width="8" height="8">
<data encoding="base64" compression="zlib">eJxjYECAZmEGrOAuK0L+jySEnSqLqW4yUJ5HCrsZILAYyfwnSOp60Ow1lEaVxwYIyX8hIA8DANkAChs=</data>
<data encoding="base64" compression="zlib">
eJxjYECA17IMWMFdVoT8H0kIOxWL2t9AMR4p7GaAALccgv0ESd0XNLMMpVHlsQFC8l8IyMMAANnIC1Y=
</data>
</layer>
<layer name="Above" width="8" height="8">
<data encoding="base64" compression="zlib">

File diff suppressed because it is too large Load Diff

View File

@@ -1,386 +1,394 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="2017.05.26" orientation="orthogonal" renderorder="right-down" width="30" height="30" tilewidth="32" tileheight="32" nextobjectid="25">
<tileset firstgid="1" name="map_bed_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bed_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="129" name="map_border_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_border_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="257" name="map_bridge_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="385" name="map_bridge_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="513" name="map_broken_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="641" name="map_cavewall_1" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<tileset firstgid="749" name="map_cavewall_2" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_2.png" width="576" height="192"/>
</tileset>
<tileset firstgid="857" name="map_cavewall_3" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_3.png" width="576" height="192"/>
</tileset>
<tileset firstgid="965" name="map_cavewall_4" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_4.png" width="576" height="192"/>
</tileset>
<tileset firstgid="1073" name="map_chair_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1201" name="map_chair_table_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1329" name="map_crate_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_crate_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1457" name="map_cupboard_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_cupboard_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1585" name="map_curtain_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_curtain_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1713" name="map_entrance_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1841" name="map_entrance_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1969" name="map_fence_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2097" name="map_fence_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2225" name="map_fence_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2353" name="map_fence_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2481" name="map_ground_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2609" name="map_ground_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2737" name="map_ground_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2865" name="map_ground_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2993" name="map_ground_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3121" name="map_ground_6" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_6.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3249" name="map_ground_7" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_7.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3377" name="map_ground_8" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_8.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3505" name="map_house_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3633" name="map_house_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3761" name="map_indoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3889" name="map_indoor_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4017" name="map_kitchen_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_kitchen_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4145" name="map_outdoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_outdoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4273" name="map_pillar_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4401" name="map_pillar_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4529" name="map_plant_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4657" name="map_plant_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4785" name="map_rock_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4913" name="map_rock_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5041" name="map_roof_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5169" name="map_roof_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5297" name="map_roof_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5425" name="map_shop_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_shop_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5553" name="map_sign_ladder_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5681" name="map_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5809" name="map_trail_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5937" name="map_transition_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6065" name="map_transition_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6193" name="map_transition_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6321" name="map_transition_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6449" name="map_transition_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6577" name="map_tree_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6705" name="map_tree_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6833" name="map_wall_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_wall_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6961" name="map_wall_2" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_2.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7081" name="map_wall_3" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_3.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7201" name="map_wall_4" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_4.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7321" name="map_window_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7449" name="map_window_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7577" name="map_broken_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7705" name="map_trail_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="30" height="30">
<data encoding="base64" compression="zlib">
eJzlljsOgzAMhhFb779yhYKqHoCysba5Qg5SIvGrruW4cV5Lh28C/CXxg8zjMMyERyFzBtvBq5D19G/CPiTncuAOfCHP0++EfawR7375cMsAceDl+whrunbwSu/U9PI4PuK0eq21qa0RXtTaxrx3ow/O2PlyL2rNRWKl9m2KM4A+Q61JDks/pzgD6DNtZlj62VKHfvzOS06MXJbIGZX2ssbE6n5PpMSJenZjuq/GOlBPpU6Ln/4Xenrpf6Gnl+aXz+XWOca8quG11BWdV7G+bdVLnpy1Njdq+Xg/Sd6WTMp+W0HvG//g5feKXjmV+PWd9kwj5W5G35dykhPTCvLO77w1eANsm6A0
</data>
</layer>
<layer name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">eJydV71KA0EQDtdpdxe4cKJNGh/IVzCW6hOo7xF8gsQqVcBUKSKiIBEM3tkJMX8QsAjauUN2uMlkZnfjB8smu3vzzf/eVSq74S0OO3Mb+c9re3vR5v+LSD6n4TXbXnsP0DtjPNfk/xHbqzl00vQdWR3aZn+VViqFGQ/peu0kWQ9Ej9jQMOsT++zAPtMyMvYd+gI6Vga3HWVwTgTEZWjXx+bcxIw50fUgKu2oE9mfdr2fyTGgvChXG8CXm/Fjxm9aymgTG9FH34INnHcmyNUG8En6c5wpvNQGgGTHiMUEfK7l6JNHl3PrE8mOXQH+za0ecztPDf9M0OEq2oyHhEthP2J6oYzHgBrlftNwE5U1emjnxPIeJ2vODxa/JZGNNrcU+6Af8ByepmVP6xJZ9X/EAXBfK39TLprDBcltqgdFw1MfL0TXJrFXqhfMqRXLNZceU08eITC2Ur1ocOnB/cABtmKd0/6GGHr8JulRCHJcCLEzqq5nV58bEN7C2DTPNmf0O/o4xD9J1b0/JvfCVOCEOc/KewGxi380zpz4DfOKzshNQfPTZzty8ZpDTuzJXdaPpBwPzc1x6q45CXcsRlK/Wgn8IXcttwn7s3Yf0X71HJfneY1KdxTtQZOAHo89ram8Z/p6Xii+iNzYIbPHfEJ9NIvlsygP81UD1P0i3r6vAAuyJsXF13P5Ptz9S6ZvU8ipvonbaVL2yDzwXvbpg3wd4Qz06hH5tpCeo98eS+VecwHeXfl7mPbOoenBodnik4+Q3guL2vYaR59whHy3Af4Ac7AjFQ==</data>
</layer>
<layer name="Objects_DameriliasFetched" width="30" height="30">
<data encoding="base64" compression="zlib">
eJztzbEJAEAIwEBXcP9ZhS8eZ1DkDlIngg0qf9ef/QUAAOY9MKMFRw==
</data>
</layer>
<layer name="Objects_DameriliasGrewBack" width="30" height="30">
<data encoding="base64" compression="zlib">
eJztzUEJAEAIAEEzWM3+Xe5xmEGRGdj3RrBB5e/6s78AAMC8BwuaAfo=
</data>
</layer>
<layer name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">eJxjYBgc4LIY/c0CqbtEJXvzmCBmHSbCPGLU4ANvhBDsOibi/UGpvcjAj4n4sKOmvXFMxKullr0wc/ZIkqb+jhB+dfgAtji9CbT/Fh43UJqWqZkfSAl7fHbi8zM2O6jlflzgMFIYPWGC4DUkpEly7QTZEQxMT78EKTePUDqCAVr7azABWvgVFs7oNK3AaUGIHcSAuVT071kS0yQ163piy2QQoGY9RAqglr3o6YcYv1MzrEkBgyWsSUkflORPZHux2UmM2eTYTW44U1oWUbP8GAWkA1rlawCawUUj</data>
</layer>
<layer name="Top" width="30" height="30">
<data encoding="base64" compression="zlib">eJxjYBgFo4A0cFlsYOw9PED2joJRMNDg0gCk/YHKbwPh11EwCmgF5jINtAtGwSgYBaOAMAAAjnwFCw==</data>
</layer>
<layer name="Walkable" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">eJztlMEKwDAIQ8v+vH++aykz0WrcDhO8KPiitc5rjPn7a24Zy6m4jI9qVXA9Pe8aFdy1tldXlrv3s8cZN2Oozhr3cD0zsWIefZmdj/y/yv90at1s9U2J3BWVDgXzZA4qtrL+V7xrnogZeduo1sgOI35UH+sJ9e7hV1s3z+J69+Mpx7Svc2e7ZelkfSBD3OjMMzz2zid7X3ET1Henk3sDDZcWcA==</data>
</layer>
<objectgroup name="Mapevents">
<object id="1" name="sign_lakecave1" type="sign" x="768" y="160" width="32" height="32"/>
<object id="2" name="south" type="mapchange" x="256" y="928" width="32" height="32">
<properties>
<property name="map" value="lakecave0"/>
<property name="place" value="north"/>
</properties>
</object>
<object id="3" name="east1" type="mapchange" x="928" y="672" width="32" height="32">
<properties>
<property name="map" value="lakecave2"/>
<property name="place" value="west2"/>
</properties>
</object>
<object id="4" name="east2" type="mapchange" x="928" y="352" width="32" height="32">
<properties>
<property name="map" value="lakecave2"/>
<property name="place" value="west3"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Spawn" visible="0">
<object id="5" name="lakecave1_1" type="spawn" x="64" y="672" width="448" height="224">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="honey_bee"/>
</properties>
</object>
<object id="6" name="lakecave1_2" type="spawn" x="192" y="96" width="384" height="128">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="honey_bee"/>
</properties>
</object>
<object id="7" name="lakecave1_3" type="spawn" x="544" y="288" width="320" height="224">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="honey_bee"/>
</properties>
</object>
<object id="8" name="lakecave1_4" type="spawn" x="192" y="576" width="672" height="256">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="forestbeetle"/>
</properties>
</object>
<object id="9" name="lakecave1_5" type="spawn" x="672" y="192" width="192" height="320">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="forestbeetle"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Keys"/>
<objectgroup name="Damerilia1">
<object id="10" name="Damerilia#1Fetched" type="replace" x="288" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="30"/>
</properties>
</object>
<object id="11" name="Damerilia#1GrewBack" type="replace" x="288" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="31"/>
</properties>
</object>
<object id="12" name="script_lakecave1_damerilia1_0" type="script" x="288" y="96" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia2">
<object id="13" name="Damerilia#2Fetched" type="replace" x="256" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="32"/>
</properties>
</object>
<object id="14" name="Damerilia#2GrewBack" type="replace" x="256" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="33"/>
</properties>
</object>
<object id="15" name="script_lakecave1_damerilia2_0" type="script" x="256" y="96" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia3">
<object id="16" name="Damerilia#3Fetched" type="replace" x="256" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="34"/>
</properties>
</object>
<object id="17" name="Damerilia#3GrewBack" type="replace" x="256" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="35"/>
</properties>
</object>
<object id="18" name="script_lakecave1_damerilia3_0" type="script" x="256" y="128" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia4">
<object id="19" name="Damerilia#4Fetched" type="replace" x="224" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="36"/>
</properties>
</object>
<object id="20" name="Damerilia#4GrewBack" type="replace" x="224" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="37"/>
</properties>
</object>
<object id="21" name="script_lakecave1_damerilia4_0" type="script" x="224" y="128" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia5">
<object id="22" name="Damerilia#5Fetched" type="replace" x="224" y="160" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="38"/>
</properties>
</object>
<object id="23" name="Damerilia#5GrewBack" type="replace" x="224" y="160" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="39"/>
</properties>
</object>
<object id="24" name="script_lakecave1_damerilia5_0" type="script" x="224" y="160" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Replace"/>
</map>
<?xml version="1.0" encoding="UTF-8"?>
<map version="2017.05.26" orientation="orthogonal" renderorder="right-down" width="30" height="30" tilewidth="32" tileheight="32" nextobjectid="25">
<tileset firstgid="1" name="map_bed_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bed_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="129" name="map_border_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_border_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="257" name="map_bridge_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="385" name="map_bridge_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="513" name="map_broken_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="641" name="map_cavewall_1" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<tileset firstgid="749" name="map_cavewall_2" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_2.png" width="576" height="192"/>
</tileset>
<tileset firstgid="857" name="map_cavewall_3" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_3.png" width="576" height="192"/>
</tileset>
<tileset firstgid="965" name="map_cavewall_4" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_4.png" width="576" height="192"/>
</tileset>
<tileset firstgid="1073" name="map_chair_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1201" name="map_chair_table_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1329" name="map_crate_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_crate_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1457" name="map_cupboard_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_cupboard_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1585" name="map_curtain_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_curtain_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1713" name="map_entrance_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1841" name="map_entrance_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1969" name="map_fence_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2097" name="map_fence_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2225" name="map_fence_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2353" name="map_fence_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2481" name="map_ground_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2609" name="map_ground_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2737" name="map_ground_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2865" name="map_ground_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2993" name="map_ground_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3121" name="map_ground_6" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_6.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3249" name="map_ground_7" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_7.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3377" name="map_ground_8" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_8.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3505" name="map_house_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3633" name="map_house_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3761" name="map_indoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3889" name="map_indoor_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4017" name="map_kitchen_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_kitchen_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4145" name="map_outdoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_outdoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4273" name="map_pillar_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4401" name="map_pillar_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4529" name="map_plant_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4657" name="map_plant_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4785" name="map_rock_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4913" name="map_rock_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5041" name="map_roof_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5169" name="map_roof_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5297" name="map_roof_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5425" name="map_shop_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_shop_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5553" name="map_sign_ladder_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5681" name="map_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5809" name="map_trail_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5937" name="map_transition_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6065" name="map_transition_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6193" name="map_transition_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6321" name="map_transition_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6449" name="map_transition_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6577" name="map_tree_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6705" name="map_tree_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6833" name="map_wall_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_wall_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6961" name="map_wall_2" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_2.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7081" name="map_wall_3" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_3.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7201" name="map_wall_4" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_4.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7321" name="map_window_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7449" name="map_window_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7577" name="map_broken_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7705" name="map_trail_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="30" height="30">
<data encoding="base64" compression="zlib">
eJzlljsOgzAMhhFb779yhYKqHoCysba5Qg5SIvGrruW4cV5Lh28C/CXxg8zjMMyERyFzBtvBq5D19G/CPiTncuAOfCHP0++EfawR7375cMsAceDl+whrunbwSu/U9PI4PuK0eq21qa0RXtTaxrx3ow/O2PlyL2rNRWKl9m2KM4A+Q61JDks/pzgD6DNtZlj62VKHfvzOS06MXJbIGZX2ssbE6n5PpMSJenZjuq/GOlBPpU6Ln/4Xenrpf6Gnl+aXz+XWOca8quG11BWdV7G+bdVLnpy1Njdq+Xg/Sd6WTMp+W0HvG//g5feKXjmV+PWd9kwj5W5G35dykhPTCvLO77w1eANsm6A0
</data>
</layer>
<layer name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">
eJyVVztLA0EQlivU9i6QeEWusLGwiL/B9MFHHxTUPxUstE1EfBUBU6UTBYlgMLGz0KgQ8Be4Q3a4ydzM7uaDZZO9vfnmvXtLS4vhNQ7bcxr592vPzqrz/1eyMN0QL2lx7S1A7yvGWyG8d+zZJftPoek7tDp0jG+aZk/djC27dz+ZDUSP2HBs1r/suzX7TtvIOHfoC7ixMrjtKINzIiAuA7veMPt2YC/R9bqa27FOZH/YmPdTOQaUF+VqA/i2zTgw45DY1YmKPvoTbOC8e4JcbQCfpD/HicJLbQBIdgxZTMDnWo4+enRZtnIlOxYF+Hdk9fix88Twfws6lLP5eEhYFXSIykVOwENAjXK/aVjL8hq9tXNieTeSGec7i9+UyEab24p90A94Du9meU/rElnrZVmGD/eV/DflojlcJ7lN9aA49tTHM9G1ReyV6gVzqslyzaXHxJNHCIytVC8aXHpwP3CArVjntL8hBh6/SXrUBTkuhNgZlWazq8/VCO/Y2PSTzs/od/RxiH+Skvt5g5wLE4ET5lGanwuIRfyjcW4Tv2Fe0Rm5KWh++mxHLl5zyIk9ucv6kZTjobnZyNw1J+GCxUjqV02BP+Ss5TZhf9bOI9qvnuJ8P69R6YyiPegroMdjT2sp90xfzwvFJ5EbO2T2mE+oj75jeS/Kw3zVAHX/GxfPK8AvWZPi4uu5/Dmc/VOmb0vIqU0Tt6Mk75GjwHPZpw/y3Qh7oFcPybeF9B799pgq55oLcHfl9zDtzqHpwaHZ4pOPkO6F40pxjaNPOEK+2wD/g5zOoQ==
</data>
</layer>
<layer name="Objects_DameriliasFetched" width="30" height="30">
<data encoding="base64" compression="zlib">
eJztzbEJAEAIwEBXcP9ZhS8eZ1DkDlIngg0qf9ef/QUAAOY9MKMFRw==
</data>
</layer>
<layer name="Objects_DameriliasGrewBack" width="30" height="30">
<data encoding="base64" compression="zlib">
eJztzUEJAEAIAEEzWM3+Xe5xmEGRGdj3RrBB5e/6s78AAMC8BwuaAfo=
</data>
</layer>
<layer name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">
eJxjYBgcwFqO/maB1FlRyV42qFnaRJhHjBp84I0Qgi0mR7w/KLUXGTyTJT7sqGnvN1ni1VLLXpg5eyRJU39HCL86fABbnN4E2n8LjxsoTcvUzA+khD0+O/H5GZsd1HI/LqCNFEZPmCB4DRPt7QTZEQxMT78EKTePUDqCAVr7azABWvgVFs7oNK3AaUGIHcSAuVT071kS0yQ163piy2QQoGY9RAqglr3o6YcYv1MzrEkBgyWsSUkflORPZHux2UmM2eTYTW44U1oWUbP8GAWkA1rlawD4jTGx
</data>
</layer>
<layer name="Top" width="30" height="30">
<data encoding="base64" compression="zlib">
eJxjYBgFo4A0YC03MPZqD5C9o2AUDDSwGoC0P1D5bSD8OgpGAa3AXKaBdsEoGAWjYBQQBgAPTgI7
</data>
</layer>
<layer name="Walkable" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eJztlDEOwDAIA/ONLP3/M7tGUbEhYNqhSCwgcYYQ5jXG/P01t4zlVFzGR7UquJ6ed40K7lrbqyvL3fvZ44ybMVRnjXu4nplYMY++zM5H/l/lfzq1brb6pkTuikqHgnkyBxVbWf8r3jVPxIy8bVRrZIcRP6qP9YR69/CrrZtncb378ZRj2te5s92ydLI+kCFudOYZHnvnk72vuAnqu9PJvQEAvnTh
</data>
</layer>
<objectgroup name="Mapevents">
<object id="1" name="sign_lakecave1" type="sign" x="768" y="160" width="32" height="32"/>
<object id="2" name="south" type="mapchange" x="256" y="928" width="32" height="32">
<properties>
<property name="map" value="lakecave0"/>
<property name="place" value="north"/>
</properties>
</object>
<object id="3" name="east1" type="mapchange" x="928" y="672" width="32" height="32">
<properties>
<property name="map" value="lakecave2"/>
<property name="place" value="west2"/>
</properties>
</object>
<object id="4" name="east2" type="mapchange" x="928" y="352" width="32" height="32">
<properties>
<property name="map" value="lakecave2"/>
<property name="place" value="west3"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Spawn" visible="0">
<object id="5" name="lakecave1_1" type="spawn" x="64" y="672" width="448" height="224">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="honey_bee"/>
</properties>
</object>
<object id="6" name="lakecave1_2" type="spawn" x="192" y="96" width="384" height="128">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="honey_bee"/>
</properties>
</object>
<object id="7" name="lakecave1_3" type="spawn" x="544" y="288" width="320" height="224">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="honey_bee"/>
</properties>
</object>
<object id="8" name="lakecave1_4" type="spawn" x="192" y="576" width="672" height="256">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="forestbeetle"/>
</properties>
</object>
<object id="9" name="lakecave1_5" type="spawn" x="672" y="192" width="192" height="320">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="forestbeetle"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Keys"/>
<objectgroup name="Damerilia1">
<object id="10" name="Damerilia#1Fetched" type="replace" x="288" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="30"/>
</properties>
</object>
<object id="11" name="Damerilia#1GrewBack" type="replace" x="288" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="31"/>
</properties>
</object>
<object id="12" name="script_lakecave1_damerilia1_0" type="script" x="288" y="96" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia2">
<object id="13" name="Damerilia#2Fetched" type="replace" x="256" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="32"/>
</properties>
</object>
<object id="14" name="Damerilia#2GrewBack" type="replace" x="256" y="96" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="33"/>
</properties>
</object>
<object id="15" name="script_lakecave1_damerilia2_0" type="script" x="256" y="96" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia3">
<object id="16" name="Damerilia#3Fetched" type="replace" x="256" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="34"/>
</properties>
</object>
<object id="17" name="Damerilia#3GrewBack" type="replace" x="256" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="35"/>
</properties>
</object>
<object id="18" name="script_lakecave1_damerilia3_0" type="script" x="256" y="128" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia4">
<object id="19" name="Damerilia#4Fetched" type="replace" x="224" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="36"/>
</properties>
</object>
<object id="20" name="Damerilia#4GrewBack" type="replace" x="224" y="128" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="37"/>
</properties>
</object>
<object id="21" name="script_lakecave1_damerilia4_0" type="script" x="224" y="128" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Damerilia5">
<object id="22" name="Damerilia#5Fetched" type="replace" x="224" y="160" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasFetched"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="38"/>
</properties>
</object>
<object id="23" name="Damerilia#5GrewBack" type="replace" x="224" y="160" width="32" height="32">
<properties>
<property name="Objects" value="Objects_DameriliasGrewBack"/>
<property name="requireId" value="nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="39"/>
</properties>
</object>
<object id="24" name="script_lakecave1_damerilia5_0" type="script" x="224" y="160" width="32" height="32">
<properties>
<property name="when" value="enter"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Replace"/>
</map>

View File

@@ -1,389 +1,393 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.2" tiledversion="1.3.0" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="30" height="30" tilewidth="32" tileheight="32" infinite="0" nextlayerid="13" nextobjectid="36">
<tileset firstgid="1" name="map_bed_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bed_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="129" name="map_border_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_border_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="257" name="map_bridge_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="385" name="map_bridge_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="513" name="map_broken_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="641" name="map_cavewall_1" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<tileset firstgid="749" name="map_cavewall_2" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_2.png" width="576" height="192"/>
</tileset>
<tileset firstgid="857" name="map_cavewall_3" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_3.png" width="576" height="192"/>
</tileset>
<tileset firstgid="965" name="map_cavewall_4" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_4.png" width="576" height="192"/>
</tileset>
<tileset firstgid="1073" name="map_chair_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1201" name="map_chair_table_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1329" name="map_crate_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_crate_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1457" name="map_cupboard_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_cupboard_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1585" name="map_curtain_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_curtain_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1713" name="map_entrance_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1841" name="map_entrance_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1969" name="map_fence_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2097" name="map_fence_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2225" name="map_fence_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2353" name="map_fence_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2481" name="map_ground_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2609" name="map_ground_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2737" name="map_ground_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2865" name="map_ground_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2993" name="map_ground_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3121" name="map_ground_6" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_6.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3249" name="map_ground_7" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_7.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3377" name="map_ground_8" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_8.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3505" name="map_house_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3633" name="map_house_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3761" name="map_indoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3889" name="map_indoor_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4017" name="map_kitchen_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_kitchen_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4145" name="map_outdoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_outdoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4273" name="map_pillar_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4401" name="map_pillar_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4529" name="map_plant_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4657" name="map_plant_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4785" name="map_rock_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4913" name="map_rock_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5041" name="map_roof_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5169" name="map_roof_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5297" name="map_roof_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5425" name="map_shop_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_shop_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5553" name="map_sign_ladder_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5681" name="map_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5809" name="map_trail_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5937" name="map_transition_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6065" name="map_transition_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6193" name="map_transition_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6321" name="map_transition_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6449" name="map_transition_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6577" name="map_tree_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6705" name="map_tree_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6833" name="map_wall_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_wall_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6961" name="map_wall_2" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_2.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7081" name="map_wall_3" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_3.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7201" name="map_wall_4" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_4.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7321" name="map_window_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7449" name="map_window_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7577" name="map_rock_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<layer id="1" name="Ground" width="30" height="30">
<data encoding="base64" compression="zlib">
eAG1lMFRBDEMBK/4kToxkAIHD/5ACEAKBILn0VVdQuvz3i0Pl8aWPGNLss93p9NZ431ghtdvwfDFdjwfY/1L423jDOaZ4coX7nBGm32J+R7jR+NzYM5BfMdFTLWVL9zhfBJvYl7v/w7OkfiXMTouYqrt+LIWXWK3YrweXc+vxdHds/dI3cehnbGif6Quff28oH2ULpqxR+vCTT6xrGNXdFf7Ib3vt89bjUXP9lKNo5v4hzK6/vDb97vmH7BuMPnouOLv/g246rl5o7b8G85BxdGAK3ft/rRwkteVWoUvXM5Bxf7D0suecx4s92A+s9F1Dir23pU3RL5dK7C5ouv5DNcc0lveQ75rvTKvNeM8XR/BmX6ybvipSe5IXKx9xMS6Rrmv+9nccBFTfdQkOrUG+Gzhi4UT7cpdY7zXeE+9sg89bKebPLpeqWutCTHUfGbRsu10u3pFx7FdjGtrnL3WDDaX8+g6Ba/WtO5j70p9rW9ce8m+S/iS7uyNbfWS9xj7LDPdmS8cXS+5/yqu/4b91ef619rv6aXu33Cv7f1Tur7ZWqt5dlz1+b7B9t+CZ1xVk7l75Ro848H3n/YXckCa+g==
</data>
</layer>
<layer id="2" name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">eJzNVjtLA0EQPk8TIcIdXkCIDyyigr/DPgjpg1FLjYWFjUa0s7VVGy1Nkx9gIbbaRhubPLQWY9q4w81yk83s3p4v/GC5fczOe+bWcf4Hlv3wu+H+DL/2+OCIwy7KffUc58UbPFvMOk5ZnE+Ikc+Ge9tC34IbzSkC3M8ptuzguia+H0LGmxg9cbeF+7OM7UWxNyPGHJ4dCPoSmUt+gPsguid5wr1DN6TpIf0IfvdSjvMudOh6EX2N6pCNpk+Tw7pJeITuVqFr4LqO3ybqOIo6XKbsZCTFRUwenabM5z6xSeos/fEYo+fNmP6sreQW9Z0JV4q+Z4x9D0Juh5ENfj022Kvaw/E24dlgr8TdlP6sH+jPTIAYd9CfXcWvR/4wvXpXosXYC7W9ZBkbykvnuzzhpcqeJ+tSQt/rEBh6CqDJ+BziQH2xhfMFoXsG56safjVmn/Iyxb+u5N8+uTeN8zV3WAYnU9YoF1MKXX9QdQFIX9HYwt4JWcf1Gxs5HI8k+URtLrg8bRwamt4GferaYCPIhpwrkX9VjsTMts9RcDkjbTTlE4XOf+tp8dbAsZnW308a1zj4Gj+suGGd6ejLbkQnUSHzjKWeMpdl3yka+gTNpyKZV5n6/A6kHK4mbO9yAH5q/Ll4ylzqM3WuAu5zvdMaX6iD30KF6RFlne1E74pCY1PbLU3+qHkn/1tqb4eeUsUew/Z9AoinKZds3htqDtB3bdL30Xdw/oeyAJ8A7WzF</data>
</layer>
<layer id="3" name="Objects2" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">eJxjYBgF1AZCTBBakok0fawU2PmDg4HhjBADgwiQ/s5OvL7FLAwMokD6MYluhYEnQLv4hMnTq0qetlEwCkbBKBgFo2AUjIJRMApGAZUAALPvBf8=</data>
</layer>
<layer id="4" name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">
eAHtVFsKwjAQXPzwt+CHN/BC2tuJp/EGeqE20NAlZCezbrBSDIRus4+ZzYQV+Y31PPfl8V7qnQa7bop5Ebi5ll1p9TD1mBiW24rcx+qtA8vqj1u/qftB5DFvZl3AW8/5W90z20PmyXy36oXhlmK+wa+cTa25UcazvZRxeoa1MFPunvSP6vqpBlFcrVmpJ+KEcFFeiVH7vx5Fbsse569e6M0gn65h2agnK6fHuQc3erearwfXE6sxaranlie2hqXPPLWib4nFjeqJ8lG/yKe5WzaaG8gXxbX4tM576tnC2pt/Au/qL/0=
</data>
</layer>
<layer id="5" name="Above2" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBie4LLYwPjr0gDZi+xbQX5k3ih7NARGQ2A0BEZDYDQERkNgNARGQ2A0BEZDYDQEsIcAACzEAfI=
</data>
</layer>
<layer id="6" name="Top" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBgFoyEwGgLUDIHLYtQ0jXizDo8we+cyER82oypHQ2A0BAZfCAxUmTX4QmLURaMhMBoCoyEwsCEAAFjJBBQ=
</data>
</layer>
<layer id="7" name="Walkable" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAHlkAEKw1AIQ3uK3f8KveGWwQMJ6rd/g0EnjGgS437Px3GcN/4dr/rF+1Z3pau+9d/Ieoc2ueidP3p2er1pWrx/6u98ZIETb+eZatyL2O3KN60qM/LeZ9l4Ms05vFfQM+JMTuSyHt8VzHLgVjlT3ypHOjXx7vir3N277DlWd5xnL/JwYNTUr8r92UwGGrMjeofsyDMpsvAygxWPDnY+NJAdIRU5emn0Fa720T0LPsvtNPydBw1kB4QH4YWTiv7dnju7+3GPLDBq3k88vlPNZIGVTzzVeaYaWR2S1XkqjV1H/M5rjoWecWiOeJ3XTHWaPJm+4ibZWQZ7/3JX3+DT4jtmOWh3xCf9UcYI
</data>
</layer>
<layer id="8" name="Walkable2" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBieYKMYAwMyppcvke0EsYkFyPqI1YOujhT7YHqpYS/MrFF6NARGQ2A0BEZDYDQERkNgNARGQ2A0BEZDYGiFAAB/3wuq
</data>
</layer>
<objectgroup id="9" name="Mapevents" visible="0">
<object id="1" name="west1" type="mapchange" x="0" y="896" width="32" height="32">
<properties>
<property name="map" value="lakecave0"/>
<property name="place" value="east"/>
</properties>
</object>
<object id="2" name="west2" type="mapchange" x="0" y="480" width="32" height="32">
<properties>
<property name="map" value="lakecave1"/>
<property name="place" value="east1"/>
</properties>
</object>
<object id="3" name="west3" type="mapchange" x="0" y="160" width="32" height="32">
<properties>
<property name="map" value="lakecave1"/>
<property name="place" value="east2"/>
</properties>
</object>
<object id="4" name="script_grow_lakecave1_damerilias_0" type="script" x="32" y="160" width="32" height="32">
<properties>
<property name="when" value="step"/>
</properties>
</object>
<object id="5" name="script_grow_lakecave1_damerilias_0" type="script" x="32" y="480" width="32" height="32">
<properties>
<property name="when" value="step"/>
</properties>
</object>
<object id="33" name="lakecave2_script_keycheck3" type="script" x="864" y="96" width="32" height="32"/>
<object id="19" name="lakecave2_script_keycheck1" type="script" x="640" y="64" width="288" height="160"/>
<object id="35" name="script_lakecave_cleared" type="script" x="32" y="96" width="896" height="832">
<properties>
<property name="when" value="step"/>
</properties>
</object>
</objectgroup>
<objectgroup id="10" name="Spawn" visible="0">
<object id="6" name="lakecave2_1" type="spawn" x="64" y="96" width="288" height="512">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="scorpion_1"/>
</properties>
</object>
<object id="7" name="lakecave2_2" type="spawn" x="864" y="128" width="64" height="64">
<properties>
<property name="spawngroup" value="cave_troll_5"/>
</properties>
</object>
<object id="8" name="lakecave2_3" type="spawn" x="640" y="352" width="64" height="32">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="9" name="lakecave2_4" type="spawn" x="864" y="480" width="64" height="32">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="10" name="lakecave2_5" type="spawn" x="384" y="96" width="416" height="256">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_4"/>
</properties>
</object>
<object id="11" name="lakecave2_6" type="spawn" x="384" y="128" width="288" height="224">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_2"/>
</properties>
</object>
<object id="12" name="lakecave2_7" type="spawn" x="672" y="97" width="128" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="13" name="lakecave2_8" type="spawn" x="352" y="416" width="576" height="128">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_4"/>
</properties>
</object>
<object id="14" name="lakecave2_9" type="spawn" x="64" y="608" width="864" height="320">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="cave_troll_2"/>
</properties>
</object>
<object id="15" name="lakecave2_10" type="spawn" x="320" y="384" width="608" height="160">
<properties>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="16" name="lakecave2_11" type="spawn" x="128" y="800" width="64" height="32">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="17" name="lakecave2_12" type="spawn" x="352" y="608" width="576" height="288">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_4"/>
</properties>
</object>
<object id="18" name="lakecave2_13" type="spawn" x="448" y="544" width="416" height="64">
<properties>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="30" name="caeda" type="spawn" x="96" y="128" width="256" height="256">
<properties>
<property name="active" value="false"/>
<property name="ignoreAreas" value="true"/>
</properties>
</object>
</objectgroup>
<objectgroup id="11" name="Keys" visible="0">
<object id="29" name="lakecave2_key_check1" type="key" x="832" y="64" width="32" height="32">
<properties>
<property name="phrase" value="lakecave2_key_check1"/>
<property name="requireId" value="cave_troll_5"/>
<property name="requireType" value="killedMonster"/>
<property name="requireValue" value="1"/>
</properties>
</object>
<object id="31" name="lakecave2_key_check2" type="key" x="832" y="32" width="32" height="32">
<properties>
<property name="phrase" value="lakecave2_key_check2"/>
<property name="requireId" value="base_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="2"/>
</properties>
</object>
</objectgroup>
<objectgroup id="12" name="Replace" visible="0">
<object id="23" name="board" type="replace" x="768" y="32" width="128" height="128">
<properties>
<property name="Above" value="Above2"/>
<property name="Objects" value="Objects2"/>
<property name="Walkable" value="Walkable2"/>
<property name="requireId" value="stn_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="211"/>
</properties>
</object>
<object id="34" name="key_taken" type="replace" x="864" y="96" width="32" height="32">
<properties>
<property name="Above" value="Top"/>
<property name="requireId" value="stn_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="212"/>
</properties>
</object>
<object id="29" name="caedas_bed" type="replace" x="256" y="96" width="96" height="96">
<properties>
<property name="Objects" value="Objects2"/>
<property name="Walkable" value="Walkable2"/>
<property name="requireId" value="stn_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="205"/>
</properties>
</object>
</objectgroup>
</map>
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.2" tiledversion="1.3.0" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="30" height="30" tilewidth="32" tileheight="32" infinite="0" nextlayerid="13" nextobjectid="36">
<tileset firstgid="1" name="map_bed_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bed_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="129" name="map_border_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_border_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="257" name="map_bridge_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="385" name="map_bridge_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_bridge_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="513" name="map_broken_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="641" name="map_cavewall_1" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<tileset firstgid="749" name="map_cavewall_2" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_2.png" width="576" height="192"/>
</tileset>
<tileset firstgid="857" name="map_cavewall_3" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_3.png" width="576" height="192"/>
</tileset>
<tileset firstgid="965" name="map_cavewall_4" tilewidth="32" tileheight="32" tilecount="108" columns="18">
<image source="../drawable/map_cavewall_4.png" width="576" height="192"/>
</tileset>
<tileset firstgid="1073" name="map_chair_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1201" name="map_chair_table_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_chair_table_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1329" name="map_crate_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_crate_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1457" name="map_cupboard_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_cupboard_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1585" name="map_curtain_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_curtain_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1713" name="map_entrance_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1841" name="map_entrance_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_entrance_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1969" name="map_fence_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2097" name="map_fence_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2225" name="map_fence_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2353" name="map_fence_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_fence_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2481" name="map_ground_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2609" name="map_ground_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2737" name="map_ground_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2865" name="map_ground_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2993" name="map_ground_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3121" name="map_ground_6" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_6.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3249" name="map_ground_7" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_7.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3377" name="map_ground_8" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_ground_8.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3505" name="map_house_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3633" name="map_house_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_house_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3761" name="map_indoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3889" name="map_indoor_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_indoor_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4017" name="map_kitchen_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_kitchen_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4145" name="map_outdoor_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_outdoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4273" name="map_pillar_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4401" name="map_pillar_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_pillar_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4529" name="map_plant_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4657" name="map_plant_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_plant_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4785" name="map_rock_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4913" name="map_rock_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5041" name="map_roof_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5169" name="map_roof_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5297" name="map_roof_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_roof_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5425" name="map_shop_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_shop_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5553" name="map_sign_ladder_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5681" name="map_table_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5809" name="map_trail_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5937" name="map_transition_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6065" name="map_transition_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6193" name="map_transition_3" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6321" name="map_transition_4" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6449" name="map_transition_5" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_transition_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6577" name="map_tree_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6705" name="map_tree_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_tree_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6833" name="map_wall_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_wall_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6961" name="map_wall_2" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_2.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7081" name="map_wall_3" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_3.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7201" name="map_wall_4" tilewidth="32" tileheight="32" tilecount="120" columns="15">
<image source="../drawable/map_wall_4.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7321" name="map_window_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7449" name="map_window_2" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_window_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7577" name="map_rock_1" tilewidth="32" tileheight="32" tilecount="128" columns="16">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<layer id="1" name="Ground" width="30" height="30">
<data encoding="base64" compression="zlib">
eAG1lMFRBDEMBK/4kToxkAIHD/5ACEAKBILn0VVdQuvz3i0Pl8aWPGNLss93p9NZ431ghtdvwfDFdjwfY/1L423jDOaZ4coX7nBGm32J+R7jR+NzYM5BfMdFTLWVL9zhfBJvYl7v/w7OkfiXMTouYqrt+LIWXWK3YrweXc+vxdHds/dI3cehnbGif6Quff28oH2ULpqxR+vCTT6xrGNXdFf7Ib3vt89bjUXP9lKNo5v4hzK6/vDb97vmH7BuMPnouOLv/g246rl5o7b8G85BxdGAK3ft/rRwkteVWoUvXM5Bxf7D0suecx4s92A+s9F1Dir23pU3RL5dK7C5ouv5DNcc0lveQ75rvTKvNeM8XR/BmX6ybvipSe5IXKx9xMS6Rrmv+9nccBFTfdQkOrUG+Gzhi4UT7cpdY7zXeE+9sg89bKebPLpeqWutCTHUfGbRsu10u3pFx7FdjGtrnL3WDDaX8+g6Ba/WtO5j70p9rW9ce8m+S/iS7uyNbfWS9xj7LDPdmS8cXS+5/yqu/4b91ef619rv6aXu33Cv7f1Tur7ZWqt5dlz1+b7B9t+CZ1xVk7l75Ro848H3n/YXckCa+g==
</data>
</layer>
<layer id="2" name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">
eAHNVj1PlEEQXgExAYRAQSJyUvs76AkJPeGrVCksbPyIdra0SgMlNiS0FISOhBZtrDg8WwOerfOEeXJPJvPevRAgTLK3884+87Gzs7NXyv2g52OXcaz23Uw8zUel6Ohl9bX7bY2W8suG0uNnpSzb+jCG8aCXFu+c64BXmnD5E5+5tu7f32z+az7+2Gib7qnLpwMeegsme2qj4WvvDL8oPDCwB9prXM74pU3ofbABDHyBHvj85mEp5xbDhQ3iaQu432LvxzgkObUFdxBwJ/696/ORY/s9hi2LgdTNBzF1503PSRV+Q/xmmH+yJ8bMfHwPe4z6+wNR0vluWq6VNHcqj/x2iPdLsr9j83uW+EZePwV9tR/3k9lWfOR/Jj4j5nAySjrfLcl1R9qbwxmfeT5Rw0ofvb5UprzWB2tf13G3R/2uqzzj1VZV7tg3oK94+J6Rs+TdzvxcRcYelPUU2GFNq02cg+bihcc1YnkYcn5eYlVd7RuUq61u58/eQL234mPK+SWbo4/4DX3eUfVNuzrrGag8xoI15krPFrLPEmeVPbWtfOYns6E+VT+rJ90z3yboKFZtZDz7dVxDn9qR/cZ1+EbNoX4bjsP7xzOq2+fUblYz3GO2prrkq/K3MljKqo81m6soO5MqbB25viuKn7Vc4Z5FIh7/P0DAkV4Jz/vJtaqZtYw8ou/g/wUo6xPMNdaJA/9e/PJ+Qn5dop/sTvSySd0MB3vx/LPzZC3xHYo6ahv6zKHK6/LsT3Xxt4nT+mGPYJ1Fvxq36gFX527rOWn9xLrju8W+wTjQU6CH9bhGDGecZ7da4jkTn82xBvR/bVzL9G9K9tX2e5f0H4o7d/4=
</data>
</layer>
<layer id="3" name="Objects2" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBgF1A4BISaIiZJQmljzWYlViEXdDw4Ghi2yDAwiQPo7OxYFOIQWszAwiALlHpPoVphxT4B2fQPaSw5QJUfTqJ7REBgNgdEQGA2B0RAYDYHREBgNgdEQGA0BqoUAADvjBuQ=
</data>
</layer>
<layer id="4" name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">
eAHtVFsKwjAQXPzwt+CHN/BC2tuJp/EGeqE20NAlZCezbrBSDIRus4+ZzYQV+Y31PPfl8V7qnQa7bop5Ebi5ll1p9TD1mBiW24rcx+qtA8vqj1u/qftB5DFvZl3AW8/5W90z20PmyXy36oXhlmK+wa+cTa25UcazvZRxeoa1MFPunvSP6vqpBlFcrVmpJ+KEcFFeiVH7vx5Fbsse569e6M0gn65h2agnK6fHuQc3erearwfXE6sxaranlie2hqXPPLWib4nFjeqJ8lG/yKe5WzaaG8gXxbX4tM576tnC2pt/Au/qL/0=
</data>
</layer>
<layer id="5" name="Above2" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBie4LLYwPjr0gDZi+xbQX5k3ih7NARGQ2A0BEZDYDQERkNgNARGQ2A0BEZDYDQEsIcAACzEAfI=
</data>
</layer>
<layer id="6" name="Top" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBgFoyEwGgLUDIHLYtQ0jXizDo8we+cyER82oypHQ2A0BAZfCAxUmTX4QmLURaMhMBoCoyEwsCEAAFjJBBQ=
</data>
</layer>
<layer id="7" name="Walkable" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAHlkAEKw1AIQ3uK3f8KveGWwQMJ6rd/g0EnjGgS437Px3GcN/4dr/rF+1Z3pau+9d/Ieoc2ueidP3p2er1pWrx/6u98ZIETb+eZatyL2O3KN60qM/LeZ9l4Ms05vFfQM+JMTuSyHt8VzHLgVjlT3ypHOjXx7vir3N277DlWd5xnL/JwYNTUr8r92UwGGrMjeofsyDMpsvAygxWPDnY+NJAdIRU5emn0Fa720T0LPsvtNPydBw1kB4QH4YWTiv7dnju7+3GPLDBq3k88vlPNZIGVTzzVeaYaWR2S1XkqjV1H/M5rjoWecWiOeJ3XTHWaPJm+4ibZWQZ7/3JX3+DT4jtmOWh3xCf9UcYI
</data>
</layer>
<layer id="8" name="Walkable2" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">
eAFjYBieYKMYAwMyppcvke0EsYkFyPqI1YOujhT7YHqpYS/MrFF6NARGQ2A0BEZDYDQERkNgNARGQ2A0BEZDYGiFAAB/3wuq
</data>
</layer>
<objectgroup id="9" name="Mapevents" visible="0">
<object id="1" name="west1" type="mapchange" x="0" y="896" width="32" height="32">
<properties>
<property name="map" value="lakecave0"/>
<property name="place" value="east"/>
</properties>
</object>
<object id="2" name="west2" type="mapchange" x="0" y="480" width="32" height="32">
<properties>
<property name="map" value="lakecave1"/>
<property name="place" value="east1"/>
</properties>
</object>
<object id="3" name="west3" type="mapchange" x="0" y="160" width="32" height="32">
<properties>
<property name="map" value="lakecave1"/>
<property name="place" value="east2"/>
</properties>
</object>
<object id="4" name="script_grow_lakecave1_damerilias_0" type="script" x="32" y="160" width="32" height="32">
<properties>
<property name="when" value="step"/>
</properties>
</object>
<object id="5" name="script_grow_lakecave1_damerilias_0" type="script" x="32" y="480" width="32" height="32">
<properties>
<property name="when" value="step"/>
</properties>
</object>
<object id="33" name="lakecave2_script_keycheck3" type="script" x="864" y="96" width="32" height="32"/>
<object id="19" name="lakecave2_script_keycheck1" type="script" x="640" y="64" width="288" height="160"/>
<object id="35" name="script_lakecave_cleared" type="script" x="32" y="96" width="896" height="832">
<properties>
<property name="when" value="step"/>
</properties>
</object>
</objectgroup>
<objectgroup id="10" name="Spawn" visible="0">
<object id="6" name="lakecave2_1" type="spawn" x="64" y="96" width="288" height="512">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="scorpion_1"/>
</properties>
</object>
<object id="7" name="lakecave2_2" type="spawn" x="864" y="128" width="64" height="64">
<properties>
<property name="spawngroup" value="cave_troll_5"/>
</properties>
</object>
<object id="8" name="lakecave2_3" type="spawn" x="640" y="352" width="64" height="32">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="9" name="lakecave2_4" type="spawn" x="864" y="480" width="64" height="32">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="10" name="lakecave2_5" type="spawn" x="384" y="96" width="416" height="256">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_4"/>
</properties>
</object>
<object id="11" name="lakecave2_6" type="spawn" x="384" y="128" width="288" height="224">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_2"/>
</properties>
</object>
<object id="12" name="lakecave2_7" type="spawn" x="672" y="97" width="128" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="13" name="lakecave2_8" type="spawn" x="352" y="416" width="576" height="128">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_4"/>
</properties>
</object>
<object id="14" name="lakecave2_9" type="spawn" x="64" y="608" width="864" height="320">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="cave_troll_2"/>
</properties>
</object>
<object id="15" name="lakecave2_10" type="spawn" x="320" y="384" width="608" height="160">
<properties>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="16" name="lakecave2_11" type="spawn" x="128" y="800" width="64" height="32">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="17" name="lakecave2_12" type="spawn" x="352" y="608" width="576" height="288">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="cave_troll_4"/>
</properties>
</object>
<object id="18" name="lakecave2_13" type="spawn" x="448" y="544" width="416" height="64">
<properties>
<property name="spawngroup" value="cave_troll_3"/>
</properties>
</object>
<object id="30" name="caeda" type="spawn" x="96" y="128" width="256" height="256">
<properties>
<property name="active" value="false"/>
<property name="ignoreAreas" value="true"/>
</properties>
</object>
</objectgroup>
<objectgroup id="11" name="Keys" visible="0">
<object id="29" name="lakecave2_key_check1" type="key" x="832" y="64" width="32" height="32">
<properties>
<property name="phrase" value="lakecave2_key_check1"/>
<property name="requireId" value="cave_troll_5"/>
<property name="requireType" value="killedMonster"/>
<property name="requireValue" value="1"/>
</properties>
</object>
<object id="31" name="lakecave2_key_check2" type="key" x="832" y="32" width="32" height="32">
<properties>
<property name="phrase" value="lakecave2_key_check2"/>
<property name="requireId" value="base_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="2"/>
</properties>
</object>
</objectgroup>
<objectgroup id="12" name="Replace" visible="0">
<object id="23" name="board" type="replace" x="768" y="32" width="128" height="128">
<properties>
<property name="Above" value="Above2"/>
<property name="Objects" value="Objects2"/>
<property name="Walkable" value="Walkable2"/>
<property name="requireId" value="stn_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="211"/>
</properties>
</object>
<object id="34" name="key_taken" type="replace" x="864" y="96" width="32" height="32">
<properties>
<property name="Above" value="Top"/>
<property name="requireId" value="stn_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="212"/>
</properties>
</object>
<object id="29" name="caedas_bed" type="replace" x="256" y="96" width="96" height="96">
<properties>
<property name="Objects" value="Objects2"/>
<property name="Walkable" value="Walkable2"/>
<property name="requireId" value="stn_nondisplay"/>
<property name="requireType" value="questProgress"/>
<property name="requireValue" value="205"/>
</properties>
</object>
</objectgroup>
</map>

View File

@@ -203,16 +203,24 @@
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="27" height="12">
<data encoding="base64" compression="zlib">eJzbyMnAsJEAZhSBYCYkGln+ozAEf4JiQubhw9ulMDEut6C7g1R8XAoT43MLJXYh481QjM0tIIDujoHCclwMDLIkYmQ/ovuZVnbR01+D2S5dOtpFbrqn1Axa+wsAPo29JA==</data>
<data encoding="base64" compression="zlib">
eJybKcvAMJMAZhSBYCYkGln+ozAEf4JiQubhw9ulMDEut6C7g1R8XAoT43MLJXYh49lQjM0tIIDujoHCbHIMDKwkYmQ/ovuZVnbR01+D2S5ROtpFbrqn1Axa+wsAYYS4kA==
</data>
</layer>
<layer name="Objects" width="27" height="12">
<data encoding="base64" compression="zlib">eJylVD1LA0EQHRJWz+72wINAqpD8BJP/YXNop/kFSVDSWFgGsTKNf8E2oIW9cNra6G/QSuydx+64k/sSk4HHW27v9r03N2wWES0M0dwEBlAPKW1c4zisb3i9ZGSsRQnRkw17uQ1a8vy26/hrx/EJf3fJGEdlHexNGRPGzL8D/yPmvEP0uu/eO2L947ic685rtXfX/UjBi/goFvyiZ/dpPVZ7zfuPjCsTvIiPKi+H7H8Y/Q/oA/JmnvWZ0oeFKffolPnblvHGaCf1EK3nQs6XQmaZMRTWVVpNOloLfNCQHXXGec5jx39p2Va9Vu7P6/E3A+sYEB8618WWuX7nIHWewLnKLDOIut5Sqzhrcq7W0n1smuk6vHutvl3vX9+jam4A/T9biYPxQF8wk2Cjnuv/Jf2THoLlLvrgO+KzE/L9AGmkhk4=</data>
<data encoding="base64" compression="zlib">
eJzbL8fA8FGegeGBPIIGYRCQl2MgGyQLINiTgewpQLwfaF4G0Gw9eYScIZJdMPGZMhD6MxuEPgmUewnEp7G4ByR3C4hvAvFtqBqQ++cD6ZOSDAw2ChB1kUD7owQw/bUKahczO6p7YADkFpg70IEeNMzk5HDj2bL45ZWB+LM8wi0wd2BzSxDQ/fPkSMOgcAD5dz+URjYTFg4f5THDKAlIx8pjYkcgzsaDYXYZofnTGM3PD5Dc8QCLPbEE7EG2C0TPxeN3ECgF+qdMAEITskuQCbddhlDzlAQZGFQFITQIw9yB7K+nFPoLng7kIG4yhNq/H8lfsDzzlUK70NMazFxku5DDEV+axoWdoHapCKKGnwoUY0s3cmjxmSUPwblQDAoXRyidiySOHF+w8IOFIYiGlUVvgGXEW0mE/wCJ/3/m
</data>
</layer>
<layer name="Above" width="27" height="12">
<data encoding="base64" compression="zlib">eJxjYEAFlgIMDFYCCD4jBwNWwAQVf8iOKfcIixgM7JREsD2B9ngJ4FYLA4fFcLuFCYf7yAWXxAi7Az2MaAFg7iA2jIYiSAX6K00AQiODdAL+zaBieJQPg7BNgYbjcAF3gGXEXUkETQ/wBmjPOyAGAIZEEno=</data>
<data encoding="base64" compression="zlib">
eJxjYEAFlgIMDFYCCD4jBwNWwAQVf8iOKfcIixgM7JREsD2B9ngJ4FYLA9pyuN3ChMN95AIrOcLuQA8jWgCYO4gNo6EIUoH+ShOA0MggnYB/M6gYHuXDIGxToOE4XMAdYBlxVxJB0wO8AdrzDogBpR0QOg==
</data>
</layer>
<layer name="Walkable" width="27" height="12">
<data encoding="base64" compression="zlib">eJwz5GJgMMSCkQE2eUowPkAruwj5C8bH5xZc7qUUEHIHLveQEgb43Imshhg3EOMfUtSQGobY9BIb/9jiGJ/5+OwlFM6UpA187iTFzeTYRcgdlNpFatmAT55YOWIxAOmsIEU=</data>
<data encoding="base64" compression="zlib">
eJyTlGNgkMSCkQE2eUowPkAruwj5C8bH5xZc7qUUEHIHLveQEgb43Imshhg3EOMfUtSQGobY9BIb/9jiGJ/5+OwlFM6UpA187iTFzeTYRcgdlNpFatmAT55YOWIxAJIiHhU=
</data>
</layer>
<layer name="Above_replace" width="27" height="12" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -193,7 +193,9 @@
<image source="../drawable/map_ratdom.png" width="576" height="192"/>
</tileset>
<layer id="1" name="Ground" width="15" height="30">
<data encoding="base64" compression="zlib">eJxTkGNgMAbidUykY3L1UYrd5BAYxI+Qw41B8sgAWW8kEGcBsREbJgaJh0PNQNcL0pcNxDV4cCaafmR9Pzgh+BwWDJND1u+Opo+QXph+V6jeH5yk6QVhXHqJwa5Qv5Ki5z8QM3BB9KL7lRS9pLqVH6hPgEy9ILx4gPTCwnk9E3a5SjEGhiogrhYjXW8nUE8XEHeToXcmUM8sIJ5Nhl5K/EuM3nVk6kUue8jVR4p+fGXfHDx4IMri4YIBbhtc/g==</data>
<data encoding="base64" compression="zlib">
eJzjkWdgkAfidUykY3L1UYrd5BAYxI+Qw41B8sgAWW8kEGcBsREbJgaJh0PNQNcL0pcNxDV4cCaafmR9Pzgh+BwWDJND1u+Opo+QXph+V6jeH5yk6QVhXHqJwa5Qv5Ki5z8QM3BB9KL7lRS9pLqVH6hPgEy9ILx4gPTCwnk9E3a5SjEGhiogrhYjXW8nUE8XEHeToXcmUM8sIJ5Nhl5K/EuM3nVk6kUue8jVR4p+fGXfHDx4IMri4YIB4fJcxQ==
</data>
</layer>
<layer id="2" name="Objects" width="15" height="30">
<data encoding="base64" compression="zlib">

View File

@@ -194,7 +194,9 @@
</data>
</layer>
<layer id="3" name="Above" width="10" height="8">
<data encoding="base64" compression="zlib">eJxjYEAFnWwMOMFhMSAhy8AgJYAmIYupTgBNDATQxcDmEQGwqdvHwsCwH4id+AmbF8iPyr9EpL3EAAD5twip</data>
<data encoding="base64" compression="zlib">
eJxjYEAFnWwMOMFhMSAhy8DAJIcmIYupTgBNDATQxcDmEQGwqdvHwsCwH4id+AmbF8iPyr9EpL3EAADvMQif
</data>
</layer>
<layer id="4" name="Walkable" width="10" height="8" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -189,10 +189,14 @@
</data>
</layer>
<layer id="2" name="Objects" width="12" height="8">
<data encoding="base64" compression="zlib">eJxjYKAMzGQjTt0jfuLVfwSq/QTEyQIMDCuB6i+KMTAcYoXQ1kB5GxLc5w3EPmhi7iwMDE0sJBgC1YMLLGaBuI0cAAAbbQug</data>
<data encoding="base64" compression="zlib">
eJxjYKAMzGQjTt0pWeLV3wSqvQXEyQIMDCuB6i+KMTAcYoXQ1kB5GxLc5w3EPmhi7iwMDE0sJBgC1YMLLGaBuI0cAAD9/AuC
</data>
</layer>
<layer id="3" name="Above" width="12" height="8">
<data encoding="base64" compression="zlib">eJxjYEAFnWwMBIGQAAODBBAzyqKK/+ODiPHzo4o/BPIfALEgkvpNrBBaEM0MEDgsRtgNyGqIUX+JRPW49FIbAABtdQpm</data>
<data encoding="base64" compression="zlib">
eJxjYEAFnWwMBMEvWSAhx8DAKIsq/o8PIsbPjyp+Eih2AogFkdRvYoXQgmhmgMBhMcJuQFZDjPpLJKrHpZfaAACIMQs9
</data>
</layer>
<layer id="9" name="Top" width="12" height="8">
<data encoding="base64" compression="zlib">

View File

@@ -205,13 +205,19 @@
</data>
</layer>
<layer name="Objects" width="14" height="8">
<data encoding="base64" compression="zlib">eJxjYCAfPJRhYLjKx8DwAEqDgCY/hEYWB6lDBh+AfGZBCP1UgIGhioWBoRqIa4D4mQCqPDoQBopfFGNg+ApU1wVU3w3EPUD8TQAiDpIHgXBW3O5+xI/ApIBP/Ag8WAAAkJwbdw==</data>
<data encoding="base64" compression="zlib">
eJxjYCAfPJRnYLAF4gdQGgQmQmlk8YfyqPo+APnZchDaF0g/kmVgeAzET4DYTw5VHh1UA8V3AnEsEH8Cqv8MxF+AOA4qDpIHgXBW3O5+xI/ApIBP/Ag8WAAAMMUcfQ==
</data>
</layer>
<layer name="Above" width="14" height="8">
<data encoding="base64" compression="zlib">eJxjYCAfHBYbuvom89POvktk6iMHAABzrAXI</data>
<data encoding="base64" compression="zlib">
eJxjYCAfrJYbuvom89POvl1k6iMHAAAWfAVo
</data>
</layer>
<layer name="Walkable" width="14" height="8" visible="0">
<data encoding="base64" compression="zlib">eJwzFGRgMBwiGASQaWLl0QE+OWR5aukjBIjxMy4MAE9vE9s=</data>
<data encoding="base64" compression="zlib">
eJybKcfAMHOIYBBApomVRwf45JDlqaWPECDGz7gwAFKyNww=
</data>
</layer>
<objectgroup name="Mapevents">
<object name="door" type="mapchange" x="192" y="224" width="32" height="32">

View File

@@ -199,16 +199,24 @@
</data>
</layer>
<layer name="Objects" width="14" height="8">
<data encoding="base64" compression="zlib">eJxjYBg4wIRH7hE/A8NDfggNA0JoNDJYxgahPwHVf+SH0DCghEYfZ0fVe4gFO9sISpvi0HcJqPYpC4INA05Q2hVKX0fTNw9J7QIWBooAAKPsD7o=</data>
<data encoding="base64" compression="zlib">
eJxjYBg4wIRH7pQsA8NJWQgNA0JoNDJYxgahbwHV35SF0DCghEYfZ0fVqyWPnW0EpU1x6LMCqvWVR7BhwAlKu0Lp62j62JDUcsgzUAQAtTkMEw==
</data>
</layer>
<layer name="Above" width="14" height="8">
<data encoding="base64" compression="zlib">eJxjYCAfHBaD0AqyEPotHwPDOz5UNRICCHl0fdjANDZU/kl+4vQR405kcJkIs7DpQxazZ0Gw45HYl7DowyZGDQAALU8Mgw==</data>
<data encoding="base64" compression="zlib">
eJxjYCAfaMtBaAVZCP2Wj4HhHR+aIjmEPLo+bGAaGyp/I5JefPrwAWz6rIkwC5s+ZLHlSOzjSGwrLPqwiVEDAABbcwhj
</data>
</layer>
<layer name="Top" width="14" height="8">
<data encoding="base64" compression="zlib">eJxjYBic4Cz/QLtgaAAAACAA3Q==</data>
<data encoding="base64" compression="zlib">
eJxjYBicYKvsQLtgaAAA9HMA0w==
</data>
</layer>
<layer name="Walkable" width="14" height="8" visible="0">
<data encoding="base64" compression="zlib">eJwzFGBgMBwiGB+AyROjjxizkPWi09jMoZZ92NyOTx4A7cISyw==</data>
<data encoding="base64" compression="zlib">
eJyTlGNgkBwiGB+AyROjjxizkPWi09jMoZZ92NyOTx4A/8EP5w==
</data>
</layer>
<objectgroup name="Mapevents">
<object name="door" type="mapchange" x="192" y="224" width="32" height="32">

View File

@@ -189,10 +189,14 @@
</data>
</layer>
<layer id="2" name="Objects" width="8" height="8">
<data encoding="base64" compression="zlib">eJxjYBgYsIyNNPWf+FExtQAApXUEsQ==</data>
<data encoding="base64" compression="zlib">
eJxjYBgYsIyNNPW3ZFExtQAAmG0EiQ==
</data>
</layer>
<layer id="3" name="Above" width="8" height="8">
<data encoding="base64" compression="zlib">eJxjYCACyEIoKQEE34gfIS0gi6ocxJ/GhuAfFsNvPEj+ET8qRpcHgRCgeCg/pv5LBMzHBwCJ6Qma</data>
<data encoding="base64" compression="zlib">
eJxjYCACyEIoJjkE34gfIS0gi6ocxJ/GhuAfFsNvPEj+lCwqRpcHgRCgnaH8mPovETAfHwAAb4sJaA==
</data>
</layer>
<layer id="9" name="Top" width="8" height="8">
<data encoding="base64" compression="zlib">

View File

@@ -197,13 +197,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="30" height="26">
<data encoding="base64" compression="zlib">eJyNVsFq1FAUHd7OXZOCnamfoIhLu3YtMnRRNyJ1YxlwL4K/0f5C/8GVupQJWY20FMQsrC0zzNClK3PIPeTk5s50Djxe8vLePfec3PeS5WgwWNXtpm630i9tHOD1Xd60eX29kDm8X9cDWKdx0F9mbavypgduJA+MFRbDQ9dzfpV3cy+MD+OcM5fcOFbWbVzPebbf52G8ctTmpxwam9B7XF9k7ZrjvLn3awDmVZh29VAReeJ9B4dqVD6NC12zrJ878vRzvSe+XqhrNerrK5xv/rn30ddXYTFV33XWvDfWz8L5xhiRX1hHjQrvl9bNwmqMONobDB4P+z5gTun2wFxijfOuxqf73TpG/89iR+3JsPWUe2BsdbUNdH/xGlpeW4vwJTX977zR9LVu34I65bU/C3SPKie1MP46TFJ7bkQ1qX4rd2m1crTX94/gOz2RHCZ2/Sm1dRXtIb8XEGtmtRlxIe6x0/oxNb6SD3iQ4tpdBrWp+pRv4nh+ZvH9i9Qdi/ahniWbvFQNU9PF+K9cPodyD094xpaimT56LsSmvkq8Q/7T1I3/Vvyt3J6fOU/4Xg9qjWcuX+hAbOp7J89f2jPG815HXMp3Yd9B8J6nlhsaD6UWFdD0JrU+E4gDfuY3sv6XW1/ZGYj+fc37XLi/P+zO85owNnXxIygn3yvj0Q/PrfoiTGUO41+tOfuusu5Zod8TflPIfeq0fxAe5Or9uw/+TCzsPNIzcGe34Qao/XNquK63PM+Bv8FcfzZdyhz1XLVHPnIs392cg/536bfXn5XgPhF+4FRyiHC74f0q8A8XfR+i/9KV5cNcmIPPgxx/HNfCvt0Rfmz57rDv1QfgPi/0fzr6f0dO+hzw95z7aLh9+w9ICY1g</data>
<data encoding="base64" compression="zlib">
eJyNVj1v1EAUPG1Hhx0pORRd/gD8AKipETqlSBqEkoboJHqExN8IfwH4AZYlSkp0RdB9JYqEcJGglJRUePAbefz87nIjrdZer9+8Gb/d9XI0GKzqdlG3H9IvbRzg9Z+8abP6ei5zeL+uB/CexkF/lbWtypseuJA8MFZYDA99n/OrvJt7YXwY55yZ5Maxsm7jes7woM/DeOWozU85NDah97i+zNp3TvLm3r8DMK/CtKuHisgT7zs4VKPyaVzoWmT93JGnn+s98fVCXatRX1/hfPPPvY++vgqLqfpus+a7sX7mzjfGiPzCe9So8H5p3cytxoijvcHg8bDvA+aUbg3MJNY472rcPejWMfq/FjtqT4atp1wDY6urbaDri9fQcmwtwtfU9L/yRtPnun0J6pTXfi/QNaqc1ML46zBJ7b4R1aT6rdyl1crRXt8/gt/0THKY2PX71NZVtIb8WkCshdVmxIW4J07ru9T4Sj7gQYprdxnUpupTvonjWWbx/fPUHYvWoe4lm7xUDVPTxfgvXT6Hcg9PuMeWopk+ei7Epr5KvEP+09SN/1r8rdyaXzhP+F2f1Ro/unyhA7Gp71Sev7BnjOe9jriU79LOQfB+Si03NB5KLSqg6VVqfSb+n4NZm98j63+69yvbA9G/qXmfCve33e48rwljUxc/gnLyuzIe/fDcqi/CVOYw/vWave866+4Vep7wTCH3udP+VniQq/fvPvg9sbD9SPfAhzsNN0DtH1LDdbvlfg78Dub6velK5qjnqj3ykWP5zuYc9L9Lz16/V4L7TPiBc8khwt2G76vAP1x0PkT/pSvLh7kwB58HOW4c19zO7gjft/x2WPfqA3CfF/o/Hf2/Iyd9Dvh7zt0fbt/+AXPuegA=
</data>
</layer>
<layer id="4" name="Above" width="30" height="26">
<data encoding="base64" compression="zlib">eJy1lmFqwzAMhcdOsHUQcH90u8AOuSNtByiB3CCFQUZD+7chY1dYTCz69vpsJ20mMG4ayZ8ky1aO7i4qjRvHV9DZJnTRxvQPw3wUtqazD6MFThn0OsGy9UzH2yCD+fzcCL+UjRfzy/y2Z5NOxMW2aIMxIg91SlqL/WIfMBbTxdgaemeyFXocv9pHzEnjtD8m9r/p2BpTaoh94LmLcLFeMb6SfN2LnJj+61qzOVa0P82I6zuRZ/7t4+zdX5uTO9ferhh9eh/Gh6gnPF84x5i8vhLPrIpzblUNYL6RzbHH1ldSBW4r/OYa60U951hVhqtq9xA503NYOS6fQ74vc7wYK8e1vbI7qc/kk3nXclFi94vK5RLc1H0WW2/JeFPcz8fluHVx2Wum+HALtw7/Y35Td+pcbp3JJfcjf5bxOyJ25ylujqWE+/RUibHun9J2+N2FvZfvyv+Ul7U+U9yTzJe3h+tZLfRuJRvx7seN41Yx/3F/bfY+4XvW92K6OKbWCfqvvjs5Pn62fs/z82rYv9Ul7xeC3DHb</data>
<data encoding="base64" compression="zlib">
eJy1lk1OwzAQhSMWiCUUkZ0LV+UYcIAq1whp1G5rAlyHWvGoj9dnO2nDSJbzM+NvZjIeZ++qpLRuHB9RZ5PRRRvT3x3nvbA1nW0cPXCaqOcFy9YznWCDDObzfSv8UjZBzC/z2+5NvIiLbdEGY0Qe6jS0FvvFPmAspouxtfTOZCP0OH71HTEnrdP+mNhz07E1ptQQ+8CzT3CxXjG+hnzdipyY/tNaszlWtD/MiOsrk2e+DnEO7q/NwZ1q77MefXo7jndRT7i/cE4xeX0lgdnVp9yqGsB8I5tjT62vpIvcXvjNNTaIei6xugJX1e4usafnsEpc3ofcL0u8FKvEtW9lPWko5JN5l3JRUv1F5XIJbq6fpdZbMt4c9/thOa6vz8+aKT5cw/XxOeY311Pncn0hl3wehb2M/xGpnqe4JZYSPqenSop185i3w/8uPHu5V/6n3K31nuIzyXx5vb+c1cPZreRWvPtx47hWzH/8vjYHn/A96wcxXRxT6wT9V/+dHB/f23nP8/Oqql5W57xfM7cdYw==
</data>
</layer>
<layer id="5" name="Top" width="30" height="26">
<data encoding="base64" compression="zlib">eJxjYMAPbkkSUEAhuIvDfAUp4vTT2n0jHcjhiQdahr0uHnvvUMFeXOlusICbktQJX2z+pJff0ePpAJ3svUnHuH1A53QEs+8Dje1Fjyta2zcKRi7YJwnBAwmGYzsCX91NS4Cv7sYF7kvSvyylJrhPwO3o8uh8UJ0Fw/QGL4F2viLSXgC1vR62</data>
<data encoding="base64" compression="zlib">
eJxjYMAPDskSUEAhOIrDfA454vTT2n0jHbDhiQdahr0oHnuPUMFeXOlusICDstQJX2z+pJff0eNpBZ3sPUjHuD1B53QEs+8Gje1Fjyta2zcKRi5YJgvBAwmGYzsCX91NS4Cv7sYFjsvSvyylJjhOwO3o8uh8UJ0Fw/QGF4F2XiLSXgCTzRvm
</data>
</layer>
<layer id="6" name="Walkable" width="30" height="26">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="30" height="20">
<data encoding="base64" compression="zlib">eJylVktqwzAQDb2Bs5PXpcuSq/QIOWrbVUAIQ1cJ9AANDvURqsF66OUxUgwdEIo+8+bNT/Fl2O0ueXyGdTbB/JP3rqHOcx63PN7zOO7rGjpv+3t9yPBU9zEM44Mwp4JzpfWx4J0LHu7wOhbenr7Jb56XUO3ZGfYwmyTy0/Bw5uE+0odPWBvfpeBib6Jzxevx6ukzb89f8Pqm38q1x4vzrfrMmXOdCi/cWxz8Hm4q8fP0E9mDsC7mw3jvXwx9Xh4HnHkyh1qHs+SL13bHesHDRZ1NkkdwxRn2X8f1txdHXQPb+hP+e3y1Fti/m9wzLNQj1x/ucC2oKD+OB8T8Qw1xbcG+clYx/VRyz8L8oui13pC5E1O2p9LixvZavY59xF37KwWfL+ra+NjgugLPXq/Hshed2MYOX+4l5XUYt/U68hElvrDBfdyqeeXFMfF6Hfj2xnA9bOHbiyP8ePSGvFDdIGf/fTOxx7lhGyycd7bJfC3u/A614tjqEfTxLOfaw8xlSxy5f7x3B2fP4/qfh9rADF4mX6F+V5zCOvR7iGvkPNTvDo0vcA3zD5p6yb4=</data>
<data encoding="base64" compression="zlib">
eJylVktqwzAQNV2XgrMo6UK+U4+Q47W7ghCGLksP0OBQJzdoT1EN1kMvj7Fi6MCg6DNvnuaj+NJ33SXrx9MymmD8yWu/Wb9C1x2zTllPWV+yHnZ1Dpvn3bU9pL+r61DDeCXMseAcaX4oeOeChzM8j2HB8+xNvvM4h+rP9rCG0SSFek/Dw56He8sed8Lc+M4FF2sj7Stei1fLnnl79wWvT/qtXFu8ON9qz5w516nwwrnZwW/hphI/zz6RPwjbYtwP1/eLoc3L44A9T6ZQ63CSfPHczlgveLios1HyCK7Yw/rjsPz24qhzYFt/4v4eX60Fvt9JzhkW6pHrD2e4FlSUH8cDYvdDDXFtwb9yVjH7VHLPwvyi2K29IVMjpuxPZY0b+1vrdawj7tpfKfh8UdfGx5TrCjxbvR7LWnRiGxt8uZeU137Y1uvIR5T4wgf38VrNKy+OidfrwLc3huthC99WHHGPW2/IA9UNcvbfNxNrnBv2wcJ5Z5/M1+LO79BaHNd6BH08yb72MHPZEkfuH+/dwd79sPznoTYwgpfJe6jfFW9hUf0e4ho59/W7Q+MLXMP8AyU8qMY=
</data>
</layer>
<layer id="4" name="Above" width="30" height="20">
<data encoding="base64" compression="zlib">eJylVVtOAzEM7DWyH6gX6OGhX0jRqnCLtovoLwJUjoCtZtRh1vGuhCUrj43tycT2vpTN5tV0Mn0zPZgeTU+0Vjk0G17Xcp9H9u82XkwfTZ/aN+xhPJt+kT3bRX6X7HEn9ndpI/Y+TD/bXP1luDL7pfsClwvmijXDldkzBpaRzuPMUfxnfkfZZ/sxiMe2GK9kg5zJ/Gb2kUzlnoeTnOV1lZiKC3nM78hYOfd2w23OPH7LW2DNtYT7R3ijvGW8fA6CPc1vrB+GOV+KT9/aZTfMz7sgvmJ2cT4Rz+3d31biM75a/n7r9RDO3YhTxau8AdM1iNerdewz71xfY4nxgkPH46p55XtZrdfmswq3LjXBy/dVXNthXa1XwsD8Zni1/ygu5iSqdfj/kXz4b88EX70egpzYU0y8WYZ3DS7sRT1L85TfnX0xXn+/pZ7Jvno1Mgl2rWHGsoZHrp+o7+Abc4w7jGVe/5DnctNIop7Bdd3jF/j0HfkM8xT9t3ujxnL5BV8Bo+E=</data>
<data encoding="base64" compression="zlib">
eJylVdtqwzAMzdPoD/ShD85/r30qGDP2F+lS2texje5zZtEcenoiK4EJhG3Fko51y7DrulPlMXXdufJb5aHyic5KJntPz+ecHntP/1LXa+XXyvvpG2RYPyp/kz7reXaX9PEmtnedVsg+K39Ne7UX4Yr0l94LXEbYK9YIV6TPGJgK3cedQexHdovIWb84/lgX6410UDOR3UjfozE96nCUu3zO4lNxoY45j4yVa2/b3/ccxx/JBc7cS3i/h9erW8bL90CQaX3j/NLP46X4NNdG235+3wj+FbORxRP+TN/sbcQ/48vp+VtrhnDtejFVvBo3YLo5/lq9DjnHnfurJB8vYmh4jLWuTBb1ep5sZomtUQ7w8nsV16Zf1+uZMHB8I7w6fxQXx8Trddj/lXr478xEvFozBDVxIJ/IWYR3DS7IvJmldcp5Z1uM1/K3NDPZVqtHRsGuPcxY1sSR+8ebO/jGMcYbSpr3P+iY7uyRNzO4r1vxBT7NI9/hOHn/7daqvoz+ABZJgC0=
</data>
</layer>
<layer id="5" name="Top" width="30" height="20">
<data encoding="base64" compression="zlib">eJzllVEKwkAMRHuN+iFeQDy7HkC8hqB4lRowEEJ2MtnQLx/0o8smnZ0k2+u6LLfv43kFaxWq8c/f/nsSN8rLxnseyf4sbxY/y155hdOhF/8B2o4g9yX5LsoroNqeg9zvFb8zeT3ofIrvUXYWRvqE6Hwe71/mp9KZdaQ5wvpn9UW+Il1VzSP/7DpzhyBPZ32cnfXunckitbH1ye6Pro+K1Ibpe4Xxsfp/UNhZiqjOiCXTu0c/MnRr+y9suMMxeA==</data>
<data encoding="base64" compression="zlib">
eJzllUEKg0AMRV1JLyDShT1+6bbeoNDitdqAgRAzP8kEV33gwmES//wk4/M6DOvv0byX41qGbPxr33934lp5o/Gah7Pfy+vF93JWXuJyq8VvQNsIcs/Od1FeAtV2MnJ/FvweyatB52N0j0ZnoaWPsM6n0f55fjKVWUeaLaR/Up/lK9KV1dzyT65H7hDkaa+PvbNevTOjUG1kfbz7o+ojQ7WJ9D0T8TH7f2Cis2SRnRGJp/eMfoxQre2/8AUuECyM
</data>
</layer>
<layer id="6" name="Walkable" width="30" height="20" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -195,13 +195,19 @@
</data>
</layer>
<layer name="Objects" width="34" height="10">
<data encoding="base64" compression="zlib">eJyNk00KhDAMhXuFcVcPIXP/M0jpdly6Uxwsc4Ix2OBHTMGANKYvPy9Jf10ISwxhP76C83t8Wz2XqqsQv0LfoCtuxX+u94pZ4E+85t3j3UahzeKexrK2sWGfu6vud39iErjwfnqdXNkvG2tDPZaLyNz59aqegM0ON/vPPOx7AcbWMAJrfTSeN2/h7+WZMAvmZZ6C/CJDf3G13DROauwH87T6wl3WudodU59ccwlOfTJiCe8x3mfL3nDvhVtr/1i/7ZftB+cvNXg+g8PtE+82jz/7xn6xRr1PtQbPt1R++m7sfcvOPC0M+2b7J2LfpNp4Wl0lI76c8jZb8gejYwJw</data>
<data encoding="base64" compression="zlib">
eJyNk80NgzAMhbNCOaBewv4DoCjXdgMQiKhHRugExSIWn4wj1RKKcZ5/nu18uxCmGMJ2fAXnenxLPaeqqxA/Q1+gK27Gf673ipngT7zm3eLdRqHN4v6NZW1jw753V93P4cQkcOH953FyZb9srAX1WC4ie+fXq3oCNjvc7D/zsO8FGFvDCKz10XjevIW/l+eNWTAv8xTkF+mHi6vlpnFSYz+Yp9UX7rLO1e6Y+uSaS3DqkxFLeI/xPlv2hnsv3Fr7x/ptv2w/OH+pwfPpHW6veLd5/Nk39os16n2qNXi+pfLTd2PvW3bmaWHYN9s/Efsm1cbT6ioZ8eWUt9mSHyP+7xU=
</data>
</layer>
<layer name="Above" width="34" height="10">
<data encoding="base64" compression="zlib">eJyllEsOwjAMRHMNd8UFev9NVOUIbEGt2i2IKhyBRI3Vh3EFEpYiGn9mxnZLCCFcJIR7OWoP2Xy0Gl+bbyy/Uzk32XJX5Oqz+nPDYs7TwY/i+6vNxbeUc+q2+yC7j/FqCfUe1tg4rrJrmUxeblpGxPR5QG4ClsZ5Jw/vqndtNaPREJHLGuKx5288im95ybOAv1rf7b3a3hRncLRT22rmMjtz4l4zcNhHalw1T7GT4Y7OzDmbBTHdL/cW5VO/nZedB/d/VNN37+/Vr2bnZPekPOpXbflgxlH274b6r47fzrAaczJqo8mjNrUkfu/P5juL70/Atzy2Vt+vpenivrxvhf8Xs6n9B+sFFz7fyw==</data>
<data encoding="base64" compression="zlib">
eJyllN0OgjAMhXfpC3hZnn4hewRvJRi41UjG47iFNXzWEk1sssj6c85pC4YQwlVCeJSj9pTNR6vxpfnG8nsr5y5b7oJcfVZ/bljMWR38KL6/2lR8czmnbrv3svsYr5ZQ72GNjWOQXcvN5OWmZURMn3vkJmBpnHfy8K56l1YzGg0RuawhHnv+xqP4lpc8M/irnbu9V9ub4vSOdmpbzFwmZ07cawYO+0iNq+YpdjLc0Zk5ZzMjpvvl3qJ86rfzsvPg/o9qzt37e/Wr2TnZPSmP+lVbPphxlP27of7B8dsZVmNORm00edSmlsTvfW2+i/j+BHzLY2v1/ZqbLu7L+1b4fzGZ2n+wXgGTzR8=
</data>
</layer>
<layer name="Top" width="34" height="10">
<data encoding="base64" compression="zlib">eJy1VMENgCAMZA15uIH7zyLRwNcXjiBEmjTNUYjgJU2k0B7XSv1iTEjmkh3JzmQe+GrYxTm5RrmQL1b8t8KtQctFemLZq2kaBemSvATEvdp6vtB5J61fiNdP0NrDk7VxDS3elg4thtdR8mz27XEvUJ/+iGnhS59QDPVA1gD9X/SO+Bl657NwDeTisa7ci9eezy8+f+S8CuWb1igXB8qV8QDkOWFq</data>
<data encoding="base64" compression="zlib">
eJy1VEEOgCAM4+QPPMr/vyHRwNUTPkeILFmWMohgkyUy2Eo3md+MCclcsiPZmcwDXw27OCfXKBfyxYr/Vrg1aLlITyx7NU2jIF2Sl4C4F1vPFzrvpPUL8foJWnt4sjauocXb0qHF8DpKntW+Pe4F6tMfMS186ROKoR7IGqD/i94RP0PvfBaugVw81pV78drz+cXnj5xXoXzTGuXiQLkyHpvBWUo=
</data>
</layer>
<layer name="Walkable" width="34" height="10" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="34" height="20">
<data encoding="base64" compression="zlib">eJyNVktuwjAU5Ar1zkjtESquktyAg3bRdlWpQpay65KuQEGgnqB+wqNMJs8OT4og9njeb/xgiJvNKT/X/NzyY3bJnwda+wv39VPZh6X8PhLuLDynsob3VPYZ/56fj/IdeNgxzP3t5d3s52mK1WK5lPPnuMSqGV8nnIgNXIn48G5xIdbddjqLtS4sczEDJ8fp2bXUAjiu6SHO/ZihTmkl51eK1epm50an7tgf8tqv9DIRXmvFXOzrkXyZB2fBNUgdmE9rWsOACxqy/DxjzXaCtb3nvPYS7n1g/zfygTXm8uJif148ioXvQXrGdeM+wfgefcXlvTQNs39PG9jXuiKv3XYek523M7V7xHt8r9mncWjdkItqhTUAbvCoXs0O4idRjp6utZ/aE56ViFF5jL91j1gPqo9bnHqid8lqwPmODveaFjVX9I/vcc28OeXp09M65qd3j/DZhylP9ck5MK/2innNvLkOLtZGauDN+rDUUY13fFCPHD/n18LzmRrO6oO9Y5ifqekRxjOwhkd/1nTO9Ridda+/nqZbeK5XC2exvhXcfmWue3wtPM/gR34vbHagTzwfVY/8/8KbUx4evelDG2c1+IzT/7Kafcf77xBiVZ2odvjRdc/g/x8iV9kd</data>
<data encoding="base64" compression="zlib">
eJyNVktuwjAU5Ar1omJj7hRuwOG6aLuqVCFLOUJXQUFEXXKEnqB+wqNMJs8OT4og9njeb/ygj7vdkJ9bfqb8mF3z55nW/sJjfSj7sJTfR8JdhGcoa3hPZZ/x7/n5KN+Bh93D0t9J3s1+X+ZYLZZrOX+Ja6ya8XXCidjAlYgP7xYXYt0f5rNY68I6FzNwcpye3UotgOOanuPSjxnqlDZyfqVYrW52bnTqjv0+r/1ILxPhtVbMxb6eyZd5cBZcvdSB+bSmNQy4oCHLzzPWbCdY24t57RAefWD/E/nAGnN5cbE/Lx7FwncvPeO6cZ9gfI++4vpemobZv6cN7Gtdkdf+sIzJztuZ2j3iPb7X7NM4tG7IRbXCGgA3eFSvZmfxkyhHT9faT+0Jz0rEqDzG37pHrAfVxxTnnuhdshpwvqPDvaVFzRX943tcM29Oefr0tI756d0jfB7DnKf65ByYV3vFvGbeXAcXayM18GbHsNZRjXd8Uo8cP+fXwvOZGs7qg717WJ6p6RHGM7CGR3+2dM71GJ11r7+eplt4rlcLZ7G+FdxpY657fC08z+Bnfi9sdqBPPB9Vj/z/wptTHh69OYY2zmrwGef/ZTX7jo/fIcSqOlHt8KPrnsH/P7NHt8E=
</data>
</layer>
<layer id="4" name="Above" width="34" height="20">
<data encoding="base64" compression="zlib">eJylVUFqwzAQzDfkQ+kHQt/e9lQoxt9w6mBfk9Y4T6gEGjoej+SEDgjLq9WudndWOoXDoY/jFMcljmscDj9RPof1vI1jjGPIe3k/dJaw3ptwM/rJzpRtnePo6Fz4T4DsufmzB9kt77lIDLCJrwLnGPN+6OFMXzkG+FF0RsY4NlvZQPaemvU5gKvU5jvPNVdsi32V4gVgZ8562Mtxno0/tq25mkWnlDMF9Caj25OsFf8T+YCMbblzaYyKpZI33gd/C/lULiz5/yNsY3wxvIBdPZ/mHnGlPnCxlPoIa4vRZzulvMEuuKJ9xXbwrfUR50t9unoqRiN3Z6/1Ea8D6pNrDaQccLw8h23HxVofsW1Aa6W14HgdPyFjO+Ce6yPNhbtTSneL5m0K23rrvV7ro9I7oDVzeujj4QE+8l0D7L0D99hVnu7xsZRXp380b+HeezEYuauv4/Qefx/hOXhbu9ddP9f0mSP3vBcJ7q51fGR+a0xO3/VO6b14j/PXON4KHEj4pLXSvfAfsP+eco++asOWp3wHcU/zXuYEgHmX11kf9fgFtrCt3A==</data>
<data encoding="base64" compression="zlib">
eJylVUFqwzAQzKn0A6En+d9tT4Vi/A2nDvY1aY3znEqgoePxSE7ogLC8Wu1qd2elUzgc+jhOcVziuMbh8BPlc1jP2zjGOIa8l/dDZwnrvQk3o5/sTNnWOY6OzoX/BMiemz97kN3ynovEAJv4KnCOMe+HHs70lWOAH0VnZIxjs5UNZO+pWZ8DuEptvvNcc8W22FcpXgB25qyHvRzn2fhj25qrWXRKOVNAbzK6Pcla8T+RD8jYljuXxqhYKnnjffC3kE/lwpL/P8I2xhfDC9jV82nuEVfqAxdLqY+wthh9tlPKG+yCK9pXbAffWh9xvtSnq6diNHJ39lof8TqgPrnWQMoBx8tz2HZcrPUR2wa0VloLjtfxEzK2A+65PtJcuDuldLdo3qawrbfe67U+Kr0DWjOnhz4eHuAj3zXA3jtwj13l6R4fS3l1+kfzFu69F4ORu/o6Tu/x9xGeg7e1e931c02fOXLPe5Hg7lrHR+a3xuT0Xe+U3ov3OH+N463AgYRPWivdC/8B++8p9+irNmx5yncQ9zTvZU4AmHd5nfVRj18pkIoA
</data>
</layer>
<layer id="5" name="Top" width="34" height="20">
<data encoding="base64" compression="zlib">eJzNVlsKwjAQzDXqh3gB8f4/4jVaEuwBBD2CKSSwDbNP++FAIaST7WZntklKe7ym5MZa15T6zPVZHOst/BzIp8c8n2J50PHcxnclD+u3KIpjbw+F64k1IlJjayya10Wp0dOZh8Qf39G8bkoeqB6Svh7trXvk9LwGfLZB0kWai3gDxdH6iNYQfZPWzVpvFEfrI1rfX7VCcbQeoIj8UyLw9t0R8ZA20j82G/WnPMm7yI9b3ms7C/K01xXxUS9az4sO5Md3nfsw6zX/enjWM8NzthzhWc4/nJ6Ij7Tx+pzTkItj1dzK+wcs7V7H1R71W79P9TvheL8qzHgl/I4vETVYmg==</data>
<data encoding="base64" compression="zlib">
eJzNVlsKwjAQzJd4AfGrHl+8RkuCPYCgxzGFBLZh9mk/HCiEdLLd7Mw2SWmP15TcWOuaUp+5PotjvYWfA/n0mKdbLA86ntv4ruRh/RZFceztoXA9sUZEamyNRfM6KzV6OvOQ+OM7mtdVyQPVQ9LXo711j5yel4DPNki6SHMRb6A4Wh/RGqJv0rpZ643iaH1E6/urViiO1gMUkX9KBN6+OyIe0kb6x2aj/pQneRf5cct7bWdBnva6Ij7qRet50YH8+K5zH2a95l8Pz3pmeM6WIzzL+YfTE/GRNl6fcxpycayaW3n/gKXd67jao37r96l+JxzvV4UZr4Tf8QWh91BS
</data>
</layer>
<layer id="6" name="Walkable" width="34" height="20" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="34" height="19">
<data encoding="base64" compression="zlib">eJyNVsFtwzAMFLpB/EuH6C7JBhmig3WE9ltDMOBfn/nFcNCgE9SH8IDrhVZNQFAkU+SJR1IppZTLvpTvZdyWAbkuc13GT3dfj7EPvUn0hmWe5exkdlQfNof4jsFvU+i+L/NH/H4Nv2oLcur+2p3D7tY92K3hX/Ug3Ic+/PjZi2BV25yJldhnO6NrP+O+xohVdqdzV1I5do9YoXuT8/TH9dfujncI25PwRMzKQab38nyf6/4Rk4rmQt+IBbnQfQiwwteaHu+kca6BsYUP9+8tX4YEF/xjaHwzPYjHmTO5I5YMl58lD1ezt0XP477G4UFySvHUwEx7mqta89X8qx5iprWha+cQvjTeKrSt+n2sZ9HP9NinlLsWh1nND/Ldewj1xoQnfmPv0vrdwiFz0+PgMXCh7cxHlgMtDnvBgVxBHToulSoxGpM4KS7PgRaHLaFPnlXOlW/1818dZ/2XovdXnpGHWY1Qz7nYkgPn7rFXqE/ti37Wseg753ZaOeDv3xp2jZv6uxknkM993ssQw6054G+o55bbzrjO3iO1eZI3XWuS71/WL3Rvrfd4fu2e8niyt53jreL/Mc3BLDbcOyb/Gdbq9y3u9wtivuYB</data>
<data encoding="base64" compression="zlib">
eJyNVsFtwzAMFLpB/Ogv3SnZIEN0mI7QfmsIBjxFDAcN+swInaA+hAdcL7RqAoIimSJPPJJKKaWc96V8LeO6DMhlmesyfrr7eox96E2iNyzzLGcns6P6sDnEdwx+m0L3fZk/4vdr+FVbkFP31+4cdrfuwW4N/6oH4T704cfPngWr2uZMrMQ+2xld+xn3NUassjvdupLKsXvECt2rnKc/rr93d7xD2J6EJ2JWDjK955f7XPePmFQ0F/pGLMiF7kOAFb7W9HgnjXMNjC18uH9v+TIkuOAfQ+Ob6UE8zpzJHbFkuPwsebiYvS16Hvc1Dg+SU4qnBmba01zVmq/mX/UQM60NXTuH8KXxVqFt1e9jPYt+psc+pdy1OMxqfpDv3kOoNyY88Rt7l9bvFg6Zmx4Hj4ELbWc+shxocdgLDuQK6tBxqVSJ0ZjESXF5DrQ4bAl98qxyrnyrn//qOOu/FL2/8ow8zGqEes7Flhy4dY+9Qn1qX/SzjkXfObfTygF//9awa9zU39U4gXzu816GGG7NAX9DPbfcdsZ19h6pzZO86VqTfP+yfqF7a73H82v3lMeTve0WbxX/j2kOZrHh3jH5z7BWv29xv1/kI8Gt
</data>
</layer>
<layer id="4" name="Above" width="34" height="19">
<data encoding="base64" compression="zlib">eJyVVkluwzAMzDfUP/Tx7dkwfM+lV6U27GvTGPITKiIcdDChhISAYFnmMuJQlD/S6fRZx7WOH3+udWx1sNzqe66jpPt8d/1Mc9hn0oH+6H7nOpY6DtfH+sXjZZ9DL9M3k+K2WFess9jwO6/Dx5fsc/L1V0SxAtPu6/qusS6+PhFm3lek9/52f44drIXszNcQ5AJxvtM/x5pXi9XSw945z6NjVHwlPeJjLq0efoP4h+S3pad5BjYIsER5gy3bzOKHeenpmXDee1wrNp7D3xbwgjy39HhPRd6VQ/6mAt9cS4PHnlNfb0qPZ6PHYXTmJ/quPcQEesqT9o1XuR7EVrHZ9yPwD9/RmY9qoMfhIDjsHCoulpFyFGFmXFENtDjsCWLCljlnvvFk361z3Ou/vH/lmc8Ix5gDvp89x9orOCb3Re05el71ntN+yfG5BqI6bt0nOYi3CSfIIfcy9vNsDayCk2sryi/XvnK9ix/ds55J3H+a6yL5b/WeqL4Yq95TJmda4xqMcqNr14atykD4uM8vwidkkTl4ZlvNtd5Jq+jbsP/BP16ywX4=</data>
<data encoding="base64" compression="zlib">
eJyVVrtuwzAMzE90VP+7nQ3De5auSm3Ya9MY8udURHjo4UIJCQHBsszHiUdR/kin02cd1zp+/LnWsdXBcqvvuY6S7vPd9TPNYZ9JB/qj+53rWOo4XB/rF4+XfQ69TN9MittiXbHOYsPvvA4fX7LPyddfEcUKTLuv67vGuvj6RJh5X5He2/v9OXawFrIzX0OQC8T5Tv8ca14tVksPe+c8j45R8ZX0iI+5tHr4DeIfkt+WnuYZ2CDAEuUNtmwzix/mpadnwnnvca3YeA5/W8AL8tzS4z0VeVcO+ZsKfHMtDR57Tn29KT2ejR6H0Zmf6Lv2EBPoKU/aN17lehBbxWbfj8A/fEdnPqqBHoeD4LBzqLhYRspRhJlxRTXQ4rAniAlb5pz5xpN9t85xr//y/pVnPiMcYw74fvYca6/gmNwXtefoedV7Tvslx+caiOq4dZ/kIN4mnCCH3MvYz7M1sApOrq0ov1z7yvUufnTPeiZx/2mui+S/1Xui+mKsek+ZnGmNazDKja5dG7YqA+HjPr8In5BF5uCZbTXXeietom/D/gf/AEEunDo=
</data>
</layer>
<layer id="5" name="Top" width="34" height="19">
<data encoding="base64" compression="zlib">eJy9llEKwyAMhnsN+9Ab7P4vY+wajo56gMF2hBlmIAuJ+WvHPpDWkMZofqvT9M0jTSZbtZfabrWttd0TbpOU1r8643gs8+eZW2zJs/ZfwkZjSpvOgXMkvDw9+2nGc15Tvx/Zlxnzi9g68ydye78E8SM/vVYRZ+WPaiLyG12nX6PXndibmxXjiB9aaw3qj/ohtdb6Z1i7uRNjrxZ7eHsematVb08DaA1H2Hbsd8/u1cOiVxvG0kB0fhCyHl6dy8G11GeKxBpz5J9jxfE0YK29NaY+G5HxrTieBqy9cFS3nLMVR58RI3EliL7+QU9fBOWXE3Zn4He+G93bt/KuJO9net5F+DNv1eV1Ag==</data>
<data encoding="base64" compression="zlib">
eJy9llEKwyAMhvvUG+zRnn6MXcPRUQ8w2I4zwwxkITF/7dgH0hrSGM1vdZq+eaTJZKv2UtuttrW2e8JtktL6V2ccj3n5PHOLLXnW/kvYaExp0zlwjoSXp2c/LXjOa+r3I/u8YH4RW2f+RG7vlyB+5KfXKuKs/FFNRH6j6/Rr9LoTe3OzYhzxQ2utQf1RP6TWWv8Mazd3YuzVYg9vzyNztertaQCt4Qjbjv3u2b16WPRqw1gaiM4PQtbDq3M5uJb6TJFYY478c6w4ngastbfG1GcjMr4Vx9OAtReO6pZztuLoM2IkrgTR1z/o6Yug/HLC7gz8zneje/tW3pXk/UzPuwh/5g00Emra
</data>
</layer>
<layer id="6" name="Walkable" width="34" height="19" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="30" height="19">
<data encoding="base64" compression="zlib">eJx9lU1OwzAQhS1W3SY7cwjuQm9QCW7QI8DBEHsrglW6zK6oqIgTkNfkKV+mpiNFtuzxvJk3P0kppaFNF/F6yil952Xtm5QO4/cx39dEd7t20pM8Ym952qT0PH8/eTqTTnOXUsnTemjW3zkvuif4JNGbLk/YPteb47h+zXfS2W8mfZ2XZjpXrO+zvvbGibFLfNc3ix3Z9znxfScRrrDEhW05LuvR1yhRh7nhXvi043gZF+0In3bMZcRzvGXW27bTnlwzlv2c1yPyo/seeIwz8kg9nxXoW2KuhCvfugo3Ja9ryHv7EX3YzXZi/pkD1x15frvBS8wb/bkl7D+J7ZJnchW5u/hayTVzGnMfe+jhfs2zpcvX3NVwiCFb5ORWDzAG4ZZc75GaPmsn5nlArzDukpd6tb/CVe9u29u9WAIubQ7tmmvixzqxr5xXn/kaJwrrhP1J7qNv9IH969nIWea3cSW2Y7Mo18x3hzqWOFbOZ/Hs3qzVEmdIrdaZG2LRlvvbPLsGLM7/OV/P9MihY46++L9DLP7L2EeuUc4Yv/9vThRgM99Du8xbrexd82w8116tXig1H2I9Rn4szsHLiPs6f7H+zGOX1zPFvnXw13rmoEcMh6bOm85+R17+AEU7jxk=</data>
<data encoding="base64" compression="zlib">
eJx9lU1OwzAQhS1W3SYLJG+4E71BJbhBjwAHQ+ytCFbpMruioiJOQF6Tp3yZmo4U2bLH82be/CSllIY2XcTrKaf0nZe1b1I6jN/HfF8T3e3aSU/yiL3laZPS8/z95OlMOs1dSiVP66FZf+e86J7gk0Rvujxh+1xvjuP6Nd9JZ7+Z9HVemulcsb7P+tobJ8Yu8V3fLHZk3+fE951EuMISF7bluKxHX6NEHeaGe+HTjuNlXLQjfNoxlxHP8ZZZb9tOe3LNWPZzXo/Ij+574DHOyCP1fFagb4m5Eq586yrclLyuIe/tR/RhN9uJ+WcOXHfk+e0GLzFv9OeWsP8ktkueyVXk7uJrJdfMacx97KH7hzXPli5fc1fDIYZskZNbPcAYhFtyvUdq+qydmOcBvcK4S17q1f4KV727bW/3Ygm4tDm0a66JH+vEvnJefeZrnCisE/YnuY++0Qf2r2cjZ5nfxpXYjs2iXDPfHepY4lg5n8Wze7NWS5whtVpnbohFW+5v8+wasDj/53w90yOHjjn64v8OsfgvYx+5Rjlj/P6/OVGAzXwP7TJvtbJ3zbPxXHu1eqHUfIj1GPmxOAcvI+7r/MX6M49dXs8U+9bBX+uZgx4xHJo6bzr7HXn5AxCojrU=
</data>
</layer>
<layer id="4" name="Above" width="30" height="19">
<data encoding="base64" compression="zlib">eJyFlVFOAzEMRLlGuAOHR/xHEbdYRNX+VkKiR6ARGTF9mQRL1WaTeDwee91LeXqwinfZ+b5/GWef5fd3Kn8+zc60f9yfH+PMcY+xls+bnSmOcBzPOTg+ufX7OpMp1sn2HMO50niHea5ypn7/4UjLdE9nvqYv9ZDOV7sjn7bx83vaS33BWn1bXalNBb7W4pE4tEX9pYn3nex1owv1Zj+tjHjM/xjn79CD+AmHNRVX9tPL86yzNKJ2K76K0bFcE62/Qu8yh6R50sTX7pPiet61zJq47b6hiriOucPiO/Pr+7cyx6FxJqY6kFvSo5vPK9aXT8Z267X2ejO3Znzd9G0mXJ8hqdepa9LHYyv+EXzOZZ7p1JD4PluU166nFb+Vxzl9K/Pcoo+vdzVg7/A7qiPe6rtNHIiZZujK2H/edz5TnKvzTX3jWlO3NDP8f4mcd70uLmnWrGbvD0T2PiE=</data>
<data encoding="base64" compression="zlib">
eJyFlUFqQzEMRHuJLrzp/bele2N6i18akm2g0ByhMfXQyfPYFYTvb1uj0UhfuZSnB6t4l53v+5dx9ll+f6fy59PsTPvH/fkxzhz3GGv5vNmZ4gjH8ZyD45Nbv68zmWKdbM8xnCuNd5jnKmfq9x+OtEz3dOZr+lIP6Xy1O/JpGz+/p73UF6zVt9WV2lTgay0eiUNb1F+aeN/JXje6UG/208qIx/yPcf4OPYifcFhTcWU/Pb/MOksjarfiqxgdyzXR+iv0LnNImidNfO0+Ka7nXcusidvuG6qI65g7LL4zv75/K3McGmdiqgO5JT26+bxifflkbLdea683c2vG103fZsL1GZJ6nbomfTy24h/B51zmmU4Nie+zRXntelrxW3mc07cyzy36+HpXA/YOv6M64q2+28SBmGmGroz9533nM8W5Ot/UN641dUszw/+XyHnX6+KSZs1q9v4A4XQ9vQ==
</data>
</layer>
<layer id="5" name="Top" width="30" height="19">
<data encoding="base64" compression="zlib">eJxjYCAP3JUkU+MIBg8GKMz2DaO4ukmEXzbR0L9yUrjl7pNoLy6z7gxQfBETtgMNBioPUQpAcY0v7YwkQGo4UCvOdYm0F2bfATqntdF8TzsAADCiDm0=</data>
<data encoding="base64" compression="zlib">
eJxjYCAP3JUkU+MIBg8GKMz2DaO4ukmEXzbR0L9scrjl7pNoLy6z7gxQfBETtgMNBioPUQpAcY0v7YwkQGo4UCvORYm0F2bfATqntdF8TzsAAG0sDfU=
</data>
</layer>
<layer id="6" name="Walkable" width="30" height="19" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -195,13 +195,19 @@
</data>
</layer>
<layer name="Objects" width="30" height="19">
<data encoding="base64" compression="zlib">eJylVUFqxDAMND312HVPzqV9wbLP6LWFvromBPbWY3rKskvLvqAekiETRU4XKhCJZVsjyWP5lEL4Knouein6XfSnKOQphvAcZ1tb9BrXazm2XzvP8cv96GsoeirayT9kkHHNF+dp76a9WwJcCH1AWtlnMXd3IeSNGPLGXsUALvYdGn/e5tLH2aZ14fxbHMfMGes/d0ufmq/GqP70DLJje43rXJGDFWCrX+CCJ1rb/wowoFaUr8BlvN1UY473zbh2qPDUOw8rW3U+CqbGpP+QbuKBxeA65mj3WUE+wFXe2LtRy8PyzZuzdWS+GJNXrYPVil+105bF1sdtbI3/I833SH3asyCO5sY1xNN+puL1EuIC7yh2r8a8IzjDNtXrz3hq9wNnm9PMK8al/vQ8kBf3ePlT9D5750r/PN+Lg31O6/tu89I59WvPV+sIYZ05//Do14d1Vp7ZOGt9joLeru+R9rle+qvl1y1yaJbcJJ/2zTJn4Hrx6l3qjM3GdWt8tk8qN5SHOf3dN7LJTd9xj1/8AlfvIbjN9wTc1DfIix28U47X1rCH8vtecH8BY3psGA==</data>
<data encoding="base64" compression="zlib">
eJylVUFqxDAMND312HVh2YvTPqfXFvrSmhDYJ/SUZZeWHvOEfUE9JEMmipwuVCASy7ZGksfyKYXwWfRc9FL0q+h3UchTDOE5zra26DWu13Jsv3ae45f70Vdf9FS0k39IL+OaL87T3k17twS4EPqAtLLPYu7uQsgbMeSNvYoBXOw7NP68zWWIs03rwvm3OI6ZM9b/7JY+NV+NUf3pGWTH9hrXuSIHK8BWv8AFT7S2/xVgQK0oX4HLeLupxhzvm3FtX+Gpdx5Wtup8FEyNSf8h3cQDi8F1zNHus4J8gKu8sXejloflmzdn68h8MSavWgerFb9qpy2LbYjb2Br/R5rvkfq0Z0EczY1riKf9TMXrJcQF3lHsXo15R3CGbarXn/HU7gfONqeZV4xL/el5IC/u8fKn6H32zpX+eb4XB/uc1vfd5qVz6teer9YRwjpz/uHRrw/rrDyzcdb6HAW9Xd8j7XOD9FfLr1vk0Cy5ST7tm2XOwPXi1bvUGZuN69b4bJ9UbigPc/q7b2STm77jHr/4Ba7eQ3Cb7wm4qW+QFzt4pxyvrWEP5fe94P4CbA1RYA==
</data>
</layer>
<layer name="Above" width="30" height="19">
<data encoding="base64" compression="zlib">eJyVlV2KwzAMhHsN56kXCL0/BJNrZElpXltS6BHWYiP2yyBlswIT/8j2aDRWarlcpta+WhvRN5swnlu7t/ZobcHY131+3PaeMT/DrGKfnfkq+/UB64phkL3EyzPMbN+1i9c1Fs6RF66bacx6p9ok51WMo1hovm4xZGfrHnL7+kd+zNbm/z6xRzlxDkZwbK3vfnzpQ21F+cjsiOdZ8uj9zzY2XLfu9w6b91gZh8al1m95oG7egn8qOY/ZvOqYPKpRP/6twON38K4BvopB72YeXH9L2b8XxfYMcKqP46vie8S56sHzqbGRm8wcT+bTyxt7HOTRa4Dt0VoV8c99ykuke3KyJrnRuKg71nbNb3TnGuByU54dG99AVDfPxBbV9IgjjyvSmdu122uTOVIsEV72x2Qu+8+YfQJsqm32qcOh5PUv+lcwv8SVYbyLHm/Qup979C6HEr/Tv+rlUmKu9N87A1+kK6/v9GHN05r0DYdlLyk=</data>
<data encoding="base64" compression="zlib">
eJyVlV2OgzAMhPvYC6A+hdOjiGuwoiqvrajU42ysxdqPkc2yliLy4yTj8cTUcrlMrX21NqJvNmE8t3Zv7dHagrGv+/y47T1jfoZZxT4781X26wPWFcMge4mXZ5jZvmsfr2ssnCMvXDfTmPVOtUnOqxhHsdB83WLIztY95Pb1j/yYrc3/fWKPcuIcjODYWtf/+NKH2orykdkRz7Pk0fufbWy4bv3vHTbvsTIOjUut2/JA3bwF/1RyHrN51TF5VKN+/FuBx+/gXQN8FYPezTy4/payfy+K7RngVB/HV8X3iHPVg+dTYyM3mTmezKeTN/Y4yKPXANujtSrin/uUl0j35GRNcqNxUXes7Zrf6M41wOWmPDs2voGobp6JLarpEUceV6Qzt2u/1yZzpFgivOyPyVz2nzH7BNhU2+xTh0PJ61/0r2B+iSvDeBc93qB1P/foXQ4lfqd/1culxFzpv3cGvkhXXt/pw5qnNekbFkwVsQ==
</data>
</layer>
<layer name="Top" width="30" height="19">
<data encoding="base64" compression="zlib">eJzFVUEOwjAM2ze6A+IDiP9f0L7BtIk+ZUwQEYxDk6oFX6alaRzHXTcM3zGnQkInMN7lHlv/1E9riL7DyNcvoLO19hPhPRq9RGDpWaD3rN7P43u8RqvWMz33shpWbYnfGsyYccxKlzyv6RHfOaO6J2eecCCXXvPC8naH1NRzzMAXhWhkZxVniFp0r7KG869BTp/1GLRu5q21F33FvKhnnlzmq5dD+1AC3mnM1x6oPX8C7Ls1tMfRO/gX/0QPR48+SudqTa/vkUH7vgHRoWLu</data>
<data encoding="base64" compression="zlib">
eJzFVUEOwjAM2wnxAcSpez7aN5g20WeNCSKCcWhSteDLtDSN47jrhuE75lRI6ATGu9xj65/6aQ3Rdxj5+gV0ttZ+IrxHo5cILD0L9J7V+3l8j9do1Xqm515Ww6ot8VuDGTOOWemS5zU94jtnVPfkzBMO5NJrXlje7pCaeo4Z+KIQjeys4gxRi+5V1nD+Ncjpsx6D1s28tfair5gX9cyTy3z1cmgfSsA7jfnaA7XnT4B9t4b2OHoH/+Kf6OHo0UfpXK3p9T0yaN835FNaGg==
</data>
</layer>
<layer name="Walkable" width="30" height="19">
<data encoding="base64" compression="zlib">

View File

@@ -193,16 +193,24 @@
</data>
</layer>
<layer name="Breadcrumb" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">eJxjYMAOFLlwSNAYjNo7/O0lxm6YOnRMifnEyGGTJ8VuYu0l1k/EqsGlj9phiMsOUvThcye5emmph1xAid8otY8cPZToJ8cuSgCpdpKih1jziFVDrbjHl6dxlTEDAQZ73TIc7aa3ffT270CF70DF6SgY/gBfOX5TEqIGRN+SpL6duAAA2uIV/g==</data>
<data encoding="base64" compression="zlib">
eJxjYMAOFLlwSNAYjNo7/O0lxm6YOnRMifnEyGGTJ8VuYu0l1k/EqsGlj9phiMsOUvThcye5emmph1xAid8otY8cPZToJ8cuSgCpdpKih1jziFVDrbjHl6dxlTEDAQZ73TIc7aa3ffT270CF70DF6SgY/gBfOX5QFqIGRB+Spb6duAAAwEYVwg==
</data>
</layer>
<layer name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">eJyNV0FqwzAQ9AdaaG4KlPYFJV/xE/JfI3xtj77FJCTkBfVSD5lOZm0vCNtaaTXanV3J19I0t6mdp3aZ2nX+DnnZNc3r1O7UQob5Cfl5a5pW+kK+y5+O5UjjTpN+pLW78rDn9CF4r+Vhp864oeN5eMdzpLmsZ9uxPvrhj5HWc3aBGeMZZ/hrnJ+qZ38qfoytxc/LsNxIf1vQ45vt97JGlXlf+21YsHcdwzGDrjd7zuS00S+KJ3CrHez9ILqeONIX3x98Z78A8xKewBA86aW/kl3eP2NWroZEPl4IJ/tmSfoEq9pXvcaXpZNvzV3sJVsLErEYds98wDxwUH3Ivgofsx9gK/O78y3mcf7jHbVO97i2N17H1YmshqnNQeqwW6+WPD9cnXBy2D/qGnyH2Dtfqh+1bqggn+psD1hdLeA6BFuuFvH6zEnGm9V9xrxWk7QuduU55wMfMLg46JnrdHhqjcoE+wQ3cJZhjcAUdSPeY0yV9dj/vA+27biQxR7nH/rCPjjF3NccVf5nXHC1FjZcnLO4652GMTguZNzWWGb3gcyPW7jA9RE21CeMf0tOgQvxzLiQ1TVwHOdRS9zb6seMC9n9IbsbZvXV+RHcH8ydlO+zbLej+N3Nfe64klMHySXNIWB1+NF3l7rPtWkpp7LYQ4LH0VxucV92f3Z9a/XUxbGl860r/+856hd3BmyJvVv7bObiv8TlF/chrkux5/O4yn+RinK+lX+EDH8W+/f5Xw4Se/qYvj9nHyOHfwGXim14</data>
<data encoding="base64" compression="zlib">
eJyNV8FtwzAM9AIt0DyKfJR2JY+QHQ3B3y5QIEaCBH16hExQE/Uh18vRNgHBtihRJ/JIydfSNLepnad2mdp1/g552TXN69Tu1ELG+Qn5eWuaVvpCvsqfjuVI406TfqC1u/Kw5/QheK/lYafOuKHjeXjHc6C5rGfbsT764Y+B1nN2gRnjGWf4a5ifqmd/Kn6MrcXPy7DcSH9b0OOb7feyRpV574dtWLB3HcMxg643e87ktNEviidwqx3sfS+6njjSF98ffGe/APMSnsAQPOmlv5Jd3j9jVq6GRD5eCCf7Zkn6BKvaV73Gl6WTb81d7CVbCxKxGHfPfMA8cFB9yL4KH7MfYCvzu/Mt5nH+4x21Tve4tjdex9WJrIapzVHqsFuvljw/XJ1wsj886hp8h9g7X6oftW6oIJ/qbA9YXS3gOgRbrhbx+sxJxpvVfca8VpO0LnblOecDHzC4OOiZ63R4ao3KBPsEN3CWYY3AFHUj3mNMlfXY/7wPtu24kMUe5x/6wj44xdzXHFX+Z1xwtRY2XJyzuOudhjE4LmTc1lhm94HMj1u4wPURNtQnjH9LToEL8cy4kNU1cBznUUvc2+rHjAvZ/SG7G2b11fkR3B/NnZTvs2y3o/jdzX3uuJJTe8klzSFgdfjRd5e6z7VpKaey2EOCx9FcbnFfdn92fWv11MWxpfOtK//vOeoXdwZsib1b+2zm4r/E5Rf3Ia5Lsefz+Fv+i1SU8638I2T4s9iX+V8OEnv6mL4/Zx8jh38BqH0+/A==
</data>
</layer>
<layer name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">eJyNl1FugzAQRLkG+coFqpy/EkK+RtpG8Nu0ETlCsZRRh5ddh5UsArbXs7PjtdN1XXfuu40NeK/9H2v7Wtvl0affo42tv6e1zTZO8+RDz9ru5kvf3bevPWEM57FPOG7AqTHsd9P6vvbcb+PjvAjLbP1zo1/v7r+A7xHz3g4xlgV8K3b5WhCr95UgZhnnnXfyQm4qbvpR7Ef0FctbMZ9X6M55EeYWHmEo+D6aX4/fMVOr4uViOJ2blhWsRd3JGAvz63YN8hTFnq0lOx3+57sehEEaJIfMr/MgLBnvEbd38BlpkzG+is3XierEZLm49tval/l0rqLYIj1GdeIe+PZ94XtUe5brkUfWDXHrPoWzGFZy9Lm23/55L0e1SGPqOgPWivKgd3LzvbafJO+K1+Mb+q0f4ROGKA8az33ofXqeoG/WxShOmetY3CmeEes5/x6H+460kOXe68IZPPrZoPHF5rtlWohqrXxEec7yHlmmhaWPte04hSm7D2Q87tFCxBf16Pj37Cn58PWohawGDf3zeeT6bO0p3vEYW5Yj6kO4GWeLxzHxyxjdL++o0b5u8Xi0vRTtIfmI/EbnD+t4SyOt3FerOq7N/fL80b2L972IK8eY1VPmkXVNfGe8RGfAntw7Nu/j3Msj59H+8m+qz63c+3lMu+EbNb/Ab8RdK/c01/FguuZ/hda945W9P+YVPGkV9x8BDynE</data>
<data encoding="base64" compression="zlib">
eJyNl1FqwzAQRP2ZC5R8OXcvGKNrpG2wf5s2OMepBRk6ftlVvCAcW9Jqdna0Urqu6859t7EB77X/Y21fa7s8+vR7tLH197S22cZpnnzoWdvdfOm7+/a1J4zhPPYJxw04NYb9blrf1577bXycF2GZrX9u9Ovd/RfwPWLe2ynGsoBvxS5fC2L1vhLELOO8805eyE3FTT+K/YC+Ynkr5vMK3TkvwtzCIwwF30fz6/E7ZmpVvFwMp3PTsoK1qDsZY2F+3a5BnqLYs7Vkx9P/fNeDMEiD5JD5dR6EJeM94vYOPiNtMsZXsfk6UZ2YLBfXflv7Mp/OVRRbpMeoTtwD374vfI9qz3I98si6IW7dp3AWw0qOPtf22z/v5agWaUxdZ8BaUR70Tm6+1/aT5F3xenxDv/UjfMIQ5UHjuQ+9T88j9M26GMUpcx2LO8UzYj3n3+Nw35EWstx7XTiDRz8bNL7YfLdMC1GtlY8oz1neI8u0sPSxth2nMGX3gYzHPVqI+KIeHf+ePSUfvh61kNWgoX8+j1yfrT3FOx5jy3JEfQg342zxOCZ+GaP75R012tctHg+2l6I9JB+R3+j8YR1vaaSV+2pVx7W5X54/unfxvhdx5Rizeso8sq6J74yX6AzYk3vH5n2ce3nkPNpf/k31uZV7P49pN3yj5hf4jbhr5Z7mOh5M1/yv0Lp3vLL3x7yCJ63i/gMCrPrV
</data>
</layer>
<layer name="Top" width="30" height="30">
<data encoding="base64" compression="zlib">eJy1VluKwzAQ6zXSj9ILLL0/lLLX2JCS3KA9Qu2PYQchecZOKvBHElujecbrdDptZc1lLWU9y9qLhXAg76s8Pyb9nWFL8Ga09HyPzl3OXMsa8K7kfAaMNxNvxE+nXYY5qUXp6fXd9v8SLhXv0fwiriLPHt6fOchv1veb27eIfvG5vE//79aDett4UINC7e037PNaWlAa1bnIR6aF2UG/zN8/YVfxRsC5Ec2JiMdzqVm0x47B4vAAnivUcas+WM1HNcl6veIGXL3+sfmdxcgZQ1T/FaO+GJ7EN8wbA+5RvYW1YHpNB/u3YJ5beVe9hbWwgX0GjE2rPo/6V1SgJqZR9VR0bi9UT3lk6qU1e4+4R3pYLVfe1uxVOYziyM5Vm1bLUW0ofhXHTO5bvAjW8/Udzmd1dxq9J7C41Hc4nxlaeYw09PTFN3rIc6vYZXpoFKP3jwgf7xyRKw==</data>
<data encoding="base64" compression="zlib">
eJy1VkuuwjAQY4W4AGLVd3qE3jWoitobwHFIFqM3suzMJO2zlEXbxOP5Nut0Om1lzWUtZb3K2ouFcCDvuzw/Jv2dYUvwZrT0fI/OnX+4ljXgXcn5DBhvJt6Ia6ddhjmpRenp9d32/xIuFe/R/CIuIs8e3p85yG/W95vbt4h+8bm8T3/v1oN623hQg0Lt7Q/s81paUBrVuchHpoXZQb/M36ewq3gj4NyI5kTE47nULNpjx2BxeADPBeq4VR+s5qOaZL1ecQOuXv/Y/M5i5Iwhqv+KUV8ML+Ib5o0B96jewlowvaaD/Vswz628q97CWtjAPgPGplWfR/0rKlAT06h6Kjq3F6qnPDL10pq9R9wjPayWK29r9qocRnFk56pNq+WoNhS/imMm9y1eBOv5+g7ns7o7jd4TWFzqO5zPDK08Rhp6+uI/eshzq9hlemgUo/ePCF8h+YOn
</data>
</layer>
<layer name="Walkable" width="30" height="30" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="20" height="30">
<data encoding="base64" compression="zlib">eJyNlk1uwkAMhaPeIOzCIRBX4Qg9aE/QCEXKjiU7oqCgnqCxmFe+vDppLY0mM/5/tgfGpqru8xrLfpvXMK9pXg/c6yz+B3iu+76rfqhrnvtQZOJ8At91yPuslzKKIegMf0GjnanH+GK/7l68Lsl5LfcgfbdFj3eSVzwZNo/iP4t3KrKX+plf7NIn9v+t1ViwDjvkE7sO/km3ZpmriHh7rierO2WCWvM1JVh5jq7XrsRMf5GvY+K+6St4h/2Lp+/R4iMmouN+6esKDGTL6+L5MAcR+4U+dR85qv/Cp9tmDltz0uLcG2Yut9Vnd4tPOAhfxy3LMzufdvn806cwJjYDanqpX/62ZlSU5ZW9Y5m8auD5rtWTs8gelF3hyD5RXH+9Y4Gd4jyUPnUco38Dn2xmMoyIZd8sZ57xKZaz2eE75u9f/basw2G/HZO/Y7R3BJb6FoasBe0SF38v2qRPaItyjhtlOtT5C7Vl7alD3QwL3vcWy5pOZt/nj+T+sl72d7ZN5Kfmd30zfLP6eO0UV98sdTmXXrPstyVi4H385+gtfyfvDb9jD3wD9L6ZQg==</data>
<data encoding="base64" compression="zlib">
eJyNlk1uwkAMhaPeICwisuFOHKEH7QkaoUjZsWQHCgrqCRqLeeXLq5PW0mgy4/9ne2Bsq+o+r7Hs13nd5jXN64F7ncX/AM9133fVD/Xtc78VmTgfwXcd8j7rpYxiCDrBX9BoZ+oxvtgvuxevT3Jeyz1I313R453kFU+GzaP4z+Kdiuy5fuYXu/SJ/X9rNRasww75xK6Hf9K1XeYqIt6e69HqTpmgznxNCVaeo+t1KzHTX+TrmLhv+gpec3jx9D1afMREtD8sfV2AgWx5XTwf5iBiv9Cn7iNH9V/4dNvMYWtOOpwHw8zltvrsbvEJB+HruGV5ZufjLp9/+hTGxOaGmp7rl7+tGRVleWXvWCavGni+a/XkLLIHZVc4sk8U11/vWGCnOJvSp45j9G/gk81MhhGxHNrlzDM+xXIyO3zH/P2r35Z1aA7bMfk7Rnt7YKlvYcha0C5x8feiS/qEtijnuFGmR52/UFvWnjrUzbDg/WCxrOlk9n3+SO4v62V/Z7tEfmp/1zfDN6uP105xDe1Sl3PpNct+WyIG3sd/jsHyd/Le8Dv2wDcKHpfu
</data>
</layer>
<layer id="4" name="Above" width="20" height="30">
<data encoding="base64" compression="zlib">eJyNlltqwzAURLsN+aM7MNk/iOBtxHWwf9M2eAuVqIccj69MBkSsx33NfbRj+thhKPtbWWNZ9/S/J3R3Br2Zy1rK+irrN+1lp3TUdQts3dNe56OsH9Ov3+f2XvsKfef00q+zCfr1rV/ZW3Dv/s6Qv5qeBe91tprf7u/U8G+FLs8HuWKswrjJR7ESQzqef9ubOeDKY6yg/dzw2e05J9lkaKve9d3rTt+T+UdOhEt3tEVUXZKP+CQnjEu+Pc0ma4b17boZg2SUN+rItmed+LtWnTFur2nx67x5nPXuszv2Cd9QB3MtjhnniJyu0HXWo86l4nqk8znG/lIOPF7G1ZpjrEHpFVgzUR9Hc6xCfvZbnfr9BTbfmWPvgLk4m2PR7KeNvtFbrTlGfYxL3+KQuYhmhvOtfcQBa45y0UyrGII8+/yhDGVbc4Z+O58t/lx/NF/oD+1Ftcw5u6Y9f+xfz6/AvylRfjx38kv86R37kueqFUePmTMF9xG8Nvwsm38V/r+F7tlbUf+53B9vP29l</data>
<data encoding="base64" compression="zlib">
eJyNlltugzAURPvVHaDIP+x/EShiG6GO4DdtI7ZQW2WUw3CNMpIV/LivuY92Sh87jGV/K2sq657+94TuzqA3c1lLWV9l/aa9bE5HXbfA1j3tdT7K+jH9+n1u77Wv0PeQXvp1lqFf3/qVvQX37u8M+avpWfBeZ6v57f7mhn8rdHk+yBVjFaZNPoqVGNPx/NvezAFXHmMF7Q8Nn92eczKYDG3Vu65/3ek7m3/kRLj0R1tE1SX5iE9ywrjk29NssmZY366bMUhGeaOOwfasE3/XqjPG7TUtfp03j7PeffbHPuEb6mCuxTHjnJDTFbrOetS5VFyPdD7H2F/KgcfLuFpzjDUovQJrJurjaI5VyM9uq1O/v8DmO3PsHTAXZ3Msmv200TV6qzXHqI9x6VscMhfRzHC+tY84YM1RLpppFWOQZ58/lKFsa87Qb+ezxZ/rj+YL/aG9qJY5Z9e054/96/kV+Dclyo/nTn6JP71jX/JcteLoMHNycB/Ba8PPBvOvwv+30D17K+o/l/sDs21t/Q==
</data>
</layer>
<layer id="5" name="Top" width="20" height="30">
<data encoding="base64" compression="zlib">eJytlmEKwyAMhb1G/SG7gPT+MMau0bLS3WA7wpRNFh5JTGw/KIjVmDyftiHwPCbhhZPlF+fGxNtI317az/Ks03ftTVj/ruRFc36V9vtgDTvMl3LqzWss0G/VmNOOYz1pzyophnA1xENNLpEfl+M/bhLGVFCTmYzl9M9KrIqmyYjHmyZcDc3DR8E6rb5rYG5Yp7du1Bj9Lfm9R6sLz0VD8wkHVxft63mlQv1L69LusYqU6yz0a/eYhFePHrlztrR9pTpxZ57bC6921lwQbp892nnPW2/OyD2Dc/BbaSEJXh7NiYLfBimnUc9a/wesnPE/MMIHrt1DZA==</data>
<data encoding="base64" compression="zlib">
eJytlmEKwyAMhf0lu4CU/vH+hxhj12hZ6W6wHWHKJguPJCa2HxTEakyeT9sQeB6z8MLJ8otzY+JtpG8v7Wd51vm79iasf1fyojm/Svt9sIYd5ks59eY1Fui3asxpx7GetGeVmEO4GuKhJpfMj0v5HzcKYyqoyUTGcvonJVZF02TE400Trobm4aNgnVbfNTA3rNNbN2qM/pb83qPVheeiofmEg6uL9vW8UqH+pXVp91hFynUS+rV7TMKrR4/UOVvavlKduDPP7YVXO2suCLfPHu285603Z+SewTn4rbQQBS+P5kTBb4OU06hnrf8DVs74HxjhAwTVQYQ=
</data>
</layer>
<layer id="6" name="Walkable" width="20" height="30" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
</data>
</layer>
<layer id="3" name="Objects" width="34" height="30">
<data encoding="base64" compression="zlib">eJyNl0Fu6zAMRIN/g2YnHyLIVXKEnrWrAoZhILsus3Pgj/YINREP/DSh4hIIZMsUORxSlDKVw+F7+f0sv5D/yzisz5yflvGO93FdJ537+uN7iNuaS20r/I2rztu/x3g7Hiq5LO9fb4+REnMSraGOvvuc25dMKx7iHdaY5vWbsOudeq1vjN3ta06j+A1xn4FdMdFWzNE/Y3f70lFexL1jn9bnFk76d9stm8qFvmci3NQZzJ7bZ83Fes0rz+du0xmNJ2I7dY/vMUon8DoHxOaxsx5YV3foqM49vj2J2Lgn6X8odYxZrQUfjD3Lj7jvy/4emKATHBMPeZYOc6M8ezzEIJviW6P6wftaS0Op97VsstZ9jlic/6FsdZDZ49qsljI+hVExSbL4e9QYa6/ld893lrdWrTL+7Bzw3hmY3OcrPMq74/f4HRMxiJs7ao37wPWJe27En9lv+XL73p8kJ+RaPngueF90Gct2zsrXuXvOY7bXnA/6Ct2rYVbfyGIddnx5LK3cO7Zv07sdn3l1Tr23vTqPfsrf9udseX8Vq3LqvLZ8OXfxHjnUPoiROfa7w194zXyduue+RXy+Z/xsIA/qXa1YxUlf6jzfkrNzry/E2ch+NZatb4a9Fq+tczGL/RN6yofzfrGzhHy0+OS9g5zEOcW+ydiHUvc63eXolxxybVY3Iex1WZ0wP5pT7lyHPJGDrEb9PuH+efZl91H5CO5CdzD/o2GM8aNs36J2Pgz7NcEl7iTvx3yfUfa4bMm5q/OkutVdLsYe6z3Gli8+k8tr2XjmvZd64pX/n/TMM4t7IeMks+M959TVedXzUOpcZTH25o9zrfONWOZS51+cuC/fz63a7EuNifdaYsj+GwprtjeyeY9L46nb/geqR0X9XpKz0/MUa38BJGDFNw==</data>
<data encoding="base64" compression="zlib">
eJyNl0Fu4zAMRY3eoFkY6UK+U47Q83U1gGEYyCkSpGjRZXYzp5gQ8Yeffqi4BALZMkV+flKUcipd93X7fd9+IZ+3cVqeOX+6jWe8z8s66ZyXH99D3Nal1LbC37zovL7cx+uuq+Rwe/95vY+UmJNoDXX03efcvuS04CHeaYnpsnwTdr1Tr/WNsbt9zWkUvyHuM7ArJtqKOfpn7G5fOsqLuHfsp+W5hZP+3XbLpnKh75kIN3Ums+f2WXOxXvPK835YdWbjidj64f49RukEXueA2Dx21gPr6gwd1bnHtyURG/ck/U+ljjGrteCDsWf5Efdj2d4DJ+gEx8RDnqXD3CjPHg8xyKb41qh+8L7U0lTqfS2brHWfIxbnfyprHWT2uDarpYxPYVRMkiz+ETXG2mv53fKd5a1Vq4w/Owe8dwYm9/kMj/Lu+D1+x0QM4uaMWuM+cH3ivjTiz+y3fLl970+SHrmWD54L3hdd5rKes/K1Hx7zmO0154O+QvdomNU3slinDV8eSyv3ju3L9K67R16dU+9tz86j7/K7/XmxvD+LVTl1Xlu+nLt4jxxqH8TIHPvd4Te8Zr764bFvEZ/vmeD+71vX/Xtb7bI/cp97rOJkLHWer8nZudUX4mxkv5rL2jfDXovX1rmYxf4HesqH836ws4R8tPjkvYOcxDnFvsnYp1L3Ot3l6Jcccm1WNyHsdVmdMD+aU+5chzyRg6xG/T7h/nn2ZfdR+QjuQncy/7NhjPGjrN+idj4M+zHBJe4k77t8n1G2uGzJfqjzpLrVXS7GEes9xpYvPpPLY1l55r2XeuKV/5/0zDOLeyHjJLPjPacf6rzqeSp1rrIYR/PHudb5RiyXUudfnLgv38+t2hxLjYn3WmLI/hsKa7Y3snmPS2M/rP8D1aOifg/J2el5irX/ASdYkKM=
</data>
</layer>
<layer id="4" name="Above" width="34" height="30">
<data encoding="base64" compression="zlib">eJyVV0FOAzEM3G94D4gPVDy+p0qraD/AAwqLyrVAtX0CjbqjTqbjLVhCCVnH9owdJ+26rvuKrjvGdYT8XOanaOdz3ObQPy/zI60do92vwraq7C/jxzI/XMbPy1+J63xavlWdN/qf9bJvGCdjH2sYPylW9VnlHO03SBE9taG2yqI3EnbEPi96k4ldRxcn23QyJuuZzpfEqDEfBLvycCYco+gyjk1//V5H1lEOODbFzvUAwTeXnyrFrGUC++q/CEZXa8qN1iuk7h/i8RnYk85z38bDPGf+HR6O4aW/zXk8S6zKH2xyresax6L7S9zqwNnjva6WHJ/wAUxr+AeqMa29rJbWfGd7Xa2WuOEvEgNE+6n6XIsHkp0F4H9NcgpM2I9a43Og+rPw5PCrfeZPfbH992jvD8a0oVzDB98Lp4Qb9j3GvS/NY73nvgWT8sF54L4MG9obGWt54Evvtiz3GttB9OYVrMyJ8zWbNT2zWVyT5H0NK3KqvGa+ZlrHmdIewDnWt8NfeHW+nvr7vsXxuTOD79XOKe77Y4YVnAzR5tnl/FFfYD97qkG9X5TX7F502HekV7FV28o7xN1dGZ9rnDh88O/un4xD3uvqJvPD/7NtrA2R6yAm5sDVqL4n1D/XvXuPwkflruZE76VRYqzjNtpvWxO7e+foG9Sds/9y6eS5b/PEvRRrXCOKMfPlcoi+Xn0+LRw6PeYVb2u8qfjOcntZ3LtVe86mb/OKeYk2Vw6jOztap9qb+Pcj+jqfS3fW9TxntTlIrrKe47AgVnc23LriwriRu8Nxr7lh/rOeu/abLPu2i5Zb7Ydr4y95734C</data>
<data encoding="base64" compression="zlib">
eJyVV0FOAzEM3BPiAxXi4P14T0iraD/AAwpF5Vqg2sJraNQddTIdb8ESSsg6tmfsOGnXdd1HdN0+ziPk6zQ/RDuf4jKH/nGe72ltH+1+FbZVZXMa3+b57jS+n/5KnOfb+VvVeaH/WS/7hnFr7GMN4zvFqj6rHKP9BimipzbUVpn1RsKO2KdZb2ti19HFyTadjMl6pvMhMWrMO8GuPBwJxyi6jGPVn7/XkXWUA45NsXM9QPDN5adKMWuZwL76L4LR1Zpyo/UKqfuHuH0GNqRz37fxMM+Zf4eHY3joL3MejxKr8gebXOu6xrHo/hKXOnD2eK+rJccnfADTEv6BakxrL6ulJd/ZXlerJS74i8QA0X6qPpfigWRnAfifk5wCE/aj1vgcqP4kPDn8ap/5U19s/zXa+4MxrSjX8MH3wiHhhn2Pce1L81jvuU/BpHxwHrgvw4b2RsZabvjSuy3Lvca2E71pAStz4nxNZk3PbBbXVvK+hBU5VV4zXxOt40xpD+Ac69vhL7w6X3f9dd/i+NyZ+X7sup/Hs51DXPfHDCs4GaLNs8v5rb7AfjZUg3q/KK/ZveiwP5FexVZtK+8Qd3dlfC5x4vDBv7t/Mg55r6ubzA//z7axNkSug5iYA1ej+p5Q/1z37j0KH5W7mhO9l0aJsY7raL+tTezunaNvUHfO/sulk/u+zRP3UqxxjSjGzJfLIfp69Xk3c+j0mFe8rfGm4jvL7WVx71btOau+zSvmJdpcOYzu7Gidam/i34/o63wu3VnX85zV5iC5ynqOw4JY3dlw64oL40ruDse95ob5z3ru0m+y7NtTtNxqP1wafwHaIEfK
</data>
</layer>
<layer id="5" name="Top" width="34" height="30">
<data encoding="base64" compression="zlib">eJztl00KwjAQhXONdCFeQLz/RrxGpVLXIngFDTS0HeaZTMYJWeTbBAKdmbz5SePcyss7FU/l9xwPA5uUuYKPLYdhv0buSxw3RTzhLEGzYGPyq02O07BfKZeMOFB+3t/9I7Db4UF6lfRAifa0Hv/BudeAOTRv1vNsAvbRHIn8mkUSX+OylzOfcm0ioi+un65KnWmetnHRnFJfFjnmdE3llGrJxSWdRUhXSZ1LamNO3JMUqklpHUqo/Y+CQGe1uDussY45t+5TPdaxw7IGavTE6HXvBUQr/azpjVbO0BIfK8wtrw==</data>
<data encoding="base64" compression="zlib">
eJztl88KwjAMxnsSX0A8dY8vvsZkMs8i+DpaWNkW8tmmMaWH/i6FwpL0y5+uzq28vFPxVH7P8TCwSZkr+NhyGPZr5L7EcVPEE84SNAs2Jr/a5DgN+5VyyYgD5ef93T8Cux0epFdJD5RoT+vxH5x7DZhD82Y9zyZgH82RyK9ZJPE1Lns58ynXJiL64vrpqtSZ5mkbF80p9WWRY07XVE6pllxc0lmEdJXUuaQ25sQ9SaGalNahhNr/KAh0Vou7wxrrmHPrPtVjHTssa6BGT4xe915AtNLPmt5o5Qwt8QGNDihf
</data>
</layer>
<layer id="6" name="Walkable" width="34" height="30" visible="0">
<data encoding="base64" compression="zlib">

View File

@@ -1,281 +1,287 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE map SYSTEM "https://mapeditor.org/dtd/1.0/map.dtd">
<map version="1.0" orientation="orthogonal" width="30" height="30" tilewidth="32" tileheight="32">
<properties>
<property name="outdoors" value="1"/>
</properties>
<tileset firstgid="1" name="map_bed_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_bed_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="129" name="map_border_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_border_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="257" name="map_bridge_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_bridge_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="385" name="map_bridge_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_bridge_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="513" name="map_broken_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="641" name="map_cavewall_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<tileset firstgid="749" name="map_cavewall_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_2.png" width="576" height="192"/>
</tileset>
<tileset firstgid="857" name="map_cavewall_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_3.png" width="576" height="192"/>
</tileset>
<tileset firstgid="965" name="map_cavewall_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_4.png" width="576" height="192"/>
</tileset>
<tileset firstgid="1073" name="map_chair_table_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_chair_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1201" name="map_chair_table_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_chair_table_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1329" name="map_crate_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_crate_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1457" name="map_cupboard_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_cupboard_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1585" name="map_curtain_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_curtain_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1713" name="map_entrance_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_entrance_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1841" name="map_entrance_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_entrance_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1969" name="map_fence_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2097" name="map_fence_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2225" name="map_fence_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2353" name="map_fence_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2481" name="map_ground_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2609" name="map_ground_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2737" name="map_ground_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2865" name="map_ground_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2993" name="map_ground_5" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3121" name="map_ground_6" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_6.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3249" name="map_ground_7" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_7.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3377" name="map_ground_8" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_8.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3505" name="map_house_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_house_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3633" name="map_house_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_house_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3761" name="map_indoor_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_indoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3889" name="map_indoor_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_indoor_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4017" name="map_kitchen_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_kitchen_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4145" name="map_outdoor_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_outdoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4273" name="map_pillar_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_pillar_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4401" name="map_pillar_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_pillar_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4529" name="map_plant_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_plant_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4657" name="map_plant_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_plant_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4785" name="map_rock_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4913" name="map_rock_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_rock_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5041" name="map_roof_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_roof_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5169" name="map_roof_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_roof_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5297" name="map_roof_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_roof_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5425" name="map_shop_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_shop_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5553" name="map_sign_ladder_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5681" name="map_table_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5809" name="map_trail_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5937" name="map_transition_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6065" name="map_transition_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6193" name="map_transition_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6321" name="map_transition_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6449" name="map_transition_5" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6577" name="map_tree_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6705" name="map_tree_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_tree_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6833" name="map_wall_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6961" name="map_wall_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_2.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7081" name="map_wall_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_3.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7201" name="map_wall_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_4.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7321" name="map_window_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_window_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7449" name="map_window_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_window_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7577" name="map_trail_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="30" height="30" opacity="0.99">
<data encoding="base64" compression="zlib">
eJzt1cENwjAMBdCUGyNkHTaOcioTVIIZMgIzAFIjRW4SbH9jCYnDv1SoD3+3TTqHsDGSgKynEK4k7+uZ4WbAvb2cO0lizovaiFttxG8jcanfxsNt/cvi7267q33urVxuqst5l77hIjNr3EfEbY1b4tGW+tp5S8eV+Nr99uaV2Fq3dj2be+Yj+x3tmfMfLPYrsRPg0m6lc7ffZ+Sc4uyZulZno7RrTXq9juaV9GDZq3UPHr1yu/YyLXdnvd9/fne/mjNpds9Pv3kC5ZqwGg==
</data>
</layer>
<layer name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">eJy9Vz1Pw0AMjbJ1DBJBmeB/U0ZWFiQ6IAYY2oQIpK6NVFZAzYpgQHBWYvXl1ZcvtX2S1eR65/dsny9JEQfBp7MPZxa+3HhBc9Ko+l2ebOf9Rrtr1zT2Bvfnbu2Fs9TDK1jU/ym3+kvJL/MIXhO/z9tJO6/GrNzvlB+MVXlw7DoMgrOwup6E/XmZG/nRrFpxTlRPX17l/ib+BocxrrnnfA/h7eLX+lt7DDW8RON4mV+gOqz8W2b1yViojj72kFQxC++YmMeiiPYb81Agt68nDsnN++PQ/KWrcxZVfc78h+DeQD/Pqe+OmfsyaWqwcn+M/KfEv+/6S5wbPkMh7xlccw4Efc4oNOVcec5UgegpQdMCnikMOXP7mPjLo61/jJ/jFOBzjXlXA87JO7D7eDfXGB+Dz+OfuKmzUScjX4oZ6Jd4ua90HDF3a5anti6G9XwUf7N4t5YKKw+s9Q/8plC7Ln/ig99LfD70embsLYVVn8zQ8Ez17mN53NQ2RIMC86Hx8H7me4aVV363wjrrXO1j1u/T2xYHa8T6oz7matsT1riC/fhqkLdo5l7S+HznSVcdfL3kW9e1byxk4O/SfSdche3zJX7NpX4/ydiju39K/N88Au3Ldb1e+KbObmqb1vYP1p0pfg==</data>
</layer>
<layer name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">eJxjYKAt2CeJXfy/IH3sQQdviVRHDQBzE4imtn/x2XkOau9ZSfr6F9l+PiHa2oHOBtlJzXC+LIYpdk4SN5ta4XwYi730AKTae3cA/UsNu8kNZ0rtHirxCwMg/96RJN/fpNp7Z5DkI3r5lxi7iQn/SxTYixzm1MrXAw12EhmG2MQoSe+4AMw8XOmb3HRPLbciu48c89DDm97pCFcaJtc/2PQR28YcaIDLz7RI1/QCMLeT4wdCetHTLiFz0NkwsBHI3wRth4Lk7wHxOyQa2Q3k+INQvYDNznvQtimutHsNrb0MAB7AZ7g=</data>
</layer>
<layer name="Top" width="30" height="30">
<data encoding="base64" compression="zlib">
eJzt0DERAAAIAzFs4F8XXrDA1oHEwF9blTEdCod825viZwAAuFsY4QLj
</data>
</layer>
<layer name="Walkable" width="30" height="30">
<data encoding="base64" compression="zlib">eJzllcsNwDAIQzNF91+hG/aKovCJbZJDkbi0gYcd1L7PGG+SXkTv5nNoopH1VLFX51guo9vOhHBRvq1huAxfwV1552lU6mXqVx78gcvUMzOjfMV+IHyl3h02qzeboZNbjZN6PT7DnXWstCkj8upkdDE9DzOv1TN5e4kwd+p2NFTmq/Sw9bf2qHrH1X7zs4jbHVVdnXt9424tF/02R7WRr4r/CJIfxCFiiA==</data>
</layer>
<objectgroup name="Mapevents">
<object name="north" type="mapchange" x="288" y="0" width="192" height="32">
<properties>
<property name="map" value="waterway5"/>
<property name="place" value="south"/>
</properties>
</object>
<object name="east" type="mapchange" x="928" y="544" width="32" height="384">
<properties>
<property name="map" value="waterway7"/>
<property name="place" value="west"/>
</properties>
</object>
<object name="west" type="mapchange" x="0" y="608" width="32" height="32">
<properties>
<property name="map" value="waytobrimhaven3"/>
<property name="place" value="east"/>
</properties>
</object>
<object name="south" type="mapchange" x="512" y="0" width="288" height="32">
<properties>
<property name="map" value="waterway15"/>
<property name="place" value="south"/>
</properties>
</object>
<object name="sign_waterway6" type="sign" x="544" y="640" width="32" height="32"/>
</objectgroup>
<objectgroup name="Spawn">
<object name="izthiel_4" type="spawn" x="544" y="224" width="32" height="288">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_4"/>
</properties>
</object>
<object name="izthiel_3" type="spawn" x="352" y="64" width="352" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_3"/>
</properties>
</object>
<object name="burrower_2" type="spawn" x="640" y="64" width="288" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="burrower_2"/>
</properties>
</object>
<object name="izthiel_3_1" type="spawn" x="32" y="64" width="320" height="384">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_3"/>
</properties>
</object>
<object name="izthiel_2" type="spawn" x="224" y="448" width="320" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_2"/>
</properties>
</object>
<object name="izthiel_2_1" type="spawn" x="576" y="448" width="320" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_2"/>
</properties>
</object>
<object name="erumen_1" type="spawn" x="160" y="640" width="736" height="288">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="erumen_1"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Keys"/>
</map>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE map SYSTEM "https://mapeditor.org/dtd/1.0/map.dtd">
<map version="1.0" orientation="orthogonal" width="30" height="30" tilewidth="32" tileheight="32">
<properties>
<property name="outdoors" value="1"/>
</properties>
<tileset firstgid="1" name="map_bed_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_bed_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="129" name="map_border_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_border_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="257" name="map_bridge_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_bridge_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="385" name="map_bridge_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_bridge_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="513" name="map_broken_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_broken_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="641" name="map_cavewall_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<tileset firstgid="749" name="map_cavewall_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_2.png" width="576" height="192"/>
</tileset>
<tileset firstgid="857" name="map_cavewall_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_3.png" width="576" height="192"/>
</tileset>
<tileset firstgid="965" name="map_cavewall_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_cavewall_4.png" width="576" height="192"/>
</tileset>
<tileset firstgid="1073" name="map_chair_table_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_chair_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1201" name="map_chair_table_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_chair_table_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1329" name="map_crate_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_crate_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1457" name="map_cupboard_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_cupboard_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1585" name="map_curtain_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_curtain_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1713" name="map_entrance_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_entrance_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1841" name="map_entrance_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_entrance_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="1969" name="map_fence_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2097" name="map_fence_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2225" name="map_fence_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2353" name="map_fence_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_fence_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2481" name="map_ground_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2609" name="map_ground_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2737" name="map_ground_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2865" name="map_ground_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="2993" name="map_ground_5" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3121" name="map_ground_6" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_6.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3249" name="map_ground_7" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_7.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3377" name="map_ground_8" tilewidth="32" tileheight="32">
<image source="../drawable/map_ground_8.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3505" name="map_house_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_house_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3633" name="map_house_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_house_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3761" name="map_indoor_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_indoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="3889" name="map_indoor_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_indoor_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4017" name="map_kitchen_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_kitchen_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4145" name="map_outdoor_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_outdoor_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4273" name="map_pillar_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_pillar_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4401" name="map_pillar_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_pillar_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4529" name="map_plant_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_plant_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4657" name="map_plant_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_plant_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4785" name="map_rock_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_rock_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="4913" name="map_rock_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_rock_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5041" name="map_roof_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_roof_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5169" name="map_roof_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_roof_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5297" name="map_roof_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_roof_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5425" name="map_shop_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_shop_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5553" name="map_sign_ladder_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_sign_ladder_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5681" name="map_table_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_table_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5809" name="map_trail_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="5937" name="map_transition_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6065" name="map_transition_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6193" name="map_transition_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_3.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6321" name="map_transition_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_4.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6449" name="map_transition_5" tilewidth="32" tileheight="32">
<image source="../drawable/map_transition_5.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6577" name="map_tree_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6705" name="map_tree_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_tree_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6833" name="map_wall_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="6961" name="map_wall_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_2.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7081" name="map_wall_3" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_3.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7201" name="map_wall_4" tilewidth="32" tileheight="32">
<image source="../drawable/map_wall_4.png" width="480" height="256"/>
</tileset>
<tileset firstgid="7321" name="map_window_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_window_1.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7449" name="map_window_2" tilewidth="32" tileheight="32">
<image source="../drawable/map_window_2.png" width="512" height="256"/>
</tileset>
<tileset firstgid="7577" name="map_trail_1" tilewidth="32" tileheight="32">
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="30" height="30" opacity="0.99">
<data encoding="base64" compression="zlib">
eJzt1cENwjAMBdCUGyNkHTaOcioTVIIZMgIzAFIjRW4SbH9jCYnDv1SoD3+3TTqHsDGSgKynEK4k7+uZ4WbAvb2cO0lizovaiFttxG8jcanfxsNt/cvi7267q33urVxuqst5l77hIjNr3EfEbY1b4tGW+tp5S8eV+Nr99uaV2Fq3dj2be+Yj+x3tmfMfLPYrsRPg0m6lc7ffZ+Sc4uyZulZno7RrTXq9juaV9GDZq3UPHr1yu/YyLXdnvd9/fne/mjNpds9Pv3kC5ZqwGg==
</data>
</layer>
<layer name="Objects" width="30" height="30">
<data encoding="base64" compression="zlib">
eJy9V01Lw0AQDbn1GEEkh6D/22oO4rWKPXuwBZtQFOtRoeq9+QmiOyRDX15n80XbB0OT7e68NzM7m2SeBMG7s5UzC2s3Pqc5WVT+rk62834jYy2NfcH9uVt74ezewyu4q/5TbvWXkV/mEbzGfp/TUTOvxqzcb5QfjFV5cOw2DIKzsLwehd15mRv50axacU5UT1de5f4mfoTlQ3PP+e7D28av9bf2GGp4iYbxMr9AdVj5t8zqk6FQHV3sMS5jFt4hMQ/FZ7TfmPsCuX09cUhu3h+H5i9cnfOo7HPmPwT3Bvr5mc/bI8ZexHUNVu6Pkf+M+Pddf4lzQ2foAvKewzXnQNDljEJTzg/PmSoQPQVoWsAzhSFnbhcTf8to6x/j5zgF+Fxj3lmPc/Ia7CbZzTXGx+Dz+Cep66zVyciXIgX9Ei/3lY4jJrK3Tm1dDOv5KP7SZLeWCisPrPUP/GZQuzZ/4oPfS3w+9Do19pbCqk9uaHigenexaVLX1keDAvOh8fB+5nuGlVd+t8I661ztY9bv09sUB2vE+qM+5mraE9a4gv34arBs0My9pPH5zpO2Ovh6ybeubd9YyMHfpftOuAqb50v8mkv9fpKxJ3c/i/3fPALty3W1XvjGziaVjSv7Bz2DHhI=
</data>
</layer>
<layer name="Above" width="30" height="30">
<data encoding="base64" compression="zlib">
eJxjYKAt2CeJXfy/IH3sQQdviVRHDQBzE4imtn/x2XkOau9ZSfr6F9l+PiHa2oHOBtlJzXDeLYspdk4SN5ta4bwai730AKTae3cA/UsNu8kNZ0rtHirxCwMg/96RJN/fpNp7Z5DkI3r5lxi7iQn/XRTYixzm1MrXAw12EhmG2MQoSe+4AMw8XOmb3HRPLbciu48c89DDm97pCFcaJtc/2PQR28YcaIDLz7RI1/QCMLeT4wdCetHTLiFz0NkwsBHI3wRth4Lk7wHxOyQa2Q3k+INQvYDNznvQtimutHsNrb0MANEqZv0=
</data>
</layer>
<layer name="Top" width="30" height="30">
<data encoding="base64" compression="zlib">
eJzt0DERAAAIAzFs4F8XXrDA1oHEwF9blTEdCod825viZwAAuFsY4QLj
</data>
</layer>
<layer name="Walkable" width="30" height="30">
<data encoding="base64" compression="zlib">
eJzllTsOwDAIQ3ORHry37Yqi8IltkqFILG3gYQe17zPGm6QX0bv5HJpoZD1V7NU5lsvotjMhXJRvaxguw1dwV955GpV6mfqVB3/gMvXMzChfsR8IX6l3h83qzWbo5FbjpF6Pz3BnHSttyoi8OhldTM/DzGv1TN5eIsyduh0NlfkqPWz9rT2q3nG13/ws4nZHVVfnXt+4W8tFv81RbeSr4j+C5Adbc0RA
</data>
</layer>
<objectgroup name="Mapevents">
<object name="north" type="mapchange" x="288" y="0" width="192" height="32">
<properties>
<property name="map" value="waterway5"/>
<property name="place" value="south"/>
</properties>
</object>
<object name="east" type="mapchange" x="928" y="544" width="32" height="384">
<properties>
<property name="map" value="waterway7"/>
<property name="place" value="west"/>
</properties>
</object>
<object name="west" type="mapchange" x="0" y="608" width="32" height="32">
<properties>
<property name="map" value="waytobrimhaven3"/>
<property name="place" value="east"/>
</properties>
</object>
<object name="south" type="mapchange" x="512" y="0" width="288" height="32">
<properties>
<property name="map" value="waterway15"/>
<property name="place" value="south"/>
</properties>
</object>
<object name="sign_waterway6" type="sign" x="544" y="640" width="32" height="32"/>
</objectgroup>
<objectgroup name="Spawn">
<object name="izthiel_4" type="spawn" x="544" y="224" width="32" height="288">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_4"/>
</properties>
</object>
<object name="izthiel_3" type="spawn" x="352" y="64" width="352" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_3"/>
</properties>
</object>
<object name="burrower_2" type="spawn" x="640" y="64" width="288" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="burrower_2"/>
</properties>
</object>
<object name="izthiel_3_1" type="spawn" x="32" y="64" width="320" height="384">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_3"/>
</properties>
</object>
<object name="izthiel_2" type="spawn" x="224" y="448" width="320" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_2"/>
</properties>
</object>
<object name="izthiel_2_1" type="spawn" x="576" y="448" width="320" height="160">
<properties>
<property name="quantity" value="2"/>
<property name="spawngroup" value="izthiel_2"/>
</properties>
</object>
<object name="erumen_1" type="spawn" x="160" y="640" width="736" height="288">
<properties>
<property name="quantity" value="3"/>
<property name="spawngroup" value="erumen_1"/>
</properties>
</object>
</objectgroup>
<objectgroup name="Keys"/>
</map>

View File

@@ -187,13 +187,19 @@
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="30" height="9">
<data encoding="base64" compression="zlib">eJzbyMnAsHEUj+JRPGLxO0nS9QAAd8fEeg==</data>
<data encoding="base64" compression="zlib">
eJzbyMnAsHEUj+JRPGLxNVnS9QAAc7PEZg==
</data>
</layer>
<layer name="Objects" width="30" height="9">
<data encoding="base64" compression="zlib">eJyNU0EOwiAQ5AvbGyd9gv9PPKgXEtu+gPZo1LTGH1S2hTBsl8RNmoXJzu4wlIXMGqM15mNzHuyG+4jNcc/Rh/UUsYW2NXKx3tEe53qv1Kc+d+jJOi7hu8Z+h8aYY5O1SN1S3wS4pnU9I+3Pw+uWSi1Sp8Q9eNQKXqfMHqBeBmtyVOrnwNma/8l35D2o9GMGT7U7Q28Zewb+DbhJn5zT28xzVPZ6U8akFu2/SiH7IIazpU+pRvJre8ynptT5EjUdlTrHim84y4l35qKn/4TmgfzvU669R60G4xz2X9ruoMbD/APqjbab</data>
<data encoding="base64" compression="zlib">
eJyNUzEOwjAMzBfcPYIn8GkGYO8L2ioS7dYyMSNg4gclJolycR0JS5WTk8++XpKVzC8Ga8zN5tzbgHcRW+Keo/XrOWIrhTVysd7RFuf6TqlPfa7Qk3Wc/HeO/XaNMfsma5G6pb4ZcE0rx522/8PrkUotUqfEO/BoFLxJmd1DvQzW5KjUz4GzNf+T78h7UOnHAp5qZ4beMvb0/Atwkz45p7WZ56js9aaMSS3avUoh+yCGs6VPqUbya3vMh6bU+RI1E5U6h4pvOMuJd+aip/+E5oG89ynX3qNWg3H0+w+FM6jxMH8BzmirCw==
</data>
</layer>
<layer name="Above" width="30" height="9">
<data encoding="base64" compression="zlib">eJylktsNwCAIRVmD/Sdo/XcS7QidoTYtCUHwansSQ6Igr0tEVJiotoPYms8+4Sdkfv72kJxe7qgWGxNZj2pqQf6IO/ZwYlf/lZmiHuQuvdbm1r1l7u+iHjxGe4uokzm/gOaJ9ILe0o+ai+rbaszTp6052nvmsc4jZnQnPqfS8Or+LuP+Tys=</data>
<data encoding="base64" compression="zlib">
eJylktsNwCAIRVmEwVv/nUQ7QuepTUtCELzansSQKMjrEhEVJqrtILbms0/4CZmfvz0kp5c7qsXGRNajmlqQP+KOPZzY1X9lpqgHuUuvtbl1b5n7u6gHj9HeIupkzi+geSK9oLf0o+ai+rYa8/Rpa472nnms84gZ3YnPqTS8ur8L+ExImw==
</data>
</layer>
<layer name="Walkable" width="30" height="9">
<data encoding="base64" compression="zlib">

View File

@@ -193,7 +193,9 @@
</data>
</layer>
<layer name="Objects" width="22" height="13">
<data encoding="base64" compression="zlib">eJy1kksOwjAMRH2FsPMtuP8BaCVE1yzaLgsFgrgBxEqsjowjBKJPivKxPRklJiLqmVxiOn8EokMat7S+l7w27UfO8aeJnUKOd5zPPU1F8gStH0FndmJSK14H9muaUnMOyx1e3t5o47qmjaDvyMssXE2sBx2rHR3tBrzrPbsyy5seK282sH8nempBe7t5PxOwFrU7x7v+szKD1lTWl9IP1i9qW7+fQM+13v0W/UdBe3oN/uXXspZf1cY+/2VWdP8CX3SHEQ==</data>
<data encoding="base64" compression="zlib">
eJy1kj0OwjAMhX0MPIT7T7QSYucEgcLC0HZlIZyBWInVJ+MIgegnRfmx/fKUmIhoZHJJ+fwWiA55PPL6WfP6vJ+5xO8mdgolHrmce5qK5AlaP4PO4MSkVrxO7Nd0teYclju8vL3RxnVLG0HfiZdZuJrYCDpWOznaHXjXe3Z1ljc9Nt5sYv9O9NSD9mb7fiZgLWpHx7v+szKAVqzrS+0H6xe1rd9PoOdW736L/qOgPb0G//JrWcuvamOf/zIrun8BVziFwQ==
</data>
</layer>
<layer name="Above" width="22" height="13">
<data encoding="base64" compression="zlib">

View File

@@ -193,7 +193,9 @@
</data>
</layer>
<layer name="Objects" width="30" height="13">
<data encoding="base64" compression="zlib">eJyNVMGOAiEM5Rfg1oOrn+D/HzbRg0PcyAdsdj0a3ejEeJ+4EGjmWQqxCSlTSvte6fRGxjytMdeox7iOcd0of/f00hmzcvnuvtxneec+50I92TnGt81LisR5sXPMp/D3Nq9dsd9tnZM159zE/Zby3kNdMLcv8dbuNV+gGl+Sweo50Sflk/jxnDkGmnHxGedAW/J5uH5OrBHvke9Q7GflHSZhY1+O36rxImL6cPU95IjY0MeD707cS/EPjffFmF8CN8b5K3utjyS2QDPfscMX6+kVHl6pLYusO9cBe6zHV6unfDfs4UCmKR7edyR9Vhwg9tDhJeWk8OKa/QhunCvZf+n1PAjeWNsA+OR/grxYSyyfVGPR+otFe/eWT2smHameKahTn94bs5v/hyv44pzEeSwl2f8Bd5L47g==</data>
<data encoding="base64" compression="zlib">
eJyNVLFuAyEMZWnTuVM9cP8/5VCrrJWaD0BppwxttihLckO/oCB4uhdjUC0hc8bYfg+fb+LcxTt3TXpJ65TWTcr3SG8m556mcve13of85z5ysT77Ncbel6VF1/np15gX5R98WdtqP/o2JzRyfqT9Xso+EC+cO9R4L9N9vihtfVlmb+dkn5xP18/nwBhlrQtnyMG27PP7PM7JHGHPeOdqPxjvcFY2+CJ+j+OHxNnj1N5jjFwb+wTy3ap7Of6u874c803VzXG+6t7qI11blBXvMsDLfAYDRzC4hWjewQP32Aivxad+N+7hKK4rgd53EXtW7Cj2PMClJRq4wNm3woZc2f4j9+dR4WZuI9Wn/xPGBa1reZe2Fqu/INa793x6M+kk7Uxhnfv02Jnd+B+u5Mtzkuexlmz/A5Xl9dY=
</data>
</layer>
<layer name="Above" width="30" height="13">
<data encoding="base64" compression="zlib">

View File

@@ -193,7 +193,9 @@
</data>
</layer>
<layer name="Objects" width="30" height="17">
<data encoding="base64" compression="zlib">eJytVb1Ow0AMPkAVE5C7TulTVEzMPAcbMwNI8EIVD8AjsCRVUSOxMEElFiRoqDqxlnNjY9dxSFT4JMuJ4/O/Lyvv1pilzi3Sv3OJg+DcYaQyyj/TTQ4oO9gk/W1jeI7vL2nFyZ4L7TblmX+rS+jmexveVKci0jCw//IXXW2rCydou8s4V2OcLeKZr8cg+SR+v+vbVOD33It8JALPlZQBPtD/Bb6/+8rWOm7k932bJCiP68S5m0hTzz198Ju9znw9RDp/nLDscWAT4MszWSiNPlLeuvaAU/QLub8OmPb2+RmwE5gA5wn7W+D+WLtBtufo80j0qUjZFtlbot6oV/HdwDRWOdOMtO4X6Yv8p8oW2b7tGUVFvIkzRcvOAHJfj1n6yn1d1sR/ngPfQwBr16V+hnU9Cyw7QRntTCHOXMZvV2IWC6OOBH0nQgyJ0Js3zKjOiyDjh5nJcH8sWH2GWEeqf0+JqoucByFvepbQ95PUmeD9of832i6chXtB3m8zpVOqmq7UHLXd09Qz69/XdBbOfAN+jzr5</data>
<data encoding="base64" compression="zlib">
eJytVb1Ow0AMjoQq1qhdSCXzEEzMPAcbMwNI8EIVa1pa9QFYGCOVVqgDVGIqoNCNn5FzY8uO4zRV4ZMsp77z5587X5cQrbFIomiV/F1rfAburyB5sH8kZY3It+Dk/bvm8BR+PyeFZr5XaObUPv/VF4y7TexddF2fsiAHhxI/37DXcm2jGZZ3HmIN6G6xTqGag9bDsHbb8SWj9T5IPRrMa22IB9Ln7UJPoOBCzEjfdXzR4Dqu4ii6DjIGOdMRlM86hWqO7H8Ui23S9QWxABEPuXOOXLftPeKE4mLtL12RvX35RryBCOIslngrmh9vNph7Sn7fKnaWCBfzzWm91yr0O4gMTM18R5rmizFT9Y8NF3PftPy+rvM1uW+aGUTfyVnH6kPVVqf5G+vhdwjhzbref099PW2L7ZhsPDOZ8rkIa5fqLmZOHxn2TcQcftS+qeNj69XQ+eOdSWl+PHjnjLn2zPk9xmVeXYe2131r2PdJ7xnS+2H/bywv+o6g/L4tzJ7c9HRp7lHTO81n5v331fmizy81lFEH
</data>
</layer>
<layer name="Above" width="30" height="17">
<data encoding="base64" compression="zlib">

View File

@@ -187,13 +187,19 @@
<image source="../drawable/map_cavewall_1.png" width="576" height="192"/>
</tileset>
<layer id="1" name="Base" width="20" height="29">
<data encoding="base64" compression="zlib">eJxjYBgFo2BwgxVMDAwbOREYxAfhwQjOUNldo+aNmjeQ5m3mHDWPHLCRE5UeBUMDAAD+6w/P</data>
<data encoding="base64" compression="zlib">
eJxjYBgFo2BwgwOyDAwbOREYxAfhwQieUNldo+aNmjeQ5m3mHDWPHLCRE5UeBUMDAADfOxIz
</data>
</layer>
<layer id="2" name="Ground" width="20" height="29">
<data encoding="base64" compression="zlib">eJztlM0NwjAMRq3cugBhByZgBDZgsq5AxK3iBr1whnQm+JRajSynoWmFxE+kJ8eJ/VL14KYiav58LWdD5EyIcs/5WL+svz859hG00R4cRnxwXUS99HWKb7Mm2tsB5AAuP9HH/0SCc1/gu4n8ugrRm/f52oV93Qf4eM31nargQNTI+bSeUl+qJ4fmK3VJ4FvKlfPVBd+d8vEc0u54Hk3xuYQP77iIumdnQ/3WDmcxr/qcyc/oGO2dOb5f4wEumayq</data>
<data encoding="base64" compression="zlib">
eJztlM0NwjAMRn3tAoRLJmACRmADpqxUMQCBEaAbQDoHfEqtRpbT0LRC4ifSk+PEfql6cFMRNX++loslcjZEued8rF/W35+c+wjaaA+OIz64rqJe+jrFt1kT7c0AcgCXn+jjfyLBuS/w3UR+WoXo7ft87cK+7gN8vOb6DlVwIGrkfFpPqS/Vk0Pzlbok8C3lyvnqgu9O+XgOaXc8j6b4XMKHd1xE3bMzoX5rhrOYV33O5md0jPbOHN+v8QBultix
</data>
</layer>
<layer id="3" name="Objects" width="20" height="29">
<data encoding="base64" compression="zlib">eJydlc1KAzEQx7M5tSrIrqXbWkFvCq3grSJ68iR60ifw4EfxKHjxOdQ3UdQXaC8epHhqa/EgttQXUA9mTMLOzk52F/8wZLrJ/GYmIU03EH8aVYUYK+sw1g20TZT/ib6vzetxUc0tBRGDjm8mB9VDWYjbDIP4ti/Ei69j2n4U/+HHeXflKNc7mROBXm9rAtl+WAWal6W0/qjy8J4Va0xrN6J5gGf3YIL6wuvqlXT7DvVeTXuaN+PFc3yF8fVZ+gn1yPGA1cjBABVl5ENfwOsYnj3DNNaZ5P1749dMXQtmfERraAzoUvK+VV1xNpQ1vOQcjikysZyyeFS03v/yDg2H9rhKfmPeds6esLbIfmLeQcZZgAZSG6eqdPc7JXW+cxLbM/doKLXfI3fQxXvN6H12jv+OeVUZZ+Hc4D8xOeB7SbH7kq+P1oWZmLes/BWp7ype4+qX1kZ5TeWvM7kxz8Zh1hWKGZJ9oGfhqg/2A69thslYyHNt7AblsbxNz51zJ4zmSo5ztdo1/397KffN8qy4nHgt8E7UeOqwlrJaJZ+1DG9EcuL3EWTfdhD3zuE31L5vdB1mHhW0HReSc/vM+5ZXF4VkPBXm2boHZrQ1/wLAOZWO</data>
<data encoding="base64" compression="zlib">
eJydlb1KA0EQx/euSlSQO0MuMR7aKSSCXUS0shKt9Aks/AiWgo3PpHYKPkFSqsEqpLAIJsRSDWrhrrvDzc3N3h3+YdjN7sxvZvbYbNcXfxpWhRhJ6zDW9bWN5fwNra/N63FR7i35EYOOLyYH1X1ZiNsMU/FtT4hnT8e0vSj+1Yvz7spRrgHZE772h5qUoB9WvuZlKa0/qjy8R8ka0dqNaB7FgzMYo76wX72Sbt+BPqtpR/NmnHiOryDun6WfQI8cT7EaORhKRTeaq74Ur2N48A3TWGcuP38I9VgzdS2Y8Sm0xytduvwcVJecDWkNJ7mHY4pMLKcsHhWt97+8Q8OhPa6S35i3nbMnrC1ynph3QHhcbx+hNk5V197vlKvznRNmz9yjSajnPXIHbbxPSw2g2Tl+HfOqbpyFc6v5gMmh1kuS/R7y9dG6MBPzlmXuFVffVexj65fWRnlNyVpnzhbzIA6zrhBjQs6Bfgtbfeo8sG8zSMaqPNfGblAe4G069pw7QbRXsnxX0K75/9tLuW/AA3E5sa/incjx1GItabVKPmsZ3pDkxO+jErztStw7h99QeN+oH2YeFbQdF5J7+8z7llcXhWQ8FeZB3X0zQs2//FeZJA==
</data>
</layer>
<layer id="4" name="Above" width="20" height="29">
<data encoding="base64" compression="zlib">

View File

@@ -192,7 +192,9 @@
</data>
</layer>
<layer name="Objects" width="20" height="8">
<data encoding="base64" compression="zlib">eJytUcENwjAM9AIgJb9+oPs/OwCPPmgRohPQTJAiNgCfEqsn01+xdPLZ5+QcZW5Enop5Ix+iyDEWnhWL4qx1q/gEkUudBTd9qbMvRaIa+RHWnsVEOvNeZ++KMZQ57mfnY7pxnOkUQ1h90IP/u/ZupCEG5+O53YEdO3d2pHpq5CdYh09f66vbBbudYuGJ3rM3Ev3H3pz/eBfyF0nBaS4=</data>
<data encoding="base64" compression="zlib">
eJytUTEOwjAM9AR8oYP78D6hAy1CrDyhMwPNypKywcydEquWYSuWTj6fnZyjzI3IHZh/5JeKvLXwDCzAvhU5AA/o1zpLbv2lzj6B5Grmi66axeT6nveYPQOjljmv5+BjfeM80wGDrj7U6H+r2sn1GEPwidzu4I5dODu6emrkK3yfPn2tj2EX7rZrC0/uPVsjuf/YmvMf72L+ANJBadA=
</data>
</layer>
<layer name="Above" width="20" height="8">
<data encoding="base64" compression="zlib">

View File

@@ -194,13 +194,19 @@
<image source="../drawable/map_tree_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="30" height="7">
<data encoding="base64" compression="zlib">eJwzFGJgMBzFo3gUU4QBk0429w==</data>
<data encoding="base64" compression="zlib">
eJyTlGNgkBzFo3gUU4QBTnYtHw==
</data>
</layer>
<layer name="Objects" width="30" height="7">
<data encoding="base64" compression="zlib">eJy1kkEKwjAQRf8VkkXBhdb7H8KFC9sumqW6MJ6gEY/gBDPkM0YQ1A/D75Q3P9PQ3Qq4SF2lbsWTVCjvI3kwbGwwC+Uos/bAxlcmKxQ2kffCbP3rLr2vz3ZGPZiz05tdVKMDBld7O7t3NTtrln4i3mYsNMe9+t09eZVyE50zNPKZ1R1Zh5I7Uv6xA05S5w4/E98Ff4PdUe9P9+T7/7fHD9nWv/GN57wHGFiarg==</data>
<data encoding="base64" compression="zlib">
eJy1UkEOgzAMy2WwF3Arz99hhwEH+gK6F1DGc5ZqtbCiHJC2WbLcIMdNI269yKJ8KreqWRnr90QajTc5npVy4LkoG/IUxOrNpK3y6szS0tn2QKO5O/f+LMAYRIZw1Lb3Ho7sglnrifw2Y6U+rqF7+PgB+Ca6Z3Dy2YsZGY+aO1L+1om8lHsnPwPvgt9gZ8T+MCfv/9+aTnq9f+MbLXlvlzKPiw==
</data>
</layer>
<layer name="Above" width="30" height="7">
<data encoding="base64" compression="zlib">eJxjYKAu2CeJKXYHKHYXizg2cAeH/sEESPEPuXrxqQOJEzIHJg9Tew+I30mi6sVGE1JHSB7Z/nuDLN5oCQBE4Sw5</data>
<data encoding="base64" compression="zlib">
eJxjYKAuWCaHKXYEKHYUizg2cASH/sEESPEPuXrxqQOJEzIHJg9TewyIr8mh6sVGE1JHSB7Z/mODLN5oCQA1BCjP
</data>
</layer>
<layer name="Walkable" width="30" height="7">
<data encoding="base64" compression="zlib">

View File

@@ -190,16 +190,24 @@
<image source="../drawable/map_trail_1.png" width="512" height="256"/>
</tileset>
<layer name="Ground" width="20" height="20">
<data encoding="base64" compression="zlib">eJydlNENwyAMRKPsP0JXgIxQ6AYpHaGDhA8snU62c+3HCXSij/hsWvdtq4EarN4+UyP1qffUa628fybsDudMY+o79Vkr709iI2vAOdNdPZXYZXkjqFfNyVT2vF6vFoV3BPViLZa9wj2EM5Y99hT56Cs8yx57ilmgr/IacDkL9BWe9cub4TPws3ytX9EMo3/Xk+7kyLWizzx+wyO5i5n8DTzXGQuZ+Dbsd95c//PWvJp/VXE85j0CqXccyX08Vwof50L9T/F0AYNHJSc=</data>
<data encoding="base64" compression="zlib">
eJydlNENwyAMRLNI9l+gK0BGKHSDlI7Qj/CBpdPJdq79OIFO9BGfTeu+bTVQg9XbZ2qkPvWeeq2V98+E3eGcaUx9pz5r5f1JbGQNOGe6q6cSuyxvBPWqOZnKntfr1aLwjqBerMWyV7iHcMayx54iH32FZ9ljTzEL9FVeAy5ngb7Cs355M3wGfpav9SuaYfTvetKdHLlW9JnHb3gkdzGTv4HnOmMhE9+G/c6b63/emlfzryqOx7xHIPWOI7mP50rh41yo/ymeLg0ddNc=
</data>
</layer>
<layer name="Objects" width="20" height="20">
<data encoding="base64" compression="zlib">eJydVDEOwjAMtDwwsLUDUlYeWH4AD0H8gI2VBTrCBgKVtS0SvIJEjcFxnRI4qWrqOFf7LgkAwB0BDpkd5AAX9/ZwcY4rm6vtXCOeFtn6HJKAk37sYQCephvzeoaw8fm5wpeC1vdKPZemG08nnTY1xteulbmTCb+H+iBu1wPnOo/CPE2ro+nHCKWYayzf2PJXNn4zca3I553N2dtniWH9sl/yy2k1pFMS/L6h/33TXkLqnKL7GPU4h9RZfmvexOouI7rzWmPecM5C+OK04meHQH7VzHuNc/6Hd/S/X32fYVib5pPkdDmFiJF3C/yc4QDiHnpz+vjcr6sy/RzHcI1orUGeH44V6rmaTxo478b041sf47VKDWOQ94eD3PcvscpYww==</data>
<data encoding="base64" compression="zlib">
eJyVVDsOwjAMtTIwsNEBlCEMHBBuAIeq2Fj4bLCBQDCzwBUKiFiNwXGdEp5UNXXsV/u9pgAALwew7flFAXDEewDGOU5sr/J7D3E9HasvIAum34zdLMDd1mveTxvKkF8ofDl4hllp5rWt16N+rU3l0rUbZW9v4+e2OYgbZ+Bch06cp2m1s80YYS32rp6vawDOPn6xaa3I56XPWfmrdHH/cl7yC7Vq0ykL4buh9/3SXkLqnKM7aqLFOaTO8lnzJtX3YKjHea8pbzjn2MQ1qBU/OwTyC2vJe41zKnTIAb3vX98nJu5N80lyYs5Y9Ejezcz3DEcQ/6EPZ4hPQ925p5/jFE4JrTXI88Mxd3qu5pMGzlvaZnwRYrxXqWEK8v+BkN/9G/DuX0s=
</data>
</layer>
<layer name="Above" width="20" height="20">
<data encoding="base64" compression="zlib">eJxjYICAS2IMWAFM/BkTbjU3JRkYbklil0MGl8VQaXQ2MXqRwWExVBqdjc8sbH6BiSHL4fIzNn3EgD1EhBMIEBsuyGAj0OxNWMzH5V9yATFhPNDmoYczseGOyzxCgJT4msuEYGPLO+TEFz77yQlfXHrITUuHseR9fPYQYx42t+BzG75yCqQPl1vITTtDIZ9QCgDbfDI1</data>
<data encoding="base64" compression="zlib">
eJxjYIAANTkGrAAm/k8Wt5qbkgwMtySxyyEDdTlUGp1NjF5kIC6HSqOz8ZmFzS8wMWQ5XH7Gpo8YsIeIcAIBYsMFGWwEmr0Ji/m4/EsuICaMB9o89HAmNtxxmUcIkBJfW2URbGx5h5z4wmc/OeGLSw+5aUkcS97HZw8x5mFzCz634SunQPpwuYXctDMU8gmlAACLyRcP
</data>
</layer>
<layer name="Walkable" width="20" height="20">
<data encoding="base64" compression="zlib">eJytkkEOACEIA43//6p/2JMJMehOCyRejB1LYc0xFjyxqIYwu1hV3tZGRpVHyvEXtZR53p99Kr6yd5mGcF/9OPOm1ZW7syd/vhxexnf3+JVXJUMlC4d3y5L6VYqylD87eOqMK4wPtm4Dmg==</data>
<data encoding="base64" compression="zlib">
eJytkkEOACEIA734Df//zD2ZEIPutEDixdixFOYaY8ITi2oIs4tV5W1tZFR5pBx/UUuZ5/3Zp+Ire5dpCPfVjzNvWl25O3vy58vhZXx3j195VTJUsnB4tyypX6UoS/mzg6fOuML4APYYJgM=
</data>
</layer>
<objectgroup name="Mapevents">
<object id="1" name="south" type="mapchange" x="96" y="608" width="64" height="32">