mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
externalised item properties into config/ItemSettings.js, cleaned properties away from level files, removed tmx files, added a few new items, added item property 'danger' and made it influence damage, therefore knifes are now more deadly than bananas :) - fixes #51
This commit is contained in:
parent
81f831142b
commit
7eb3d0b8b0
24 changed files with 356 additions and 2442 deletions
356
app/Game/Config/ItemSettings.js
Normal file
356
app/Game/Config/ItemSettings.js
Normal file
|
|
@ -0,0 +1,356 @@
|
||||||
|
define(function() {
|
||||||
|
|
||||||
|
var ItemSettings = {
|
||||||
|
|
||||||
|
"Default":
|
||||||
|
{
|
||||||
|
"category": "",
|
||||||
|
"image": "",
|
||||||
|
|
||||||
|
"type": "rectangle",
|
||||||
|
"weight": "2.5",
|
||||||
|
"width": "25",
|
||||||
|
"height": "25",
|
||||||
|
|
||||||
|
"rotation": "0",
|
||||||
|
"bounce": "0",
|
||||||
|
"grabAngle": "-1.5",
|
||||||
|
"danger": "1",
|
||||||
|
"bodyType": "dynamic",
|
||||||
|
},
|
||||||
|
|
||||||
|
"RagDoll":
|
||||||
|
{
|
||||||
|
"category": "graveyard",
|
||||||
|
"image": "chest.png",
|
||||||
|
|
||||||
|
"type": "ragdoll",
|
||||||
|
"weight": "5",
|
||||||
|
"width": "6",
|
||||||
|
"height": "12",
|
||||||
|
|
||||||
|
"bounce": "4",
|
||||||
|
"grabAngle": "-0.5",
|
||||||
|
"danger": "1",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Knife":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "knife.gif",
|
||||||
|
|
||||||
|
"weight": "1.5",
|
||||||
|
"width": "4",
|
||||||
|
"height": "15",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Large Knife":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "knife_big.gif",
|
||||||
|
|
||||||
|
"weight": "2.2",
|
||||||
|
"width": "4",
|
||||||
|
"height": "23",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Small Cleaver":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "cleaver_small.gif",
|
||||||
|
|
||||||
|
"weight": "2",
|
||||||
|
"width": "6",
|
||||||
|
"height": "17",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Large Cleaver":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "cleaver_large.gif",
|
||||||
|
|
||||||
|
"weight": "3",
|
||||||
|
"width": "8",
|
||||||
|
"height": "22",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Herb Chopper":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "herb_chopper.gif",
|
||||||
|
|
||||||
|
"weight": "1.1",
|
||||||
|
"width": "9",
|
||||||
|
"height": "7",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "2.6",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Fork": {
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "fork.gif",
|
||||||
|
|
||||||
|
"weight": "1.5",
|
||||||
|
"width": "5",
|
||||||
|
"height": "16",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "1.8",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Meat Fork": {
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "fork_meat.gif",
|
||||||
|
|
||||||
|
"weight": "2",
|
||||||
|
"width": "3",
|
||||||
|
"height": "22",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "1.9",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Spoon": {
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "spoon.gif",
|
||||||
|
|
||||||
|
"weight": "2",
|
||||||
|
"width": "4",
|
||||||
|
"height": "21",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
"danger": "1.1",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Plate": {
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "plate.gif",
|
||||||
|
|
||||||
|
"type": "circle",
|
||||||
|
"weight": "1.9",
|
||||||
|
"width": "13",
|
||||||
|
"height": "13",
|
||||||
|
|
||||||
|
"grabAngle": "0",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Cup": {
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "cup.gif",
|
||||||
|
|
||||||
|
"weight": "1.1",
|
||||||
|
"width": "8",
|
||||||
|
"height": "8",
|
||||||
|
|
||||||
|
"grabAngle": "-0.3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Can":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "can.gif",
|
||||||
|
|
||||||
|
"weight": "1",
|
||||||
|
"width": "4",
|
||||||
|
"height": "7",
|
||||||
|
|
||||||
|
"grabAngle": "-0.1",
|
||||||
|
"bounce": "2",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Rolling Pin":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "rolling_pin.gif",
|
||||||
|
|
||||||
|
"weight": "1.3",
|
||||||
|
"width": "6",
|
||||||
|
"height": "26",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Pan":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "pan.gif",
|
||||||
|
|
||||||
|
"weight": "1.4",
|
||||||
|
"width": "14",
|
||||||
|
"height": "8",
|
||||||
|
|
||||||
|
"grabAngle": "0.3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Refridgerator":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "fridge.gif",
|
||||||
|
|
||||||
|
"weight": "10",
|
||||||
|
"width": "31",
|
||||||
|
"height": "53",
|
||||||
|
|
||||||
|
"bounce": "0",
|
||||||
|
"grabAngle": "-0.5",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Microwave":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "microwave.gif",
|
||||||
|
|
||||||
|
"weight": "3.6",
|
||||||
|
"width": "19",
|
||||||
|
"height": "12",
|
||||||
|
|
||||||
|
"grabAngle": "-0.1",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Coffeemachine":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "coffeemachine.gif",
|
||||||
|
|
||||||
|
"weight": "2.4",
|
||||||
|
"width": "11",
|
||||||
|
"height": "14",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Toaster":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "toaster.gif",
|
||||||
|
|
||||||
|
"weight": "1.9",
|
||||||
|
"width": "15",
|
||||||
|
"height": "9",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Banana":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "banana.gif",
|
||||||
|
|
||||||
|
"weight": "1",
|
||||||
|
"width": "5",
|
||||||
|
"height": "9",
|
||||||
|
|
||||||
|
"grabAngle": "0.5",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Tomato":
|
||||||
|
{
|
||||||
|
"category": "kitchen",
|
||||||
|
"image": "tomato.gif",
|
||||||
|
|
||||||
|
"type": "circle",
|
||||||
|
"weight": "1",
|
||||||
|
"width": "8",
|
||||||
|
"height": "9",
|
||||||
|
|
||||||
|
"grabAngle": "-0.3",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Football":
|
||||||
|
{
|
||||||
|
"category": "outdoor",
|
||||||
|
"image": "football.gif",
|
||||||
|
|
||||||
|
"type": "circle",
|
||||||
|
"weight": "2",
|
||||||
|
"width": "10",
|
||||||
|
"height": "10",
|
||||||
|
|
||||||
|
"bounce": "6",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Skateboard":
|
||||||
|
{
|
||||||
|
"category": "outdoor",
|
||||||
|
"image": "skateboard.gif",
|
||||||
|
|
||||||
|
"type": "skateboard",
|
||||||
|
"weight": "1.5",
|
||||||
|
"width": "26",
|
||||||
|
"height": "6",
|
||||||
|
|
||||||
|
"grabAngle": "-1.5",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Laundry Machine":
|
||||||
|
{
|
||||||
|
"category": "laundry",
|
||||||
|
"image": "laundry_machine.gif",
|
||||||
|
|
||||||
|
"weight": "10",
|
||||||
|
"width": "24",
|
||||||
|
"height": "31",
|
||||||
|
|
||||||
|
"grabAngle": "-0.5",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Laundry Powder":
|
||||||
|
{
|
||||||
|
"category": "laundry",
|
||||||
|
"image": "laundry_powder.gif",
|
||||||
|
|
||||||
|
"weight": "2",
|
||||||
|
"width": "11",
|
||||||
|
"height": "13",
|
||||||
|
|
||||||
|
"grabAngle": "-0.2",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Bible":
|
||||||
|
{
|
||||||
|
"category": "livingroom",
|
||||||
|
"image": "book_bible.gif",
|
||||||
|
|
||||||
|
"weight": "1.5",
|
||||||
|
"width": "11",
|
||||||
|
"height": "14",
|
||||||
|
|
||||||
|
"grabAngle": "-0.2",
|
||||||
|
},
|
||||||
|
|
||||||
|
"Television":
|
||||||
|
{
|
||||||
|
"category": "livingroom",
|
||||||
|
"image": "television.gif",
|
||||||
|
|
||||||
|
"weight": "7",
|
||||||
|
"width": "24",
|
||||||
|
"height": "21",
|
||||||
|
|
||||||
|
"grabAngle": "-0.4",
|
||||||
|
},
|
||||||
|
|
||||||
|
"TV Cabinet":
|
||||||
|
{
|
||||||
|
"category": "livingroom",
|
||||||
|
"image": "telly_cabinet.gif",
|
||||||
|
|
||||||
|
"weight": "5",
|
||||||
|
"width": "24",
|
||||||
|
"height": "17",
|
||||||
|
|
||||||
|
"grabAngle": "-0.4",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
return ItemSettings;
|
||||||
|
});
|
||||||
|
|
@ -1,856 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<map version="1.0" orientation="orthogonal" width="100" height="100" tilewidth="25" tileheight="25" backgroundcolor="#171b1d">
|
|
||||||
<tileset firstgid="1" name="Stones" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="30" name="Wood" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="59" name="GrassSoil" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/10c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/13c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/43c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/61c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="29">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="30">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="31">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="32">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="92" name="Soil" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="121" name="Rock" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="150" name="Metal" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="179" name="Metal3" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="208" name="Rooftop" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<imagelayer name="background" visible="0">
|
|
||||||
<image source="../../img/Backgrounds/londonatnight.jpg"/>
|
|
||||||
</imagelayer>
|
|
||||||
<layer name="noncollision" width="100" height="100" visible="0" opacity="0.3">
|
|
||||||
<data encoding="base64" compression="zlib">
|
|
||||||
eJzt0VEJACAUBEHtaRHbKxhAvx4nzMAm2NYAAAAAAACOueuXqOVHFj+y+AEAAPCf8RB1/MjiBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQJYFUysKTg==
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
<objectgroup name="spawnpoints">
|
|
||||||
<object x="248.535" y="176.525">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="362.5" y="286">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="48.0496" y="352.397">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
</objectgroup>
|
|
||||||
<layer name="collision" width="100" height="100">
|
|
||||||
<data encoding="base64" compression="zlib">
|
|
||||||
eJzt2E8KgkAUB+C5l4tatO1Anstd0AXadKUUEkKdpLCZJ30fvJXCwPvNP21TeW2FMfeiRm/kkTf25tRX81LnAmMyV7I3l766Z7HMfhWLPGLZqjefnD/yyLM+YhnO1mvm2XTOb3Xvkkee9RGLPGKRRyzf9qapMOY/sD5ikUcs4/+k3J33F+SRt0Vvjmn+nTLUYfLePfmfuKbkXO2SPNaU3jtuFcbck6V9pkQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8N4DOHonMQ==
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
<objectgroup name="items">
|
|
||||||
<object x="502.607" y="384.589">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="22"/>
|
|
||||||
<property name="image" value="cleaver_large.gif"/>
|
|
||||||
<property name="name" value="Large Cleaver"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="3"/>
|
|
||||||
<property name="width" value="8"/>
|
|
||||||
<property name="x" value="40"/>
|
|
||||||
<property name="y" value="0"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="515.607" y="384.589">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="17"/>
|
|
||||||
<property name="image" value="cleaver_small.gif"/>
|
|
||||||
<property name="name" value="Small Cleaver"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="2"/>
|
|
||||||
<property name="width" value="6"/>
|
|
||||||
<property name="x" value="60"/>
|
|
||||||
<property name="y" value="0"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="462.607" y="385.255">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="15"/>
|
|
||||||
<property name="image" value="knife.gif"/>
|
|
||||||
<property name="name" value="Knife"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="1.5"/>
|
|
||||||
<property name="width" value="4"/>
|
|
||||||
<property name="x" value="140"/>
|
|
||||||
<property name="y" value="0"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="588" y="386">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="15"/>
|
|
||||||
<property name="image" value="knife.gif"/>
|
|
||||||
<property name="name" value="Knife"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="1.5"/>
|
|
||||||
<property name="width" value="4"/>
|
|
||||||
<property name="x" value="140"/>
|
|
||||||
<property name="y" value="0"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="530" y="384.333">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="22"/>
|
|
||||||
<property name="image" value="cleaver_large.gif"/>
|
|
||||||
<property name="name" value="Large Cleaver"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="3"/>
|
|
||||||
<property name="width" value="8"/>
|
|
||||||
<property name="x" value="40"/>
|
|
||||||
<property name="y" value="0"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="543" y="384.333">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="17"/>
|
|
||||||
<property name="image" value="cleaver_small.gif"/>
|
|
||||||
<property name="name" value="Small Cleaver"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="2"/>
|
|
||||||
<property name="width" value="6"/>
|
|
||||||
<property name="x" value="60"/>
|
|
||||||
<property name="y" value="0"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="244" y="448">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="graveyard"/>
|
|
||||||
<property name="grabAngle" value="0"/>
|
|
||||||
<property name="height" value="12"/>
|
|
||||||
<property name="image" value="chest.png"/>
|
|
||||||
<property name="name" value="RagDoll"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="ragdoll"/>
|
|
||||||
<property name="weight" value="3"/>
|
|
||||||
<property name="width" value="5"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
</objectgroup>
|
|
||||||
</map>
|
|
||||||
|
|
@ -1,766 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<map version="1.0" orientation="orthogonal" width="100" height="100" tilewidth="25" tileheight="25" backgroundcolor="#171b1d">
|
|
||||||
<tileset firstgid="1" name="Stones" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="30" name="Wood" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="59" name="GrassSoil" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/10c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/13c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/43c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/61c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="29">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="30">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="31">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="32">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="92" name="Soil" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="121" name="Rock" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="150" name="Metal" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="179" name="Metal3" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="208" name="Rooftop" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<imagelayer name="background" visible="0">
|
|
||||||
<image source="../../img/Backgrounds/londonatnight.jpg"/>
|
|
||||||
</imagelayer>
|
|
||||||
<layer name="noncollision" width="100" height="100" visible="0" opacity="0.3">
|
|
||||||
<data encoding="base64" compression="zlib">
|
|
||||||
eJzt0VEJACAUBEHtaRHbKxhAvx4nzMAm2NYAAAAAAACOueuXqOVHFj+y+AEAAPCf8RB1/MjiBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQJYFUysKTg==
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
<objectgroup name="spawnpoints">
|
|
||||||
<object x="487" y="662">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="727" y="711">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1086" y="436">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1379" y="459">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="587" y="287">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="253" y="186">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1027" y="233">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1404" y="312">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
</objectgroup>
|
|
||||||
<layer name="collision" width="100" height="100">
|
|
||||||
<data encoding="base64" compression="zlib">
|
|
||||||
eJzt2EtO40AQANDmCFyAS7AbBgESmgViw56LzLlAQqxZgxhpDkQsEk0mctJOtxtczntSbSLHrlK5f04JmLPfBRHF3OrpEyn/SLmWilRjpFxLRaoxUq6lItXYMteThvfeR+R+PGxEjbPK/48lcj+mqmasRamx0+X63PgZl+lzrNTGReHzo/Vj7iLVWJLr6Zbf+97pPj8Knllj7v2oWadzvRrq7yLeM/FneW20frReP8b2soijgdGJ1o8S2+asPrvmp9JxcpS/5KD6MWSt2DzLjHGmWTkecE3Xj2jfQ1vl+pa29+O10TM3DRlDUzO19eMp/d+7x4p7Re3HLlP5BrWuW8+7vHPnx5/flWCFbf0Y4zzdUqQ1YR9R64qad85X1jXWvnc1X81RX10t5pqx57FD6kcEUfPOWdW1z3l7TH1z2E36N5bu1n5f3+vNvR9fsSdauU6792XdPvV+Gec7rpmjmves9dnkPhNzVNuPlj3Rj5Su0jhnwVz8WsRtJrdD7Mfm/Lw+d089AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACA2D4ARk51nw==
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
</map>
|
|
||||||
|
|
@ -1,820 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<map version="1.0" orientation="orthogonal" width="100" height="100" tilewidth="25" tileheight="25" backgroundcolor="#171b1d">
|
|
||||||
<tileset firstgid="1" name="Stones" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Stones/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="30" name="Wood" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Wood/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="59" name="GrassSoil" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/10c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/13c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/43c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/61c.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="29">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="30">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="31">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="32">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/GrassSoil/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="92" name="Soil" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Soil/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="121" name="Rock" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rock/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="150" name="Metal" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="179" name="Metal3" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Metal3/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<tileset firstgid="208" name="Rooftop" tilewidth="25" tileheight="25">
|
|
||||||
<tile id="0">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/10.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="1">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/20.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="2">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/21.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="3">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/22.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="4">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/23.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="5">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/30.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="6">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/31.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="7">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/32.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="8">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/33.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="9">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/40.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="10">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/41.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="11">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/42.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="12">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/43.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="13">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/50.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="14">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/51.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="15">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/52.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="16">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/53.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="17">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/60.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="18">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/61.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="19">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/62.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="20">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/63.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="21">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/70.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="22">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/71.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="23">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/72.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="24">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/73.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="25">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/80.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="26">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/81.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="27">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/82.gif"/>
|
|
||||||
</tile>
|
|
||||||
<tile id="28">
|
|
||||||
<image width="25" height="25" source="../../img/Tiles/Rooftop/83.gif"/>
|
|
||||||
</tile>
|
|
||||||
</tileset>
|
|
||||||
<imagelayer name="background" visible="0">
|
|
||||||
<image source="../../img/Backgrounds/londonatnight.jpg"/>
|
|
||||||
</imagelayer>
|
|
||||||
<layer name="noncollision" width="100" height="100" visible="0" opacity="0.3">
|
|
||||||
<data encoding="base64" compression="zlib">
|
|
||||||
eJzt0VEJACAUBEHtaRHbKxhAvx4nzMAm2NYAAAAAAACOueuXqOVHFj+y+AEAAPCf8RB1/MjiBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQJYFUysKTg==
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
<objectgroup name="spawnpoints">
|
|
||||||
<object x="218.087" y="735.194">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="727" y="711">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1027" y="459">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1379" y="459">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="578.5" y="386">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="253" y="186">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="974.054" y="235.589">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
<object x="1891.66" y="507.864" rotation="-26.5663">
|
|
||||||
<ellipse/>
|
|
||||||
</object>
|
|
||||||
</objectgroup>
|
|
||||||
<layer name="collision" width="100" height="100">
|
|
||||||
<data encoding="base64" compression="zlib">
|
|
||||||
eJzt2M1KHEEUhuHjKmtvYBZZZGEWuQAniYIxIoHsspJkEZjN7DKgKARBAsGNiuZOsvIOjJo/yAWlKjMNPT09XdVTp6urJ+8DZyPV9qn5+qeqewJgWX0xdRhQl/FbruWj+M3jqq0GFV3IeC4ps/2dt91ERF3I43+S+nxT709b6vNNvT9tqc+32N/XQi2bruWx7FKfb4z+NkytK9RzhV7IY+xD4PEjlS7IIzV2vmdtN1HB9nfcdhML+GPql6N+lxyX/95yYupzjGZr6Or9seJZVU5NfRL3t6Ij/fbnajqPXkP/1/Vb+45xif3Na5FzbYp7/XNn6qfM7mfuTd0E9JtZ9RjzQOE8Vsp52Cz6pt4W/l5cP/2Q2Syy+l6/zVbFzsP3fT4vi2WX2v3xxtSOxMni1tS1x7iH4t4/PlPqKbU8Mlp7slCPZbxO2HPUU9HJJNU8UrEmfnlkmYR+p+nHmdY/XcvDPqd8s9CsWFzXj9YzWINPFvb99t7UcHKMfcbatd87xzF23GByTNn4WELv95cRenxk6olUZ5HlUKUsk/z6pLhmz4+Ppdifva5GMn3dDHPjbY9Z3yMJ/25bZlemn92azxPbs92r2j2pT+9t5JFdI/nra1AyVtOWVL8/m3y+2zX1N8+xbeRRponrvo7sHg0pjb1SKnmk4EAWz2K/5rmq3vddyeOFqdey2Jp+29SrgHM3IZU8KN33EwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/fwGIFcb/
|
|
||||||
</data>
|
|
||||||
</layer>
|
|
||||||
<objectgroup name="items">
|
|
||||||
<object x="749.607" y="237.255">
|
|
||||||
<properties>
|
|
||||||
<property name="bounce" value="6"/>
|
|
||||||
<property name="category" value="outdoor"/>
|
|
||||||
<property name="grabAngle" value="-1.5"/>
|
|
||||||
<property name="height" value="10"/>
|
|
||||||
<property name="image" value="football.gif"/>
|
|
||||||
<property name="name" value="Football"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="circle"/>
|
|
||||||
<property name="weight" value="2"/>
|
|
||||||
<property name="width" value="10"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="789.774" y="236.815">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="-0.5"/>
|
|
||||||
<property name="height" value="53"/>
|
|
||||||
<property name="image" value="fridge.gif"/>
|
|
||||||
<property name="name" value="Refridgerator"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="10"/>
|
|
||||||
<property name="width" value="31"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="538.333" y="388.678">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="kitchen"/>
|
|
||||||
<property name="grabAngle" value="0.3"/>
|
|
||||||
<property name="height" value="15"/>
|
|
||||||
<property name="image" value="knife.gif"/>
|
|
||||||
<property name="name" value="Knife"/>
|
|
||||||
<property name="rotation" value="0"/>
|
|
||||||
<property name="type" value="rectangle"/>
|
|
||||||
<property name="weight" value="1.5"/>
|
|
||||||
<property name="width" value="4"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
<object x="1309" y="461.5">
|
|
||||||
<properties>
|
|
||||||
<property name="category" value="outdoor"/>
|
|
||||||
<property name="grabAngle" value="-1,5"/>
|
|
||||||
<property name="height" value="6"/>
|
|
||||||
<property name="image" value="skateboard.gif"/>
|
|
||||||
<property name="name" value="Skateboard"/>
|
|
||||||
<property name="type" value="skateboard"/>
|
|
||||||
<property name="weight" value="1,5"/>
|
|
||||||
<property name="width" value="26"/>
|
|
||||||
</properties>
|
|
||||||
</object>
|
|
||||||
</objectgroup>
|
|
||||||
</map>
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue