Bridge flags properly enabled and working. Fix image paths in maps.

pull/28/head
sigonasr2 2 years ago
parent 3939ee5693
commit ef83e7f865
  1. 10
      Crawler/Crawler.cpp
  2. 6
      Crawler/Crawler.h
  3. 88
      Crawler/Crawler.tiled-project
  4. 4
      Crawler/Monster.cpp
  5. 1
      Crawler/Monster.h
  6. 6
      Crawler/Pathfinding.cpp
  7. 3
      Crawler/Pathfinding.h
  8. 6
      Crawler/Player.cpp
  9. 1
      Crawler/Player.h
  10. 2
      Crawler/Version.h
  11. 33
      Crawler/assets/Campaigns/1_1.tmx
  12. 1556
      Crawler/assets/Campaigns/1_1_test.tmx
  13. 549
      Crawler/assets/Campaigns/1_2.tmx
  14. 4
      Crawler/assets/Campaigns/grass_tiles_modded.tsx
  15. 315
      Crawler/assets/maps/grass_tiles_24x24.tsx
  16. 39
      Crawler/assets/maps/grass_tiles_modded.tsx

@ -970,20 +970,24 @@ TilesheetData Crawler::GetTileSheet(MapName map,int tileID){
}
}
bool Crawler::HasTileCollision(MapName map,vf2d pos){
geom2d::rect<int>collisionRect=GetTileCollision(map,pos);
bool Crawler::HasTileCollision(MapName map,vf2d pos,bool upperLevel){
geom2d::rect<int>collisionRect=GetTileCollision(map,pos,upperLevel);
vi2d collisionRectSnapPos=vi2d{pos/24}*24;
collisionRect.pos+=collisionRectSnapPos;
return geom2d::overlaps(collisionRect,pos);
}
geom2d::rect<int>Crawler::GetTileCollision(MapName map,vf2d pos){
geom2d::rect<int>Crawler::GetTileCollision(MapName map,vf2d pos,bool upperLevel){
for(LayerTag&layer:MAP_DATA[map].LayerData){
auto HasNoClass=[&](){return layer.tag.data.find("class")==layer.tag.data.end();};
auto BridgeCollisionIsActivated=[&](){return (layer.tag.data.find("class")!=layer.tag.data.end()&&layer.tag.data["class"]=="Bridge"&&upperLevel);};
if(HasNoClass()||BridgeCollisionIsActivated()){
int tileID=layer.tiles[int(pos.y)/24][int(pos.x)/24]-1;
if(tileID!=-1&&GetTileSheet(map,tileID).tileset.collision.find(tileID-GetTileSheet(map,tileID).firstgid+1)!=GetTileSheet(map,tileID).tileset.collision.end()){
return GetTileSheet(map,tileID).tileset.collision[tileID-GetTileSheet(map,tileID).firstgid+1].collision;
}
}
}
return NO_COLLISION;
}

@ -76,9 +76,9 @@ public:
bool IsForegroundTile(TilesheetData sheet,int tileID);
//tileID is the tile number from the tilesets.
TilesheetData GetTileSheet(MapName map,int tileID);
//Gets the rectangle of the tile collision at this tile.
geom2d::rect<int>GetTileCollision(MapName map,vf2d pos);
//Gets the rectangle of the tile collision at this tile. If upperLevel is set to true, the collision tile must be in a Bridge class layer for the tile to hit. Also, zones containing LowerBridgeCollision will apply when upperLevel is set to false.
geom2d::rect<int>GetTileCollision(MapName map,vf2d pos,bool upperLevel=false);
//Checks if the point resides inside of a collision tile.
bool HasTileCollision(MapName map,vf2d pos);
bool HasTileCollision(MapName map,vf2d pos,bool upperLevel=false);
MapName GetCurrentLevel();
};

@ -8,6 +8,19 @@
"."
],
"propertyTypes": [
{
"color": "#ff290aa4",
"drawFill": true,
"id": 8,
"members": [
],
"name": "Bridge",
"type": "class",
"useAs": [
"property",
"layer"
]
},
{
"color": "#ffbdc34c",
"drawFill": true,
@ -49,6 +62,38 @@
"tile"
]
},
{
"color": "#ffc3ae44",
"drawFill": true,
"id": 9,
"members": [
],
"name": "LowerBridgeCollision",
"type": "class",
"useAs": [
"property",
"object"
]
},
{
"color": "#ff5724a4",
"drawFill": true,
"id": 12,
"members": [
],
"name": "LowerZone",
"type": "class",
"useAs": [
"property",
"map",
"layer",
"object",
"tile",
"tileset",
"wangcolor",
"wangset"
]
},
{
"color": "#ffaa0000",
"drawFill": false,
@ -82,6 +127,19 @@
],
"valuesAsFlags": false
},
{
"color": "#fffa00f6",
"drawFill": true,
"id": 4,
"members": [
],
"name": "PlayerSpawnLocation",
"type": "class",
"useAs": [
"property",
"object"
]
},
{
"color": "#ffe67300",
"drawFill": true,
@ -159,12 +217,17 @@
]
},
{
"color": "#fffa00f6",
"color": "#ff9200e6",
"drawFill": true,
"id": 4,
"id": 6,
"members": [
{
"name": "connection",
"type": "object",
"value": 0
}
],
"name": "PlayerSpawnLocation",
"name": "Teleporter",
"type": "class",
"useAs": [
"property",
@ -172,21 +235,22 @@
]
},
{
"color": "#ff9200e6",
"color": "#ffa40aa4",
"drawFill": true,
"id": 6,
"id": 10,
"members": [
{
"name": "connection",
"type": "object",
"value": 0
}
],
"name": "Teleporter",
"name": "UpperZone",
"type": "class",
"useAs": [
"property",
"object"
"map",
"layer",
"object",
"tile",
"tileset",
"wangcolor",
"wangset"
]
}
]

@ -62,7 +62,7 @@ void Monster::PerformShootAnimation(){
bool Monster::SetX(float x){
vf2d newPos={x,pos.y};
vi2d tilePos=vi2d(newPos/24)*24;
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos);
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos,upperLevel);
if(collisionRect.pos==vi2d{0,0}&&collisionRect.size==vi2d{1,1}){
pos.x=std::clamp(x,12.f*GetSizeMult(),float(game->WORLD_SIZE.x*24-12*GetSizeMult()));
return true;
@ -79,7 +79,7 @@ bool Monster::SetX(float x){
bool Monster::SetY(float y){
vf2d newPos={pos.x,y};
vi2d tilePos=vi2d(newPos/24)*24;
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos);
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos,upperLevel);
if(collisionRect.pos==vi2d{0,0}&&collisionRect.size==vi2d{1,1}){
pos.y=std::clamp(y,12.f*GetSizeMult(),float(game->WORLD_SIZE.y*24-12*GetSizeMult()));
return true;

@ -79,6 +79,7 @@ struct Monster{
AnimationState GetDeathAnimationName();
bool hasHitPlayer=false;
bool canMove=true; //Set to false when stuck due to collisions.
bool upperLevel=false;
protected:
public:
Monster()=delete;

@ -13,6 +13,8 @@ void Pathfinding::Initialize(){
nodes[y * game->WORLD_SIZE.x + x].y = y;
geom2d::rect<int>tile=game->GetTileCollision(game->GetCurrentLevel(),{float(x*24),float(y*24)});
nodes[y * game->WORLD_SIZE.x + x].bObstacle = tile.pos!=game->NO_COLLISION.pos||tile.size!=game->NO_COLLISION.size;
tile=game->GetTileCollision(game->GetCurrentLevel(),{float(x*24),float(y*24)},true);
nodes[y * game->WORLD_SIZE.x + x].bObstacleUpper = tile.pos!=game->NO_COLLISION.pos||tile.size!=game->NO_COLLISION.size;
nodes[y * game->WORLD_SIZE.x + x].parent = nullptr;
nodes[y * game->WORLD_SIZE.x + x].bVisited = false;
}
@ -43,7 +45,7 @@ void Pathfinding::Initialize(){
nodeEnd = &nodes[(game->WORLD_SIZE.y / 2) * game->WORLD_SIZE.x + game->WORLD_SIZE.x-2];
}
int Pathfinding::Solve_AStar(vf2d startPos,vf2d endPos,float maxRange){
int Pathfinding::Solve_AStar(vf2d startPos,vf2d endPos,float maxRange,bool upperLevel){
float dist=sqrt(pow(endPos.x-startPos.x,2)+pow(endPos.y-startPos.y,2));
if(dist>maxRange*24)return maxRange;
@ -98,7 +100,7 @@ int Pathfinding::Solve_AStar(vf2d startPos,vf2d endPos,float maxRange){
nodeCurrent->bVisited = true;
for (auto nodeNeighbour : nodeCurrent->vecNeighbours)
{
if (!nodeNeighbour->bVisited && nodeNeighbour->bObstacle == 0)
if (!nodeNeighbour->bVisited && ((!upperLevel && nodeNeighbour->bObstacle == 0)||(upperLevel && nodeNeighbour->bObstacleUpper==0)))
listNotTestedNodes.push_back(nodeNeighbour);
float fPossiblyLowerGoal = nodeCurrent->fLocalGoal + distance(nodeCurrent, nodeNeighbour);

@ -5,6 +5,7 @@ struct Pathfinding{
struct sNode
{
bool bObstacle = false; // Is the node an obstruction?
bool bObstacleUpper = false; // Is the node an obstruction on the upper level?
bool bVisited = false; // Have we searched this node before?
float fGlobalGoal; // Distance to goal so far
float fLocalGoal; // Distance to goal if we took the alternative route
@ -21,5 +22,5 @@ struct Pathfinding{
void Initialize();
//maxRange in tiles.
int Solve_AStar(vf2d startPos,vf2d endPos,float maxRange=8);
int Solve_AStar(vf2d startPos,vf2d endPos,float maxRange=8,bool upperLevel=false);
};

@ -32,7 +32,7 @@ void Player::SetClass(Class cl){
bool Player::SetX(float x){
vf2d newPos={x,pos.y};
vi2d tilePos=vi2d(newPos/24)*24;
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos);
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos,upperLevel);
#pragma region lambdas
auto NoTileCollisionExistsHere=[&](){return collisionRect.pos==game->NO_COLLISION.pos&&collisionRect.size==game->NO_COLLISION.size;};
#pragma endregion
@ -56,7 +56,7 @@ bool Player::SetX(float x){
bool Player::SetY(float y){
vf2d newPos={pos.x,y};
vi2d tilePos=vi2d(newPos/24)*24;
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos);
geom2d::rect<int>collisionRect=game->GetTileCollision(game->GetCurrentLevel(),newPos,upperLevel);
#pragma region lambdas
auto NoTileCollisionExistsHere=[&](){return collisionRect.pos==game->NO_COLLISION.pos&&collisionRect.size==game->NO_COLLISION.size;};
#pragma endregion
@ -436,6 +436,6 @@ std::vector<Buff>Player::GetBuffs(BuffType buff){
}
bool Player::CanPathfindTo(vf2d pos,vf2d targetPos,float range){
int pathLength=path.Solve_AStar(pos,targetPos);
int pathLength=path.Solve_AStar(pos,targetPos,8,upperLevel);
return pathLength<8;//We'll say 7 tiles or less is close enough to 650 range. Have a little bit of wiggle room.
}

@ -50,6 +50,7 @@ struct Player{
Animate2D::AnimationState internal_animState;
Key lastReleasedMovementKey;
Key facingDirection;
bool upperLevel=false;
void AddAnimation(AnimationState state);
void Update(float fElapsedTime);
void SetSwordSwingTimer(float val);

@ -2,7 +2,7 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 0
#define VERSION_BUILD 472
#define VERSION_BUILD 476
#define stringify(a) stringify_(a)
#define stringify_(a) #a

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="64" height="64" tilewidth="24" tileheight="24" infinite="1" nextlayerid="4" nextobjectid="1">
<tileset firstgid="1" source="../maps/grass_tiles_24x24.tsx"/>
<tileset firstgid="784" source="grass_tiles_modded.tsx"/>
<tileset firstgid="1567" source="../../../../../Users/kai_f/Desktop/Crawler/crawler/Crawler/assets/maps/grass_tiles_24x24.tsx"/>
<tileset firstgid="784" source="../maps/grass_tiles_modded.tsx"/>
<layer id="1" name="Layer 1" width="64" height="64">
<data encoding="csv">
<chunk x="32" y="-144" width="16" height="16">
@ -636,22 +635,22 @@
206,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207
</chunk>
<chunk x="160" y="-80" width="16" height="16">
207,207,207,207,207,207,207,207,207,100,352,352,1918,352,43,352,
207,207,207,207,207,207,207,207,207,100,352,352,352,352,43,352,
70,207,207,44,207,207,207,207,207,207,352,352,352,352,352,352,
207,207,207,207,207,131,207,207,207,207,352,352,352,352,352,352,
207,207,207,207,207,207,207,207,207,207,352,352,352,100,352,352,
207,207,207,207,207,207,207,207,207,207,352,352,1892,817,815,816,
207,207,207,207,207,207,207,207,207,207,352,352,1919,843,844,845,
207,207,207,207,44,207,207,207,207,207,352,352,1919,872,873,874,
207,100,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,207,207,207,207,207,207,207,131,207,352,352,1919,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,131,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
207,207,207,207,207,41,207,207,207,207,352,352,1919,0,0,0
207,207,207,207,207,207,207,207,207,207,352,352,326,817,815,816,
207,207,207,207,207,207,207,207,207,207,352,352,353,843,844,845,
207,207,207,207,44,207,207,207,207,207,352,352,353,872,873,874,
207,100,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,207,207,207,207,207,207,207,131,207,352,352,353,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,131,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
207,207,207,207,207,41,207,207,207,207,352,352,353,0,0,0
</chunk>
<chunk x="32" y="-64" width="16" height="16">
0,0,0,0,0,352,355,178,178,178,178,178,207,207,207,207,
@ -798,8 +797,8 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="160" y="-64" width="16" height="16">
207,207,207,207,207,207,207,207,207,207,352,352,1919,0,0,0,
381,381,381,381,381,381,381,381,381,381,817,817,1948,0,0,0,
207,207,207,207,207,207,207,207,207,207,352,352,353,0,0,0,
381,381,381,381,381,381,381,381,381,381,817,817,382,0,0,0,
410,410,410,410,410,410,410,410,410,410,410,410,411,0,0,0,
410,410,410,410,410,410,410,410,410,410,410,410,411,0,0,0,
410,410,410,410,410,410,410,410,410,410,410,410,411,0,0,0,

File diff suppressed because it is too large Load Diff

@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<map version="1.10" tiledversion="1.10.1" orientation="orthogonal" renderorder="right-down" width="64" height="64" tilewidth="24" tileheight="24" infinite="1" nextlayerid="4" nextobjectid="1">
<tileset firstgid="1" source="../../../../../../../../Crawler_Project/Crawler/Crawler/assets/maps/grass_tiles_24x24.tsx"/>
<tileset firstgid="784" source="../../../../../../../../Crawler_Project/Crawler/Crawler/assets/Campaigns/grass_tiles_modded.tsx"/>
<tileset firstgid="1567" source="../maps/grass_tiles_24x24.tsx"/>
<tileset firstgid="1" source="../maps/grass_tiles_24x24.tsx"/>
<tileset firstgid="784" source="../maps/grass_tiles_modded.tsx"/>
<layer id="1" name="Layer 1" width="64" height="64">
<data encoding="csv">
<chunk x="128" y="-80" width="16" height="16">
@ -277,39 +276,39 @@
</chunk>
<chunk x="32" y="-16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,352,352,352,352,352,352,1665,1607,352,352,352,352,
0,0,0,0,352,352,352,352,352,352,99,41,352,352,352,352,
0,0,0,0,352,352,352,352,352,352,352,352,352,352,352,352,
0,0,0,0,352,352,352,352,352,352,352,352,352,352,352,352,
0,0,0,0,1607,352,352,352,1637,352,352,352,1697,352,2061,2207,
0,0,0,0,352,352,352,352,2061,2062,2062,2062,2062,2062,2207,2091,
0,0,0,0,352,352,352,1697,2090,2091,2091,2091,2091,2091,2091,2091,
0,0,0,0,352,352,352,352,2090,2091,2091,2091,2091,2091,2091,2091,
0,0,0,0,352,352,352,352,2090,2091,2091,2099,2091,2091,2091,2091,
0,0,0,0,352,352,352,352,2090,2091,2091,2091,2091,2098,2091,2091,
0,0,0,0,352,352,352,352,2090,2091,2091,2091,2091,2091,2091,2091,
0,0,0,0,352,352,1637,352,2090,2091,2091,2091,2128,2091,2091,2091,
0,0,0,0,352,352,352,352,2090,2091,2091,2091,2091,2091,2091,2091,
0,0,0,0,352,352,1697,352,2090,2091,2091,2069,2091,2091,2099,2091,
0,0,0,0,352,352,352,352,2090,2091,2091,2091,2091,2091,2091,2091,
0,0,0,0,352,352,352,1665,2090,2091,2091,2091,2091,2091,2091,2091
0,0,0,0,41,352,352,352,71,352,352,352,131,352,495,641,
0,0,0,0,352,352,352,352,495,496,496,496,496,496,641,525,
0,0,0,0,352,352,352,131,524,525,525,525,525,525,525,525,
0,0,0,0,352,352,352,352,524,525,525,525,525,525,525,525,
0,0,0,0,352,352,352,352,524,525,525,533,525,525,525,525,
0,0,0,0,352,352,352,352,524,525,525,525,525,532,525,525,
0,0,0,0,352,352,352,352,524,525,525,525,525,525,525,525,
0,0,0,0,352,352,71,352,524,525,525,525,562,525,525,525,
0,0,0,0,352,352,352,352,524,525,525,525,525,525,525,525,
0,0,0,0,352,352,131,352,524,525,525,503,525,525,533,525,
0,0,0,0,352,352,352,352,524,525,525,525,525,525,525,525,
0,0,0,0,352,352,352,99,524,525,525,525,525,525,525,525
</chunk>
<chunk x="48" y="-16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
352,352,352,352,352,352,352,352,352,1607,352,352,352,352,352,0,
352,352,352,352,352,352,352,352,352,41,352,352,352,352,352,0,
352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,0,
352,352,352,352,352,352,352,352,352,352,352,352,352,352,1610,0,
2069,2099,2206,2063,352,352,352,1665,352,352,1697,352,352,352,352,0,
2091,2091,2091,2206,2062,2062,2062,2062,2062,2062,2063,352,352,352,352,0,
2091,2091,2091,2091,2091,2091,2091,2091,2091,2091,2092,352,1637,352,352,0,
2091,2091,2091,2069,2091,2091,2091,2091,2091,2091,2092,352,352,352,352,0,
2091,2091,2091,2091,2091,2091,2091,2091,2091,2091,2092,352,352,352,352,0,
2091,2091,2127,2091,2091,2091,2099,2091,2091,2091,2092,352,1697,352,352,0,
2091,2091,2091,2091,2091,2091,2091,2091,2091,2091,2092,352,352,352,352,0,
2091,2070,2091,2091,2091,2091,2091,2091,2091,2091,2092,352,352,352,352,0,
2091,2091,2091,2091,2098,2091,2091,2091,2091,2091,2092,1665,352,352,352,0,
2091,2091,2091,2091,2091,2091,2091,2091,2069,2091,2092,352,352,352,352,0,
2091,2091,2091,2091,2091,2128,2091,2091,2091,2091,2092,352,352,352,352,0,
2091,2091,2091,2091,2091,2091,2091,2091,2091,2091,2092,1637,352,352,352,0
352,352,352,352,352,352,352,352,352,352,352,352,352,352,44,0,
503,533,640,497,352,352,352,99,352,352,131,352,352,352,352,0,
525,525,525,640,496,496,496,496,496,496,497,352,352,352,352,0,
525,525,525,525,525,525,525,525,525,525,526,352,71,352,352,0,
525,525,525,503,525,525,525,525,525,525,526,352,352,352,352,0,
525,525,525,525,525,525,525,525,525,525,526,352,352,352,352,0,
525,525,561,525,525,525,533,525,525,525,526,352,131,352,352,0,
525,525,525,525,525,525,525,525,525,525,526,352,352,352,352,0,
525,504,525,525,525,525,525,525,525,525,526,352,352,352,352,0,
525,525,525,525,532,525,525,525,525,525,526,99,352,352,352,0,
525,525,525,525,525,525,525,525,503,525,526,352,352,352,352,0,
525,525,525,525,525,562,525,525,525,525,526,352,352,352,352,0,
525,525,525,525,525,525,525,525,525,525,526,71,352,352,352,0
</chunk>
<chunk x="80" y="-16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -402,8 +401,8 @@
352,352,352,352,352,352,352,352,352,352,0,0,0,0,0,0
</chunk>
<chunk x="32" y="0" width="16" height="16">
0,0,0,0,352,352,352,352,2119,2120,2120,2120,2120,2120,2120,2120,
0,0,0,0,352,352,352,352,352,352,352,352,352,1697,352,352,
0,0,0,0,352,352,352,352,553,554,554,554,554,554,554,554,
0,0,0,0,352,352,352,352,352,352,352,352,352,131,352,352,
0,0,0,0,352,352,352,352,352,352,352,352,352,352,352,352,
0,0,0,0,0,0,0,0,0,0,0,0,352,352,352,352,
0,0,0,0,0,0,0,0,0,0,0,0,352,352,352,352,
@ -420,10 +419,10 @@
0,0,0,0,0,0,0,0,0,0,0,0,352,352,352,352
</chunk>
<chunk x="48" y="0" width="16" height="16">
2120,2120,2120,2120,2120,2120,2120,2120,2120,2120,2121,352,352,352,352,0,
554,554,554,554,554,554,554,554,554,554,555,352,352,352,352,0,
352,352,352,352,352,352,352,352,352,352,352,352,352,352,352,0,
352,352,352,352,352,352,1697,352,352,352,352,352,352,352,352,0,
352,352,1637,352,352,352,352,352,0,0,0,0,0,0,0,0,
352,352,352,352,352,352,131,352,352,352,352,352,352,352,352,0,
352,352,71,352,352,352,352,352,0,0,0,0,0,0,0,0,
352,352,352,352,352,352,352,352,0,0,0,0,0,0,0,0,
352,352,352,352,352,352,352,352,0,0,0,0,0,0,0,0,
352,352,352,352,352,352,352,352,0,0,0,0,0,0,0,0,
@ -1271,147 +1270,147 @@
<data encoding="csv">
<chunk x="32" y="-16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1643,0,0,1622,0,0,0,0,1642,0,2090,
0,0,0,0,1642,1747,1802,1802,1802,1802,1802,1802,1802,1802,1802,2264,
0,0,0,0,1622,1774,1831,1831,1831,1831,1831,1831,1831,1831,1831,2293,
0,0,0,0,0,1774,0,0,0,0,1642,0,0,1643,0,0,
0,0,0,0,1802,1803,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1831,1832,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1611,1612,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1640,1641,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1642,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1651,1652,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1642,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1611,1612,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1640,1641,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1651,1652,0,0,0,0,0,0,0,0,0,0
0,0,0,0,0,77,0,0,56,0,0,0,0,76,0,524,
0,0,0,0,76,181,236,236,236,236,236,236,236,236,236,698,
0,0,0,0,56,208,265,265,265,265,265,265,265,265,265,727,
0,0,0,0,0,208,0,0,0,0,76,0,0,77,0,0,
0,0,0,0,236,237,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,265,266,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,45,46,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,74,75,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,85,86,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,114,115,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,45,46,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,74,75,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,85,86,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="48" y="-16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
2091,2091,2092,0,0,0,1622,1642,0,0,1643,0,1622,0,0,0,
2265,2266,2267,1802,1802,1802,1802,1802,1802,1802,1802,1802,1802,1748,1642,0,
2294,2295,2296,1831,1831,1831,1831,1831,1831,1831,1831,1831,1831,1772,0,0,
0,0,0,0,1642,0,0,0,0,0,0,0,0,1772,1622,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1801,1802,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1830,1831,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1611,1612,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1640,1641,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1651,1652,0
525,525,526,0,0,0,56,76,0,0,77,0,56,0,0,0,
699,700,701,236,236,236,236,236,236,236,236,236,236,182,76,0,
728,729,730,265,265,265,265,265,265,265,265,265,265,206,0,0,
0,0,0,0,76,0,0,0,0,0,0,0,0,206,56,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,235,236,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,264,265,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,85,86,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,85,86,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,45,46,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,74,75,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,85,86,0
</chunk>
<chunk x="32" y="0" width="16" height="16">
0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1651,1652,1642,1611,1612,0,0,0,0,0,0,
0,0,0,0,1643,1680,1681,0,1640,1641,1642,1622,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1642,1642,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1611,1612,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1640,1641,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1611,1612,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1640,1641,0,
0,0,0,0,0,0,0,0,0,0,0,0,1622,1651,1652,1642,
0,0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0
0,0,0,0,114,115,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,85,86,76,45,46,0,0,0,0,0,0,
0,0,0,0,77,114,115,0,74,75,76,56,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,76,76,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,45,46,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,74,75,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,85,86,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,45,46,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,74,75,0,
0,0,0,0,0,0,0,0,0,0,0,0,56,85,86,76,
0,0,0,0,0,0,0,0,0,0,0,0,0,114,115,0
</chunk>
<chunk x="48" y="0" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,
0,0,0,0,0,0,0,0,0,0,0,1622,1611,1612,0,0,
0,0,0,0,0,0,0,0,1642,1622,1642,0,1640,1641,1643,0,
0,0,0,0,0,0,1611,1612,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1640,1641,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1651,1652,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,
0,1667,0,0,0,1651,1652,0,0,0,0,0,0,0,0,0,
0,0,0,1608,0,1680,1681,0,0,0,0,0,0,0,0,0,
0,0,0,0,1611,1612,0,1642,0,0,0,0,0,0,0,0,
0,1697,0,0,1640,1641,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1611,1612,0,0,0,0,0,0,0,0,
1608,0,0,0,1642,0,1640,1641,0,0,0,0,0,0,0,0,
0,0,0,0,1651,1652,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1680,1681,1620,1621,0,0,0,0,0,0,0,0,
1636,0,0,0,0,0,1649,1650,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,
0,0,0,0,0,0,0,0,0,0,0,56,45,46,0,0,
0,0,0,0,0,0,0,0,76,56,76,0,74,75,77,0,
0,0,0,0,0,0,45,46,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,74,75,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,85,86,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,114,115,0,0,0,0,0,0,0,0,
0,101,0,0,0,85,86,0,0,0,0,0,0,0,0,0,
0,0,0,42,0,114,115,0,0,0,0,0,0,0,0,0,
0,0,0,0,45,46,0,76,0,0,0,0,0,0,0,0,
0,131,0,0,74,75,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,45,46,0,0,0,0,0,0,0,0,
42,0,0,0,76,0,74,75,0,0,0,0,0,0,0,0,
0,0,0,0,85,86,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,114,115,54,55,0,0,0,0,0,0,0,0,
70,0,0,0,0,0,83,84,0,0,0,0,0,0,0,0
</chunk>
<chunk x="32" y="16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,1611,1612,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1640,1641,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1622,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1611,1612,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1640,1641,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,0,
0,0,0,1611,1612,0,0,0,0,0,1611,1612,0,0,1697,0,
0,0,0,1640,1641,0,1651,1652,0,0,1640,1641,0,0,0,0,
0,0,0,0,0,0,1680,1681,0,1642,0,0,0,0,0,0,
0,0,0,0,1609,0,0,0,0,1651,1652,0,0,0,0,0,
0,0,1651,1652,0,1611,1612,0,0,1680,1681,0,0,0,0,0,
0,0,1680,1681,1636,1640,1641,0,0,0,0,0,0,0,1609,0,
0,0,1611,1612,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1640,1641,0,1622,1651,1652,0,0,0,0,0,0,0,0,
0,0,0,0,1622,0,1680,1681,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,0,0,0,0,0,45,46,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,74,75,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,45,46,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,74,75,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,85,86,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,0,
0,0,0,45,46,0,0,0,0,0,45,46,0,0,131,0,
0,0,0,74,75,0,85,86,0,0,74,75,0,0,0,0,
0,0,0,0,0,0,114,115,0,76,0,0,0,0,0,0,
0,0,0,0,43,0,0,0,0,85,86,0,0,0,0,0,
0,0,85,86,0,45,46,0,0,114,115,0,0,0,0,0,
0,0,114,115,70,74,75,0,0,0,0,0,0,0,43,0,
0,0,45,46,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,74,75,0,56,85,86,0,0,0,0,0,0,0,0,
0,0,0,0,56,0,114,115,0,0,0,0,0,0,0,0
</chunk>
<chunk x="48" y="16" width="16" height="16">
0,0,0,0,0,1622,1678,1679,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1667,0,1642,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1622,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1611,1612,0,0,0,0,0,0,0,0,0,
0,1608,0,0,0,1640,1641,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1651,1652,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1622,0,0,1636,0,0,0,0,0,0,
0,0,0,0,0,0,0,1611,1612,0,0,0,0,0,0,0,
0,0,0,0,0,0,1642,1640,1641,1651,1652,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,1680,1681,0,0,0,1609,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1697,0,0,0,0,0,0,0,0,0,1651,1652,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,
0,0,0,1609,0,0,0,0,0,0,0,0,0,0,0,0
0,0,0,0,0,56,112,113,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,101,0,76,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,45,46,0,0,0,0,0,0,0,0,0,
0,42,0,0,0,74,75,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,85,86,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,114,115,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,56,0,0,70,0,0,0,0,0,0,
0,0,0,0,0,0,0,45,46,0,0,0,0,0,0,0,
0,0,0,0,0,0,76,74,75,85,86,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,114,115,0,0,0,43,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,131,0,0,0,0,0,0,0,0,0,85,86,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,
0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="32" y="32" width="16" height="16">
0,0,1611,1612,0,0,0,0,0,0,1636,0,0,0,1667,0,
0,0,1640,1641,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1622,0,0,0,0,1610,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1609,
0,0,0,1610,0,0,0,0,0,0,1697,0,0,0,0,0,
0,0,1651,1652,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1680,1681,1611,1612,0,0,0,0,0,0,0,0,0,0,
0,0,0,1636,1640,1641,0,1611,1612,0,0,0,0,0,0,1609,
0,0,0,0,1622,0,0,1640,1641,0,0,1610,0,0,0,0,
0,0,0,0,1622,1651,1652,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,0,
0,0,1611,1612,0,1651,1652,1611,1612,0,0,0,0,0,0,0,
0,0,1640,1641,0,1680,1681,1640,1641,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,1651,1652,1611,1612,0,0,0,0,
0,0,0,0,0,0,1610,0,1680,1681,1640,1641,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0
0,0,45,46,0,0,0,0,0,0,70,0,0,0,101,0,
0,0,74,75,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,56,0,0,0,0,44,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,
0,0,0,44,0,0,0,0,0,0,131,0,0,0,0,0,
0,0,85,86,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,114,115,45,46,0,0,0,0,0,0,0,0,0,0,
0,0,0,70,74,75,0,45,46,0,0,0,0,0,0,43,
0,0,0,0,56,0,0,74,75,0,0,44,0,0,0,0,
0,0,0,0,56,85,86,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,114,115,0,0,0,0,0,0,0,0,0,
0,0,45,46,0,85,86,45,46,0,0,0,0,0,0,0,
0,0,74,75,0,114,115,74,75,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,85,86,45,46,0,0,0,0,
0,0,0,0,0,0,44,0,114,115,74,75,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0
</chunk>
<chunk x="48" y="32" width="16" height="16">
0,0,0,0,0,0,0,1609,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,1610,0,0,0,0,0,0,0,0,1609,1608,0,0,0,0,
0,0,0,0,0,1610,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1667,0,0,0,1609,0,0,1697,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1651,1652,1642,
0,0,0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,
0,0,0,0,0,0,0,1636,0,0,0,0,0,1611,1612,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1640,1641,0,
0,1697,0,0,1609,0,0,0,0,0,0,0,0,0,1642,0,
0,0,0,0,0,0,0,1611,1612,0,0,0,0,1651,1652,0,
0,0,0,0,0,0,0,1640,1641,1636,0,0,0,1680,1681,0,
0,0,0,0,0,0,1642,0,1651,1652,0,0,0,0,0,0,
0,0,0,0,1611,1612,1610,0,1680,1681,1610,0,0,0,1609,0,
0,0,0,0,1640,1641,0,0,0,0,0,0,0,0,0,0
0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,44,0,0,0,0,0,0,0,0,43,42,0,0,0,0,
0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,101,0,0,0,43,0,0,131,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,85,86,76,
0,0,0,0,0,0,0,0,0,0,0,0,0,114,115,0,
0,0,0,0,0,0,0,70,0,0,0,0,0,45,46,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,74,75,0,
0,131,0,0,43,0,0,0,0,0,0,0,0,0,76,0,
0,0,0,0,0,0,0,45,46,0,0,0,0,85,86,0,
0,0,0,0,0,0,0,74,75,70,0,0,0,114,115,0,
0,0,0,0,0,0,76,0,85,86,0,0,0,0,0,0,
0,0,0,0,45,46,44,0,114,115,44,0,0,0,43,0,
0,0,0,0,74,75,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="64" y="32" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1420,7 +1419,7 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1434,38 +1433,38 @@
<chunk x="32" y="48" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,73,0,
0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1651,1652,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1680,1681,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,1642,0,0,
0,0,0,0,0,0,0,0,0,0,0,85,86,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,114,115,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,85,86,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,114,115,0,73,0,
0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,85,86,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,114,115,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,85,86,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,114,115,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="48" y="48" width="16" height="16">
0,0,0,1620,1621,1622,0,0,0,0,0,0,0,0,0,0,
0,73,0,1649,1650,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1678,1679,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1642,1651,1652,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1622,1642,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,1642,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1651,1652,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,1680,1681,0,0,0,0,0,0,0,0,0,0,
0,0,0,1620,1621,1642,0,0,0,0,0,0,0,0,0,0,
0,0,0,1649,1650,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1678,1679,0,0,0,0,0,0,0,0,0,0,0,
101,0,0,0,1642,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1651,1652,1642,0,0,0,0,0,0,0,0,0,0
0,0,0,54,55,56,0,0,0,0,0,0,0,0,0,0,
0,73,0,83,84,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,112,113,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,76,85,86,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,114,115,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,56,76,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,85,86,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,114,115,0,0,0,0,0,0,0,0,0,0,
0,0,0,54,55,76,0,0,0,0,0,0,0,0,0,0,
0,0,0,83,84,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,112,113,0,0,0,0,0,0,0,0,0,0,0,
101,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,85,86,76,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="0" y="64" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1522,7 +1521,7 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="48" y="64" width="16" height="16">
0,0,0,1680,1681,0,76,85,86,0,0,85,86,0,0,0,
0,0,0,114,115,0,76,85,86,0,0,85,86,0,0,0,
0,0,0,0,0,0,0,114,115,0,0,114,115,0,0,0,
0,0,0,0,0,0,0,0,56,56,0,0,76,0,0,0,
0,128,0,0,0,0,0,0,0,0,76,56,0,0,0,0,
@ -1672,13 +1671,13 @@
<chunk x="32" y="0" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1731,1732,1733,1734,1735,
0,0,0,0,0,0,0,0,0,0,0,1760,1761,1762,1763,1764,
0,0,0,0,0,0,0,0,0,0,0,1789,1790,1791,1792,1793,
0,0,0,0,0,0,0,0,0,0,0,1818,1819,1820,1821,1822,
0,0,0,0,0,0,0,0,0,0,0,1847,1848,1849,1850,1851,
0,0,0,0,0,0,0,0,0,0,0,1876,1877,1878,1879,1880,
0,0,0,0,0,0,0,0,0,0,0,1905,1906,1907,1908,1909,
0,0,0,0,0,0,0,0,0,0,0,165,166,167,168,169,
0,0,0,0,0,0,0,0,0,0,0,194,195,196,197,198,
0,0,0,0,0,0,0,0,0,0,0,223,224,225,226,227,
0,0,0,0,0,0,0,0,0,0,0,252,253,254,255,256,
0,0,0,0,0,0,0,0,0,0,0,281,282,283,284,285,
0,0,0,0,0,0,0,0,0,0,0,310,311,312,313,314,
0,0,0,0,0,0,0,0,0,0,0,339,340,341,342,343,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1690,20 +1689,20 @@
<chunk x="48" y="0" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,1731,1732,1733,1734,1735,1736,0,0,0,0,0,0,0,
0,0,0,1760,1761,1762,1763,1764,1765,0,0,0,0,0,0,0,
0,0,0,1789,1790,1791,1792,1793,1794,0,0,0,0,0,0,0,
0,0,0,1818,1819,1820,1821,1822,1823,0,0,0,0,0,0,0
0,0,0,165,166,167,168,169,170,0,0,0,0,0,0,0,
0,0,0,194,195,196,197,198,199,0,0,0,0,0,0,0,
0,0,0,223,224,225,226,227,228,0,0,0,0,0,0,0,
0,0,0,252,253,254,255,256,257,0,0,0,0,0,0,0
</chunk>
<chunk x="32" y="16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1713,31 +1712,31 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,1731,1732,1733,1734,1735,1736,0,0,0,0,
0,0,0,0,0,0,1760,1761,1762,1763,1764,1765,0,0,0,0,
0,0,0,0,0,0,1789,1790,1791,1792,1793,1794,0,0,0,0,
0,0,0,0,0,0,1818,1819,1820,1821,1822,1823,0,0,0,0,
0,0,0,0,0,0,1847,1848,1849,1850,1851,1852,0,0,0,0,
0,0,0,0,0,0,1876,1877,1878,1879,1880,1881,0,0,0,0,
0,0,0,0,0,0,1905,1906,1907,1908,1909,1910,0,0,0,0,
0,0,1731,1732,1733,1734,1735,1736,0,0,0,0,0,0,0,0,
0,0,1760,1761,1762,1763,1764,1765,0,0,0,0,0,0,0,0
0,0,0,0,0,0,165,166,167,168,169,170,0,0,0,0,
0,0,0,0,0,0,194,195,196,197,198,199,0,0,0,0,
0,0,0,0,0,0,223,224,225,226,227,228,0,0,0,0,
0,0,0,0,0,0,252,253,254,255,256,257,0,0,0,0,
0,0,0,0,0,0,281,282,283,284,285,286,0,0,0,0,
0,0,0,0,0,0,310,311,312,313,314,315,0,0,0,0,
0,0,0,0,0,0,339,340,341,342,343,344,0,0,0,0,
0,0,165,166,167,168,169,170,0,0,0,0,0,0,0,0,
0,0,194,195,196,197,198,199,0,0,0,0,0,0,0,0
</chunk>
<chunk x="48" y="16" width="16" height="16">
0,0,0,1847,1848,1849,1850,1851,1852,0,0,0,0,0,0,0,
0,0,0,1876,1877,1878,1879,1880,1881,0,0,0,0,0,0,0,
0,0,0,1905,1906,1907,1908,1909,1910,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1731,1732,1733,1734,1735,1736,0,0,0,0,0,0,0,0,
0,0,1760,1761,1762,1763,1764,1765,0,0,0,0,0,0,0,0,
0,0,1789,1790,1791,1792,1793,1794,0,0,0,0,0,0,0,0,
0,0,1818,1819,1820,1821,1822,1823,0,1731,1732,1733,1734,1735,1736,0,
0,0,1847,1848,1849,1850,1851,1852,0,1760,1761,1762,1763,1764,1765,0,
0,0,1876,1877,1878,1879,1880,1881,0,1789,1790,1791,1792,1793,1794,0,
0,0,1905,1906,1907,1908,1909,1910,0,1818,1819,1820,1821,1822,1823,0,
0,0,0,0,0,0,0,0,0,1847,1848,1849,1850,1851,1852,0,
0,0,0,0,0,0,0,0,0,1876,1877,1878,1879,1880,1881,0,
0,0,0,0,0,0,0,0,0,1905,1906,1907,1908,1909,1910,0,
0,0,0,281,282,283,284,285,286,0,0,0,0,0,0,0,
0,0,0,310,311,312,313,314,315,0,0,0,0,0,0,0,
0,0,0,339,340,341,342,343,344,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,165,166,167,168,169,170,0,0,0,0,0,0,0,0,
0,0,194,195,196,197,198,199,0,0,0,0,0,0,0,0,
0,0,223,224,225,226,227,228,0,0,0,0,0,0,0,0,
0,0,252,253,254,255,256,257,0,165,166,167,168,169,170,0,
0,0,281,282,283,284,285,286,0,194,195,196,197,198,199,0,
0,0,310,311,312,313,314,315,0,223,224,225,226,227,228,0,
0,0,339,340,341,342,343,344,0,252,253,254,255,256,257,0,
0,0,0,0,0,0,0,0,0,281,282,283,284,285,286,0,
0,0,0,0,0,0,0,0,0,310,311,312,313,314,315,0,
0,0,0,0,0,0,0,0,0,339,340,341,342,343,344,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
@ -1756,8 +1755,8 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,1731,1732,1733,1734,1735,
0,0,0,0,0,0,0,0,0,0,0,1760,1761,1762,1763,1764
0,0,0,0,0,0,0,0,0,0,0,165,166,167,168,169,
0,0,0,0,0,0,0,0,0,0,0,194,195,196,197,198
</chunk>
<chunk x="80" y="16" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1774,53 +1773,53 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="32" y="32" width="16" height="16">
0,0,1789,1790,1791,1792,1793,1794,0,0,0,0,0,0,0,0,
0,0,1818,1819,1820,1821,1822,1823,0,0,0,0,0,0,0,0,
0,0,1847,1848,1849,1850,1851,1852,0,0,0,0,0,0,0,0,
0,0,1876,1877,1878,1879,1880,1881,0,0,0,0,0,0,0,0,
0,0,1905,1906,1907,1908,1909,1910,0,0,0,0,0,0,0,0,
0,0,223,224,225,226,227,228,0,0,0,0,0,0,0,0,
0,0,252,253,254,255,256,257,0,0,0,0,0,0,0,0,
0,0,281,282,283,284,285,286,0,0,0,0,0,0,0,0,
0,0,310,311,312,313,314,315,0,0,0,0,0,0,0,0,
0,0,339,340,341,342,343,344,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1731,1732,1733,1734,1735,1736,0,0,0,0,0,0,0,0,
0,0,1760,1761,1762,1763,1764,1765,0,0,0,0,0,0,0,0,
0,0,1789,1790,1791,1792,1793,1794,0,0,0,0,0,0,0,0,
0,0,1818,1819,1820,1821,1822,1823,0,0,165,166,167,168,169,170,
0,0,1847,1848,1849,1850,1851,1852,0,0,194,195,196,197,198,199,
0,0,1876,1877,1878,1879,1880,1881,0,0,223,224,225,226,227,228,
0,0,1905,1906,1907,1908,1909,1910,0,0,252,253,254,255,256,257,
0,0,165,166,167,168,169,170,0,0,0,0,0,0,0,0,
0,0,194,195,196,197,198,199,0,0,0,0,0,0,0,0,
0,0,223,224,225,226,227,228,0,0,0,0,0,0,0,0,
0,0,252,253,254,255,256,257,0,0,165,166,167,168,169,170,
0,0,281,282,283,284,285,286,0,0,194,195,196,197,198,199,
0,0,310,311,312,313,314,315,0,0,223,224,225,226,227,228,
0,0,339,340,341,342,343,344,0,0,252,253,254,255,256,257,
0,0,0,0,0,0,0,0,0,0,281,282,283,284,285,286
</chunk>
<chunk x="48" y="32" width="16" height="16">
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1731,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1760,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1789,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1818,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1847,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1876,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1905,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,1731,1732,1733,1734,1735,1736,0,
0,0,0,0,0,0,0,0,0,1760,1761,1762,1763,1764,1765,0,
0,0,0,0,0,0,0,0,0,1789,1790,1791,1792,1793,1794,0,
0,0,0,0,0,0,0,0,0,1818,1819,1820,1821,1822,1823,0,
0,0,0,0,0,0,0,0,0,1847,1848,1849,1850,1851,1852,0,
0,0,0,0,0,0,0,0,0,1876,1877,1878,1879,1880,1881,0,
0,0,0,0,0,0,0,0,0,1905,1906,1907,1908,1909,1910,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,223,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,310,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,339,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,165,166,167,168,169,170,0,
0,0,0,0,0,0,0,0,0,194,195,196,197,198,199,0,
0,0,0,0,0,0,0,0,0,223,224,225,226,227,228,0,
0,0,0,0,0,0,0,0,0,252,253,254,255,256,257,0,
0,0,0,0,0,0,0,0,0,281,282,283,284,285,286,0,
0,0,0,0,0,0,0,0,0,310,311,312,313,314,315,0,
0,0,0,0,0,0,0,0,0,339,340,341,342,343,344,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="64" y="32" width="16" height="16">
1732,1733,1734,1735,1736,0,0,0,0,0,0,1789,1790,1791,1792,1793,
1761,1762,1763,1764,1765,0,0,0,0,0,0,1818,1819,1820,1821,1822,
1790,1791,1792,1793,1794,0,0,0,0,0,0,1847,1848,1849,1850,1851,
1819,1820,1821,1822,1823,0,0,0,0,0,0,1876,1877,1878,1879,1880,
1848,1849,1850,1851,1852,0,0,0,0,0,0,1905,1906,1907,1908,1909,
1877,1878,1879,1880,1881,0,0,0,0,0,0,0,0,0,0,0,
1906,1907,1908,1909,1910,0,0,0,0,0,0,0,0,0,0,0,
166,167,168,169,170,0,0,0,0,0,0,223,224,225,226,227,
195,196,197,198,199,0,0,0,0,0,0,252,253,254,255,256,
224,225,226,227,228,0,0,0,0,0,0,281,282,283,284,285,
253,254,255,256,257,0,0,0,0,0,0,310,311,312,313,314,
282,283,284,285,286,0,0,0,0,0,0,339,340,341,342,343,
311,312,313,314,315,0,0,0,0,0,0,0,0,0,0,0,
340,341,342,343,344,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@ -1832,11 +1831,11 @@
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
</chunk>
<chunk x="80" y="32" width="16" height="16">
1794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.10.1" name="grass_tiles_modded" tilewidth="24" tileheight="24" tilecount="783" columns="29">
<image source="../maps/grass_tiles_modded.png" width="696" height="648"/>
</tileset>

@ -1,30 +1,140 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.10.1" name="grass_tiles_24x24" tilewidth="24" tileheight="24" tilecount="783" columns="29">
<image source="grass_tiles_24x24.png" width="696" height="648"/>
<tile id="0">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="164" type="ForegroundTile"/>
<tile id="165" type="ForegroundTile"/>
<tile id="166" type="ForegroundTile"/>
<tile id="167" type="ForegroundTile"/>
<tile id="168" type="ForegroundTile"/>
<tile id="169" type="ForegroundTile"/>
<tile id="176">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="177">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="178">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="180">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="181">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="193" type="ForegroundTile"/>
<tile id="194" type="ForegroundTile"/>
<tile id="195" type="ForegroundTile"/>
<tile id="196" type="ForegroundTile"/>
<tile id="197" type="ForegroundTile"/>
<tile id="198" type="ForegroundTile"/>
<tile id="204">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="205">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="207">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="208">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="209">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="210">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="222" type="ForegroundTile"/>
<tile id="223" type="ForegroundTile"/>
<tile id="224" type="ForegroundTile"/>
<tile id="225" type="ForegroundTile"/>
<tile id="226" type="ForegroundTile"/>
<tile id="227" type="ForegroundTile"/>
<tile id="233">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="234">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="235">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="236">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="237">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="238">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="239">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="251" type="ForegroundTile"/>
<tile id="252" type="ForegroundTile"/>
<tile id="253" type="ForegroundTile"/>
<tile id="254" type="ForegroundTile"/>
<tile id="255" type="ForegroundTile"/>
<tile id="256" type="ForegroundTile"/>
<tile id="263">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="264">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="265">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="280" type="ForegroundTile"/>
<tile id="281" type="ForegroundTile"/>
<tile id="282" type="ForegroundTile"/>
@ -52,6 +162,71 @@
<object id="1" x="0" y="0" width="9" height="24"/>
</objectgroup>
</tile>
<tile id="320">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="321">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="322">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="323">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="324">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="325">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="326">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="328">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="331">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="333">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="334">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="335">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="336">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="339">
<objectgroup draworder="index" id="2">
<object id="1" x="13" y="0" width="11" height="22"/>
@ -72,4 +247,144 @@
<object id="1" x="0" y="0" width="6" height="22"/>
</objectgroup>
</tile>
<tile id="349">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="350">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="352">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="353">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="354">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="355">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="357">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="360">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="378">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="379">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="380">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="381">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="382">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="383">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="384">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="386">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="389">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="407">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="408">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="410">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="411">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="420">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="421">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="422">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="423">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="437">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="438">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="439">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
</tileset>

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<tileset version="1.10" tiledversion="1.10.1" name="grass_tiles_modded" tilewidth="24" tileheight="24" tilecount="783" columns="29">
<image source="grass_tiles_modded.png" width="696" height="648"/>
<tile id="30">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="31">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="32">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="33">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="34">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="35">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
<tile id="36">
<objectgroup draworder="index" id="2">
<object id="1" x="0" y="0" width="24" height="24"/>
</objectgroup>
</tile>
</tileset>
Loading…
Cancel
Save