From 8844defb44fad9bd51ee644046c9abd9dd9f202a Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 22 Mar 2015 10:50:59 +0000 Subject: [PATCH 1/7] Fix TileSet.Save(). --- OpenRA.Game/Map/TileSet.cs | 69 +++++++++++++++++++++----------------- 1 file changed, 39 insertions(+), 30 deletions(-) diff --git a/OpenRA.Game/Map/TileSet.cs b/OpenRA.Game/Map/TileSet.cs index 613864956a..05ab4bb63c 100644 --- a/OpenRA.Game/Map/TileSet.cs +++ b/OpenRA.Game/Map/TileSet.cs @@ -12,6 +12,7 @@ using System.Collections.Generic; using System.Drawing; using System.IO; using System.Linq; +using OpenRA.Primitives; namespace OpenRA { @@ -24,11 +25,29 @@ namespace OpenRA public readonly Color LeftColor; public readonly Color RightColor; - public MiniYaml Save() { return FieldSaver.Save(this); } + public MiniYaml Save(TileSet tileSet) + { + var root = new List(); + if (Height != 0) + root.Add(FieldSaver.SaveField(this, "Height")); + + if (RampType != 0) + root.Add(FieldSaver.SaveField(this, "RampType")); + + if (LeftColor != tileSet.TerrainInfo[TerrainType].Color) + root.Add(FieldSaver.SaveField(this, "LeftColor")); + + if (RightColor != tileSet.TerrainInfo[TerrainType].Color) + root.Add(FieldSaver.SaveField(this, "RightColor")); + + return new MiniYaml(tileSet.TerrainInfo[TerrainType].Type, root); + } } public class TerrainTypeInfo { + static readonly TerrainTypeInfo Default = new TerrainTypeInfo(); + public readonly string Type; public readonly string[] TargetTypes = { }; public readonly string[] AcceptsSmudgeType = { }; @@ -36,15 +55,17 @@ namespace OpenRA public readonly Color Color; public readonly string CustomCursor; - public TerrainTypeInfo() { } + // Private default ctor for serialization comparison + TerrainTypeInfo() { } + public TerrainTypeInfo(MiniYaml my) { FieldLoader.Load(this, my); } - public MiniYaml Save() { return FieldSaver.Save(this); } + public MiniYaml Save() { return FieldSaver.SaveDifferences(this, Default); } } public class TerrainTemplateInfo { - static readonly string[] Fields = { "Id", "Image", "Frames", "Size", "PickAny", "Category" }; + static readonly TerrainTemplateInfo Default = new TerrainTemplateInfo(0, null, int2.Zero, null); public readonly ushort Id; public readonly string Image; @@ -129,28 +150,22 @@ namespace OpenRA public MiniYaml Save(TileSet tileSet) { - var root = new List(); - foreach (var field in Fields) - { - var f = this.GetType().GetField(field); - if (f.GetValue(this) == null) - continue; + var root = FieldSaver.SaveDifferences(this, Default); - root.Add(new MiniYamlNode(field, FieldSaver.FormatValue(this, f))); - } + var tileYaml = tileInfo + .Select((ti, i) => Pair.New(i.ToString(), ti)) + .Where(t => t.Second != null) + .Select(t => new MiniYamlNode(t.First, t.Second.Save(tileSet))) + .ToList(); - root.Add(new MiniYamlNode("Tiles", null, - tileInfo.Select((terrainTypeIndex, templateIndex) => new MiniYamlNode(templateIndex.ToString(), terrainTypeIndex.Save())).ToList())); + root.Nodes.Add(new MiniYamlNode("Tiles", null, tileYaml)); - return new MiniYaml(null, root); + return root; } } public class TileSet { - static readonly string[] Fields = { "Name", "Id", "SheetSize", "Palette", "PlayerPalette", "Extensions", "WaterPaletteRotationBase", - "EditorTemplateOrder", "IgnoreTileSpriteOffsets", "MaximumHeight" }; - public readonly string Name; public readonly string Id; public readonly int SheetSize = 512; @@ -163,12 +178,17 @@ namespace OpenRA public readonly string[] EditorTemplateOrder; public readonly bool IgnoreTileSpriteOffsets; + [FieldLoader.Ignore] public readonly Dictionary Templates = new Dictionary(); + [FieldLoader.Ignore] public readonly TerrainTypeInfo[] TerrainInfo; readonly Dictionary terrainIndexByType = new Dictionary(); readonly byte defaultWalkableTerrainIndex; + // Private default ctor for serialization comparison + TileSet() { } + public TileSet(ModData modData, string filepath) { var yaml = MiniYaml.DictFromFile(filepath); @@ -269,18 +289,7 @@ namespace OpenRA public void Save(string filepath) { var root = new List(); - var gen = new List(); - - foreach (var field in Fields) - { - var f = this.GetType().GetField(field); - if (f.GetValue(this) == null) - continue; - - gen.Add(new MiniYamlNode(field, FieldSaver.FormatValue(this, f))); - } - - root.Add(new MiniYamlNode("General", null, gen)); + root.Add(new MiniYamlNode("General", FieldSaver.SaveDifferences(this, new TileSet()))); root.Add(new MiniYamlNode("Terrain", null, TerrainInfo.Select(t => new MiniYamlNode("TerrainType@{0}".F(t.Type), t.Save())).ToList())); From ec77e15e5480a5ad50e4067f51dfc74ba84d41cc Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 22 Mar 2015 11:48:47 +0000 Subject: [PATCH 2/7] Add a utility command to fix implicit tile definitions. --- OpenRA.Mods.Common/OpenRA.Mods.Common.csproj | 1 + .../UtilityCommands/FixClassicTilesets.cs | 104 ++++++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 OpenRA.Mods.Common/UtilityCommands/FixClassicTilesets.cs diff --git a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj index 0ee62bda50..56e8a65815 100644 --- a/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj +++ b/OpenRA.Mods.Common/OpenRA.Mods.Common.csproj @@ -617,6 +617,7 @@ + diff --git a/OpenRA.Mods.Common/UtilityCommands/FixClassicTilesets.cs b/OpenRA.Mods.Common/UtilityCommands/FixClassicTilesets.cs new file mode 100644 index 0000000000..6b0f95ce8b --- /dev/null +++ b/OpenRA.Mods.Common/UtilityCommands/FixClassicTilesets.cs @@ -0,0 +1,104 @@ +#region Copyright & License Information +/* + * Copyright 2007-2015 The OpenRA Developers (see AUTHORS) + * This file is part of OpenRA, which is free software. It is made + * available to you under the terms of the GNU General Public License + * as published by the Free Software Foundation. For more information, + * see COPYING. + */ +#endregion + +using System; +using System.Collections.Generic; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Reflection; +using OpenRA.FileSystem; +using OpenRA.Graphics; +using OpenRA.Traits; +using StyleCop; + +namespace OpenRA.Mods.Common.UtilityCommands +{ + class FixClassicTilesets : IUtilityCommand + { + public string Name { get { return "--fix-classic-tilesets"; } } + + [Desc("Fixes missing template tile definitions and adds filename extensions.")] + public void Run(ModData modData, string[] args) + { + // HACK: The engine code assumes that Game.modData is set. + Game.ModData = modData; + GlobalFileSystem.LoadFromManifest(Game.ModData.Manifest); + + var imageField = typeof(TerrainTemplateInfo).GetField("Image"); + var pickAnyField = typeof(TerrainTemplateInfo).GetField("PickAny"); + var tileInfoField = typeof(TerrainTemplateInfo).GetField("tileInfo", BindingFlags.NonPublic | BindingFlags.Instance); + var terrainTypeField = typeof(TerrainTileInfo).GetField("TerrainType"); + var terrainLeftColorField = typeof(TerrainTileInfo).GetField("LeftColor"); + var terrainRightColorField = typeof(TerrainTileInfo).GetField("RightColor"); + var empty = new Size(0, 0); + var single = new int2(1, 1); + + foreach (var t in Game.ModData.Manifest.TileSets) + { + var ts = new TileSet(Game.ModData, t); + var exts = new[] { "" }.Concat(ts.Extensions); + var frameCache = new FrameCache(Game.ModData.SpriteLoaders, ts.Extensions); + + Console.WriteLine("Tileset: " + ts.Name); + foreach (var template in ts.Templates.Values) + { + // Find the sprite associated with this template + foreach (var ext in exts) + { + Stream s; + if (!GlobalFileSystem.TryOpenWithExts(template.Image, new[] { ext }, out s)) + continue; + + // Rewrite the template image (normally readonly) using reflection + imageField.SetValue(template, template.Image + ext); + + // Fetch the private tileInfo array so that we can write new entries + var tileInfo = (TerrainTileInfo[])tileInfoField.GetValue(template); + + // Open the file and search for any implicit frames + var allFrames = frameCache[template.Image]; + var frames = template.Frames != null ? template.Frames.Select(f => allFrames[f]).ToArray() : allFrames; + + // Resize array for new entries + if (frames.Length > template.TilesCount) + { + var oldLength = template.TilesCount; + var ti = new TerrainTileInfo[frames.Length]; + Array.Copy(tileInfo, ti, template.TilesCount); + tileInfoField.SetValue(template, ti); + tileInfo = ti; + } + + for (var i = 0; i < template.TilesCount; i++) + { + if (template[i] == null && frames[i] != null && frames[i].Size != empty) + { + tileInfo[i] = new TerrainTileInfo(); + var ti = ts.GetTerrainIndex("Clear"); + terrainTypeField.SetValue(tileInfo[i], ti); + terrainLeftColorField.SetValue(tileInfo[i], ts[ti].Color); + terrainRightColorField.SetValue(tileInfo[i], ts[ti].Color); + Console.WriteLine("Fixing entry for {0}:{1}", template.Image, i); + } + } + + if (template.TilesCount > 1 && template.Size == single) + pickAnyField.SetValue(template, true); + + s.Dispose(); + } + } + + ts.Save(t); + } + } + } +} From 6e1307d08ded0bdef8dded0b930c7fe07c42787c Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 22 Mar 2015 11:49:05 +0000 Subject: [PATCH 3/7] Fix RA tilesets. --- mods/ra/tilesets/desert.yaml | 680 ++++++++++++++-------------- mods/ra/tilesets/interior.yaml | 487 ++++++++++++++------ mods/ra/tilesets/snow.yaml | 627 +++++++++++++------------- mods/ra/tilesets/temperat.yaml | 797 ++++++++++++++++----------------- 4 files changed, 1406 insertions(+), 1185 deletions(-) diff --git a/mods/ra/tilesets/desert.yaml b/mods/ra/tilesets/desert.yaml index 1c0cfc58f2..1d8abaf065 100644 --- a/mods/ra/tilesets/desert.yaml +++ b/mods/ra/tilesets/desert.yaml @@ -1,98 +1,81 @@ General: Name: Desert Id: DESERT - Extensions: .des, .tem, .shp Palette: desert.pal PlayerPalette: temperat.pal + Extensions: .des, .tem, .shp WaterPaletteRotationBase: 32 EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Water Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - Buildable: True - AcceptsSmudgeType: Crater, Scorch - Color: 134, 95, 69 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - Buildable: False - AcceptsSmudgeType: - Color: 93, 165, 206 - TargetTypes: Water - TerrainType@Road: - Type: Road - Buildable: True - AcceptsSmudgeType: Crater, Scorch - Color: 168, 123, 83 - TargetTypes: Ground - TerrainType@Bridge: - Type: Bridge - AcceptsSmudgeType: Crater, Scorch - Color: 96, 96, 96 - TargetTypes: Ground, Bridge - TerrainType@Rock: - Type: Rock - Buildable: False - AcceptsSmudgeType: - Color: 116, 90, 63 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - Buildable: False - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@Brush: - Type: Brush - Buildable: False - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - Buildable: False - AcceptsSmudgeType: - Color: 111, 132, 139 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - Buildable: False - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - Buildable: False - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - Buildable: False - AcceptsSmudgeType: - Color: 176, 156, 120 TargetTypes: Ground - TerrainType@Ore: - Type: Ore - Buildable: False + Color: 255,176,156,120 + TerrainType@Bridge: + Type: Bridge + TargetTypes: Ground, Bridge AcceptsSmudgeType: Crater, Scorch - Color: 148, 128, 96 + Color: 255,96,96,96 + TerrainType@Brush: + Type: Brush TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Clear: + Type: Clear + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,134,95,69 TerrainType@Gems: Type: Gems - AcceptsSmudgeType: Crater, Scorch - Color: 132, 112, 255 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,132,112,255 + TerrainType@Ore: + Type: Ore + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,148,128,96 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,111,132,139 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,168,123,83 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,116,90,63 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,93,165,206 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.des Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -112,10 +95,10 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.des Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -135,14 +118,14 @@ Templates: 15: Clear Template@256: Id: 256 - Image: w1 + Image: w1.des Size: 1,1 Category: Terrain Tiles: 0: Water Template@257: Id: 257 - Image: sh17 + Image: sh17.des Size: 2,2 Category: Terrain Tiles: @@ -152,7 +135,7 @@ Templates: 3: Water Template@258: Id: 258 - Image: sh18 + Image: sh18.des Size: 2,2 Category: Terrain Tiles: @@ -162,7 +145,7 @@ Templates: 3: Water Template@180: Id: 180 - Image: s01 + Image: s01.des Size: 2,2 Category: Cliffs Tiles: @@ -172,7 +155,7 @@ Templates: 3: Rock Template@181: Id: 181 - Image: s02 + Image: s02.des Size: 2,3 Category: Cliffs Tiles: @@ -184,7 +167,7 @@ Templates: 5: Rock Template@182: Id: 182 - Image: s03 + Image: s03.des Size: 2,2 Category: Cliffs Tiles: @@ -194,7 +177,7 @@ Templates: 3: Rock Template@183: Id: 183 - Image: s04 + Image: s04.des Size: 2,2 Category: Cliffs Tiles: @@ -204,7 +187,7 @@ Templates: 3: Rock Template@184: Id: 184 - Image: s05 + Image: s05.des Size: 2,2 Category: Cliffs Tiles: @@ -214,7 +197,7 @@ Templates: 3: Rock Template@185: Id: 185 - Image: s06 + Image: s06.des Size: 2,3 Category: Cliffs Tiles: @@ -225,7 +208,7 @@ Templates: 4: Rock Template@186: Id: 186 - Image: s07 + Image: s07.des Size: 2,2 Category: Cliffs Tiles: @@ -235,7 +218,7 @@ Templates: 3: Rock Template@187: Id: 187 - Image: s08 + Image: s08.des Size: 2,2 Category: Cliffs Tiles: @@ -245,7 +228,7 @@ Templates: 3: Rock Template@188: Id: 188 - Image: s09 + Image: s09.des Size: 3,2 Category: Cliffs Tiles: @@ -257,7 +240,7 @@ Templates: 5: Rock Template@189: Id: 189 - Image: s10 + Image: s10.des Size: 2,2 Category: Cliffs Tiles: @@ -267,7 +250,7 @@ Templates: 3: Rock Template@190: Id: 190 - Image: s11 + Image: s11.des Size: 2,2 Category: Cliffs Tiles: @@ -277,7 +260,7 @@ Templates: 3: Rock Template@191: Id: 191 - Image: s12 + Image: s12.des Size: 2,2 Category: Cliffs Tiles: @@ -287,7 +270,7 @@ Templates: 3: Rock Template@192: Id: 192 - Image: s13 + Image: s13.des Size: 3,2 Category: Cliffs Tiles: @@ -299,7 +282,7 @@ Templates: 5: Rough Template@193: Id: 193 - Image: s14 + Image: s14.des Size: 2,2 Category: Cliffs Tiles: @@ -308,7 +291,7 @@ Templates: 2: Rock Template@194: Id: 194 - Image: s15 + Image: s15.des Size: 2,2 Category: Cliffs Tiles: @@ -318,7 +301,7 @@ Templates: 3: Rock Template@195: Id: 195 - Image: s16 + Image: s16.des Size: 2,3 Category: Cliffs Tiles: @@ -328,7 +311,7 @@ Templates: 5: Rock Template@196: Id: 196 - Image: s17 + Image: s17.des Size: 2,2 Category: Cliffs Tiles: @@ -338,7 +321,7 @@ Templates: 3: Rock Template@197: Id: 197 - Image: s18 + Image: s18.des Size: 2,2 Category: Cliffs Tiles: @@ -348,7 +331,7 @@ Templates: 3: Rock Template@198: Id: 198 - Image: s19 + Image: s19.des Size: 2,2 Category: Cliffs Tiles: @@ -358,7 +341,7 @@ Templates: 3: Rock Template@199: Id: 199 - Image: s20 + Image: s20.des Size: 2,3 Category: Cliffs Tiles: @@ -369,15 +352,15 @@ Templates: 5: Rough Template@200: Id: 200 - Image: s21 + Image: s21.des Size: 1,2 Category: Cliffs Tiles: 0: Rock 1: Rock - Template@201: + Template@202: Id: 202 - Image: s22 + Image: s22.des Size: 2,1 Category: Cliffs Tiles: @@ -385,7 +368,7 @@ Templates: 1: Rock Template@203: Id: 203 - Image: s23 + Image: s23.des Size: 3,2 Category: Cliffs Tiles: @@ -397,7 +380,7 @@ Templates: 5: Rough Template@204: Id: 204 - Image: s24 + Image: s24.des Size: 2,2 Category: Cliffs Tiles: @@ -407,7 +390,7 @@ Templates: 3: Rock Template@205: Id: 205 - Image: s25 + Image: s25.des Size: 2,2 Category: Cliffs Tiles: @@ -417,7 +400,7 @@ Templates: 3: Rock Template@206: Id: 206 - Image: s26 + Image: s26.des Size: 2,2 Category: Cliffs Tiles: @@ -427,7 +410,7 @@ Templates: 3: Rock Template@207: Id: 207 - Image: s27 + Image: s27.des Size: 3,2 Category: Cliffs Tiles: @@ -439,7 +422,7 @@ Templates: 5: Rock Template@208: Id: 208 - Image: s28 + Image: s28.des Size: 2,2 Category: Cliffs Tiles: @@ -448,7 +431,7 @@ Templates: 3: Rock Template@209: Id: 209 - Image: s29 + Image: s29.des Size: 2,2 Category: Cliffs Tiles: @@ -458,7 +441,7 @@ Templates: 3: Rock Template@210: Id: 210 - Image: s30 + Image: s30.des Size: 2,2 Category: Cliffs Tiles: @@ -468,7 +451,7 @@ Templates: 3: Rock Template@211: Id: 211 - Image: s31 + Image: s31.des Size: 2,2 Category: Cliffs Tiles: @@ -478,7 +461,7 @@ Templates: 3: Rock Template@212: Id: 212 - Image: s32 + Image: s32.des Size: 2,2 Category: Cliffs Tiles: @@ -487,7 +470,7 @@ Templates: 2: Rough Template@213: Id: 213 - Image: s33 + Image: s33.des Size: 2,2 Category: Cliffs Tiles: @@ -497,7 +480,7 @@ Templates: 3: Rock Template@214: Id: 214 - Image: s34 + Image: s34.des Size: 2,2 Category: Cliffs Tiles: @@ -507,7 +490,7 @@ Templates: 3: Rock Template@215: Id: 215 - Image: s35 + Image: s35.des Size: 2,2 Category: Cliffs Tiles: @@ -517,7 +500,7 @@ Templates: 3: Rock Template@216: Id: 216 - Image: s36 + Image: s36.des Size: 2,2 Category: Cliffs Tiles: @@ -527,7 +510,7 @@ Templates: 3: Rock Template@217: Id: 217 - Image: s37 + Image: s37.des Size: 2,2 Category: Cliffs Tiles: @@ -537,7 +520,7 @@ Templates: 3: Rock Template@218: Id: 218 - Image: s38 + Image: s38.des Size: 2,2 Category: Cliffs Tiles: @@ -547,14 +530,14 @@ Templates: 3: Rock Template@2: Id: 2 - Image: b01 + Image: b01.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@3: Id: 3 - Image: b02 + Image: b02.des Size: 2,1 Category: Debris Tiles: @@ -562,63 +545,63 @@ Templates: 1: Rock Template@4: Id: 4 - Image: b03 + Image: b03.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@5: Id: 5 - Image: b04 + Image: b04.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@6: Id: 6 - Image: b05 + Image: b05.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@7: Id: 7 - Image: b06 + Image: b06.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@14: Id: 14 - Image: br01 + Image: br01.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@15: Id: 15 - Image: br02 + Image: br02.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@16: Id: 16 - Image: br03 + Image: br03.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@17: Id: 17 - Image: br04 + Image: br04.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@18: Id: 18 - Image: br05 + Image: br05.des Size: 3,2 Category: Debris Tiles: @@ -630,7 +613,7 @@ Templates: 5: Rock Template@19: Id: 19 - Image: br06 + Image: br06.des Size: 2,2 Category: Debris Tiles: @@ -640,7 +623,7 @@ Templates: 3: Tree Template@20: Id: 20 - Image: br07 + Image: br07.des Size: 2,2 Category: Debris Tiles: @@ -650,7 +633,7 @@ Templates: 3: Tree Template@21: Id: 21 - Image: br08 + Image: br08.des Size: 3,2 Category: Debris Tiles: @@ -662,7 +645,7 @@ Templates: 5: Tree Template@22: Id: 22 - Image: br09 + Image: br09.des Size: 3,2 Category: Debris Tiles: @@ -674,7 +657,7 @@ Templates: 5: Tree Template@23: Id: 23 - Image: br10 + Image: br10.des Size: 2,2 Category: Debris Tiles: @@ -684,35 +667,35 @@ Templates: 3: Tree Template@35: Id: 35 - Image: p01 + Image: p01.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@36: Id: 36 - Image: p02 + Image: p02.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@37: Id: 37 - Image: p03 + Image: p03.des Size: 1,1 Category: Debris Tiles: 0: Rough Template@38: Id: 38 - Image: p04 + Image: p04.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@39: Id: 39 - Image: p05 + Image: p05.des Size: 2,2 Category: Debris Tiles: @@ -722,7 +705,7 @@ Templates: 3: Clear Template@40: Id: 40 - Image: p06 + Image: p06.des Size: 6,4 Category: Debris Tiles: @@ -743,7 +726,7 @@ Templates: 23: Clear Template@41: Id: 41 - Image: p07 + Image: p07.des Size: 4,2 Category: Debris Tiles: @@ -756,7 +739,7 @@ Templates: 6: Rough Template@42: Id: 42 - Image: p08 + Image: p08.des Size: 2,1 Category: Debris Tiles: @@ -764,7 +747,7 @@ Templates: 1: Rough Template@43: Id: 43 - Image: p09 + Image: p09.des Size: 1,2 Category: Debris Tiles: @@ -772,7 +755,7 @@ Templates: 1: Rock Template@44: Id: 44 - Image: p10 + Image: p10.des Size: 3,2 Category: Debris Tiles: @@ -784,21 +767,21 @@ Templates: 5: Clear Template@73: Id: 73 - Image: rv26 + Image: rv26.des Size: 1,1 Category: River Tiles: 0: River Template@74: Id: 74 - Image: rv27 + Image: rv27.des Size: 1,1 Category: River Tiles: 0: River Template@296: Id: 296 - Image: rvm01 + Image: rvm01.des Size: 2,3 Category: River Tiles: @@ -810,7 +793,7 @@ Templates: 5: Rock Template@297: Id: 297 - Image: rvm02 + Image: rvm02.des Size: 1,3 Category: River Tiles: @@ -819,7 +802,7 @@ Templates: 2: Rock Template@298: Id: 298 - Image: rvm03 + Image: rvm03.des Size: 3,2 Category: River Tiles: @@ -831,7 +814,7 @@ Templates: 5: Rock Template@299: Id: 299 - Image: rvm04 + Image: rvm04.des Size: 3,1 Category: River Tiles: @@ -840,7 +823,7 @@ Templates: 2: Rock Template@60: Id: 60 - Image: rv14 + Image: rv14.des Size: 4,3 Category: River Tiles: @@ -858,22 +841,25 @@ Templates: 11: Rock Template@61: Id: 61 - Image: rv15 + Image: rv15.des Size: 4,3 Category: River Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: River 5: River 6: Rock 7: River + 8: Clear 9: Rock 10: Rock + 11: Clear Template@62: Id: 62 - Image: rv16 + Image: rv16.des Size: 6,4 Category: River Tiles: @@ -898,7 +884,7 @@ Templates: 21: Tree Template@63: Id: 63 - Image: rv17 + Image: rv17.des Size: 6,5 Category: River Tiles: @@ -917,6 +903,7 @@ Templates: 15: River 16: River 17: Rock + 18: Clear 19: Rock 20: Rock 21: Rock @@ -926,7 +913,7 @@ Templates: 29: River Template@64: Id: 64 - Image: rv18 + Image: rv18.des Size: 4,4 Category: River Tiles: @@ -945,12 +932,13 @@ Templates: 14: Rock Template@65: Id: 65 - Image: rv19 + Image: rv19.des Size: 4,4 Category: River Tiles: 1: Rock 2: River + 3: Clear 5: Rock 6: River 7: Tree @@ -958,20 +946,25 @@ Templates: 9: Rock 10: River 11: Rock + 12: Clear 13: Rock 14: River 15: Tree Template@66: Id: 66 - Image: rv20 + Image: rv20.des Size: 6,8 Category: River Tiles: + 2: Clear 3: Rock 4: River + 5: Clear + 7: Clear 8: Rock 9: River 10: Rock + 12: Clear 13: Rock 14: Rock 15: River @@ -980,6 +973,7 @@ Templates: 19: Rock 20: River 21: Rock + 22: Clear 24: Rock 25: Rock 26: River @@ -989,20 +983,25 @@ Templates: 31: Rock 32: River 33: Rock + 36: Clear 37: River 38: River 39: Rock + 42: Clear 43: River 44: Rock 45: Rock Template@67: Id: 67 - Image: rv21 + Image: rv21.des Size: 5,8 Category: River Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear + 5: Clear 6: River 7: River 8: Rock @@ -1023,13 +1022,16 @@ Templates: 32: Rock 33: River 34: River + 38: Clear 39: River - Template@68: + Template@69: Id: 69 - Image: rv22 + Image: rv22.des Size: 3,3 Category: River Tiles: + 1: Clear + 2: Clear 3: Rock 4: Rock 5: River @@ -1038,7 +1040,7 @@ Templates: 8: Rock Template@70: Id: 70 - Image: rv23 + Image: rv23.des Size: 3,3 Category: River Tiles: @@ -1053,7 +1055,7 @@ Templates: 8: Rock Template@71: Id: 71 - Image: rv24 + Image: rv24.des Size: 3,3 Category: River Tiles: @@ -1064,9 +1066,10 @@ Templates: 4: River 5: River 7: Tree + 8: Clear Template@72: Id: 72 - Image: rv25 + Image: rv25.des Size: 3,3 Category: River Tiles: @@ -1078,9 +1081,10 @@ Templates: 5: Rock 6: Rock 7: Rock + 8: Clear Template@100: Id: 100 - Image: dt01 + Image: dt01.des Size: 4,3 Category: River Tiles: @@ -1098,7 +1102,7 @@ Templates: 11: Rock Template@101: Id: 101 - Image: dt02 + Image: dt02.des Size: 2,4 Category: River Tiles: @@ -1112,7 +1116,7 @@ Templates: 7: River Template@102: Id: 102 - Image: dt03 + Image: dt03.des Size: 3,3 Category: River Tiles: @@ -1127,7 +1131,7 @@ Templates: 8: Rock Template@103: Id: 103 - Image: dt04 + Image: dt04.des Size: 3,4 Category: River Tiles: @@ -1144,7 +1148,7 @@ Templates: 10: River Template@75: Id: 75 - Image: rc01 + Image: rc01.des Size: 3,2 Category: River Tiles: @@ -1156,7 +1160,7 @@ Templates: 5: Rock Template@76: Id: 76 - Image: rc02 + Image: rc02.des Size: 2,3 Category: River Tiles: @@ -1168,7 +1172,7 @@ Templates: 5: Rock Template@77: Id: 77 - Image: rc03 + Image: rc03.des Size: 2,3 Category: River Tiles: @@ -1180,7 +1184,7 @@ Templates: 5: Rock Template@78: Id: 78 - Image: rc04 + Image: rc04.des Size: 3,2 Category: River Tiles: @@ -1192,7 +1196,7 @@ Templates: 5: Rock Template@79: Id: 79 - Image: falls01 + Image: falls01.des Size: 3,2 Category: River Tiles: @@ -1204,7 +1208,7 @@ Templates: 5: Rock Template@80: Id: 80 - Image: falls02 + Image: falls02.des Size: 3,3 Category: River Tiles: @@ -1219,7 +1223,7 @@ Templates: 8: Rock Template@90: Id: 90 - Image: ford01 + Image: ford01.des Size: 3,3 Category: Bridge Tiles: @@ -1234,7 +1238,7 @@ Templates: 8: Clear Template@91: Id: 91 - Image: ford02 + Image: ford02.des Size: 3,3 Category: Bridge Tiles: @@ -1249,21 +1253,21 @@ Templates: 8: Clear Template@164: Id: 164 - Image: d44 + Image: d44.des Size: 1,1 Category: Road Tiles: 0: Road Template@165: Id: 165 - Image: d45 + Image: d45.des Size: 1,1 Category: Road Tiles: 0: Road Template@120: Id: 120 - Image: d01 + Image: d01.des Size: 2,2 Category: Road Tiles: @@ -1272,7 +1276,7 @@ Templates: 3: Road Template@121: Id: 121 - Image: d02 + Image: d02.des Size: 2,2 Category: Road Tiles: @@ -1282,7 +1286,7 @@ Templates: 3: Clear Template@122: Id: 122 - Image: d03 + Image: d03.des Size: 1,2 Category: Road Tiles: @@ -1290,7 +1294,7 @@ Templates: 1: Road Template@123: Id: 123 - Image: d04 + Image: d04.des Size: 2,2 Category: Road Tiles: @@ -1299,7 +1303,7 @@ Templates: 3: Road Template@124: Id: 124 - Image: d05 + Image: d05.des Size: 3,4 Category: Road Tiles: @@ -1313,7 +1317,7 @@ Templates: 10: Road Template@125: Id: 125 - Image: d06 + Image: d06.des Size: 2,3 Category: Road Tiles: @@ -1324,7 +1328,7 @@ Templates: 5: Road Template@126: Id: 126 - Image: d07 + Image: d07.des Size: 3,2 Category: Road Tiles: @@ -1335,7 +1339,7 @@ Templates: 5: Clear Template@127: Id: 127 - Image: d08 + Image: d08.des Size: 3,2 Category: Road Tiles: @@ -1345,7 +1349,7 @@ Templates: 5: Clear Template@128: Id: 128 - Image: d09 + Image: d09.des Size: 4,3 Category: Road Tiles: @@ -1361,7 +1365,7 @@ Templates: 11: Clear Template@129: Id: 129 - Image: d10 + Image: d10.des Size: 4,2 Category: Road Tiles: @@ -1373,7 +1377,7 @@ Templates: 7: Road Template@130: Id: 130 - Image: d11 + Image: d11.des Size: 2,3 Category: Road Tiles: @@ -1383,7 +1387,7 @@ Templates: 4: Clear Template@500: Id: 500 - Image: d12 + Image: d12.des Size: 2,2 Category: Road Tiles: @@ -1392,7 +1396,7 @@ Templates: 3: Road Template@501: Id: 501 - Image: d13 + Image: d13.des Size: 4,3 Category: Road Tiles: @@ -1407,7 +1411,7 @@ Templates: 11: Road Template@502: Id: 502 - Image: d14 + Image: d14.des Size: 3,3 Category: Road Tiles: @@ -1421,7 +1425,7 @@ Templates: 8: Road Template@503: Id: 503 - Image: d15 + Image: d15.des Size: 3,3 Category: Road Tiles: @@ -1435,7 +1439,7 @@ Templates: 7: Clear Template@135: Id: 135 - Image: d16 + Image: d16.des Size: 3,3 Category: Road Tiles: @@ -1450,7 +1454,7 @@ Templates: 8: Clear Template@136: Id: 136 - Image: d17 + Image: d17.des Size: 3,2 Category: Road Tiles: @@ -1462,7 +1466,7 @@ Templates: 5: Clear Template@137: Id: 137 - Image: d18 + Image: d18.des Size: 3,3 Category: Road Tiles: @@ -1477,7 +1481,7 @@ Templates: 8: Clear Template@138: Id: 138 - Image: d19 + Image: d19.des Size: 3,3 Category: Road Tiles: @@ -1492,7 +1496,7 @@ Templates: 8: Clear Template@139: Id: 139 - Image: d20 + Image: d20.des Size: 3,3 Category: Road Tiles: @@ -1506,7 +1510,7 @@ Templates: 8: Road Template@140: Id: 140 - Image: d21 + Image: d21.des Size: 3,2 Category: Road Tiles: @@ -1518,7 +1522,7 @@ Templates: 5: Clear Template@141: Id: 141 - Image: d22 + Image: d22.des Size: 3,3 Category: Road Tiles: @@ -1531,7 +1535,7 @@ Templates: 8: Clear Template@142: Id: 142 - Image: d23 + Image: d23.des Size: 3,3 Category: Road Tiles: @@ -1544,7 +1548,7 @@ Templates: 7: Clear Template@143: Id: 143 - Image: d24 + Image: d24.des Size: 3,3 Category: Road Tiles: @@ -1557,7 +1561,7 @@ Templates: 8: Road Template@144: Id: 144 - Image: d25 + Image: d25.des Size: 3,3 Category: Road Tiles: @@ -1570,7 +1574,7 @@ Templates: 8: Road Template@145: Id: 145 - Image: d26 + Image: d26.des Size: 2,2 Category: Road Tiles: @@ -1578,7 +1582,7 @@ Templates: 2: Clear Template@146: Id: 146 - Image: d27 + Image: d27.des Size: 2,2 Category: Road Tiles: @@ -1586,7 +1590,7 @@ Templates: 2: Clear Template@147: Id: 147 - Image: d28 + Image: d28.des Size: 2,2 Category: Road Tiles: @@ -1595,7 +1599,7 @@ Templates: 2: Clear Template@148: Id: 148 - Image: d29 + Image: d29.des Size: 2,2 Category: Road Tiles: @@ -1604,7 +1608,7 @@ Templates: 2: Clear Template@149: Id: 149 - Image: d30 + Image: d30.des Size: 2,2 Category: Road Tiles: @@ -1613,7 +1617,7 @@ Templates: 2: Road Template@151: Id: 151 - Image: d31 + Image: d31.des Size: 2,2 Category: Road Tiles: @@ -1622,7 +1626,7 @@ Templates: 3: Road Template@152: Id: 152 - Image: d32 + Image: d32.des Size: 2,2 Category: Road Tiles: @@ -1631,7 +1635,7 @@ Templates: 3: Clear Template@153: Id: 153 - Image: d33 + Image: d33.des Size: 2,2 Category: Road Tiles: @@ -1640,7 +1644,7 @@ Templates: 3: Road Template@154: Id: 154 - Image: d34 + Image: d34.des Size: 3,3 Category: Road Tiles: @@ -1653,7 +1657,7 @@ Templates: 7: Clear Template@155: Id: 155 - Image: d35 + Image: d35.des Size: 3,3 Category: Road Tiles: @@ -1666,7 +1670,7 @@ Templates: 7: Clear Template@156: Id: 156 - Image: d36 + Image: d36.des Size: 2,2 Category: Road Tiles: @@ -1674,7 +1678,7 @@ Templates: 3: Clear Template@157: Id: 157 - Image: d37 + Image: d37.des Size: 2,2 Category: Road Tiles: @@ -1682,7 +1686,7 @@ Templates: 3: Clear Template@158: Id: 158 - Image: d38 + Image: d38.des Size: 2,2 Category: Road Tiles: @@ -1691,7 +1695,7 @@ Templates: 3: Clear Template@159: Id: 159 - Image: d39 + Image: d39.des Size: 2,2 Category: Road Tiles: @@ -1700,7 +1704,7 @@ Templates: 3: Clear Template@160: Id: 160 - Image: d40 + Image: d40.des Size: 2,2 Category: Road Tiles: @@ -1709,7 +1713,7 @@ Templates: 3: Road Template@161: Id: 161 - Image: d41 + Image: d41.des Size: 2,2 Category: Road Tiles: @@ -1718,7 +1722,7 @@ Templates: 3: Clear Template@162: Id: 162 - Image: d42 + Image: d42.des Size: 2,2 Category: Road Tiles: @@ -1727,7 +1731,7 @@ Templates: 3: Clear Template@163: Id: 163 - Image: d43 + Image: d43.des Size: 2,2 Category: Road Tiles: @@ -1736,7 +1740,7 @@ Templates: 3: Road Template@300: Id: 300 - Image: wc01 + Image: wc01.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1746,7 +1750,7 @@ Templates: 3: Rock Template@301: Id: 301 - Image: wc02 + Image: wc02.des Size: 2,3 Category: Water Cliffs Tiles: @@ -1758,7 +1762,7 @@ Templates: 5: Rock Template@302: Id: 302 - Image: wc03 + Image: wc03.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1768,7 +1772,7 @@ Templates: 3: Rock Template@303: Id: 303 - Image: wc04 + Image: wc04.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1778,7 +1782,7 @@ Templates: 3: Rock Template@304: Id: 304 - Image: wc05 + Image: wc05.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1788,7 +1792,7 @@ Templates: 3: Rock Template@305: Id: 305 - Image: wc06 + Image: wc06.des Size: 2,3 Category: Water Cliffs Tiles: @@ -1799,7 +1803,7 @@ Templates: 4: Rock Template@306: Id: 306 - Image: wc07 + Image: wc07.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1809,7 +1813,7 @@ Templates: 3: Rock Template@307: Id: 307 - Image: wc08 + Image: wc08.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1819,7 +1823,7 @@ Templates: 3: Rock Template@308: Id: 308 - Image: wc09 + Image: wc09.des Size: 3,2 Category: Water Cliffs Tiles: @@ -1831,7 +1835,7 @@ Templates: 5: Rock Template@309: Id: 309 - Image: wc10 + Image: wc10.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1841,7 +1845,7 @@ Templates: 3: Rock Template@310: Id: 310 - Image: wc11 + Image: wc11.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1851,7 +1855,7 @@ Templates: 3: Rock Template@311: Id: 311 - Image: wc12 + Image: wc12.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1861,7 +1865,7 @@ Templates: 3: Rock Template@312: Id: 312 - Image: wc13 + Image: wc13.des Size: 3,2 Category: Water Cliffs Tiles: @@ -1873,7 +1877,7 @@ Templates: 5: Clear Template@313: Id: 313 - Image: wc14 + Image: wc14.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1882,7 +1886,7 @@ Templates: 2: Beach Template@314: Id: 314 - Image: wc15 + Image: wc15.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1892,7 +1896,7 @@ Templates: 3: Rock Template@315: Id: 315 - Image: wc16 + Image: wc16.des Size: 2,3 Category: Water Cliffs Tiles: @@ -1902,7 +1906,7 @@ Templates: 5: Rock Template@316: Id: 316 - Image: wc17 + Image: wc17.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1912,7 +1916,7 @@ Templates: 3: Rock Template@317: Id: 317 - Image: wc18 + Image: wc18.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1922,7 +1926,7 @@ Templates: 3: Rock Template@318: Id: 318 - Image: wc19 + Image: wc19.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1932,7 +1936,7 @@ Templates: 3: Rock Template@319: Id: 319 - Image: wc20 + Image: wc20.des Size: 2,3 Category: Water Cliffs Tiles: @@ -1943,7 +1947,7 @@ Templates: 5: Rough Template@320: Id: 320 - Image: wc21 + Image: wc21.des Size: 1,2 Category: Water Cliffs Tiles: @@ -1951,7 +1955,7 @@ Templates: 1: Rock Template@321: Id: 321 - Image: wc22 + Image: wc22.des Size: 2,1 Category: Water Cliffs Tiles: @@ -1959,7 +1963,7 @@ Templates: 1: Rock Template@322: Id: 322 - Image: wc23 + Image: wc23.des Size: 3,2 Category: Water Cliffs Tiles: @@ -1971,7 +1975,7 @@ Templates: 5: Water Template@323: Id: 323 - Image: wc24 + Image: wc24.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1981,7 +1985,7 @@ Templates: 3: Rock Template@324: Id: 324 - Image: wc25 + Image: wc25.des Size: 2,2 Category: Water Cliffs Tiles: @@ -1991,7 +1995,7 @@ Templates: 3: Rock Template@325: Id: 325 - Image: wc26 + Image: wc26.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2001,7 +2005,7 @@ Templates: 3: Rock Template@326: Id: 326 - Image: wc27 + Image: wc27.des Size: 3,2 Category: Water Cliffs Tiles: @@ -2013,7 +2017,7 @@ Templates: 5: Rock Template@327: Id: 327 - Image: wc28 + Image: wc28.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2022,7 +2026,7 @@ Templates: 3: Rock Template@328: Id: 328 - Image: wc29 + Image: wc29.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2032,7 +2036,7 @@ Templates: 3: Rock Template@329: Id: 329 - Image: wc30 + Image: wc30.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2042,7 +2046,7 @@ Templates: 3: Rock Template@330: Id: 330 - Image: wc31 + Image: wc31.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2052,7 +2056,7 @@ Templates: 3: Rock Template@331: Id: 331 - Image: wc32 + Image: wc32.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2061,7 +2065,7 @@ Templates: 2: Water Template@332: Id: 332 - Image: wc33 + Image: wc33.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2071,7 +2075,7 @@ Templates: 3: Rock Template@333: Id: 333 - Image: wc34 + Image: wc34.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2081,7 +2085,7 @@ Templates: 3: Rock Template@334: Id: 334 - Image: wc35 + Image: wc35.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2091,7 +2095,7 @@ Templates: 3: Rock Template@335: Id: 335 - Image: wc36 + Image: wc36.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2101,7 +2105,7 @@ Templates: 3: Rock Template@336: Id: 336 - Image: wc37 + Image: wc37.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2111,7 +2115,7 @@ Templates: 3: Rock Template@337: Id: 337 - Image: wc38 + Image: wc38.des Size: 2,2 Category: Water Cliffs Tiles: @@ -2121,7 +2125,7 @@ Templates: 3: Rock Template@338: Id: 338 - Image: wc39 + Image: wc39.des Size: 3,2 Category: Water Cliffs Tiles: @@ -2133,7 +2137,7 @@ Templates: 5: Rock Template@339: Id: 339 - Image: wc40 + Image: wc40.des Size: 3,2 Category: Water Cliffs Tiles: @@ -2145,7 +2149,7 @@ Templates: 5: Rock Template@340: Id: 340 - Image: wc41 + Image: wc41.des Size: 3,2 Category: Water Cliffs Tiles: @@ -2157,7 +2161,7 @@ Templates: 5: Rock Template@341: Id: 341 - Image: wc42 + Image: wc42.des Size: 3,2 Category: Water Cliffs Tiles: @@ -2169,7 +2173,7 @@ Templates: 5: Rock Template@342: Id: 342 - Image: wc43 + Image: wc43.des Size: 2,3 Category: Water Cliffs Tiles: @@ -2181,7 +2185,7 @@ Templates: 5: Rock Template@343: Id: 343 - Image: wc44 + Image: wc44.des Size: 2,3 Category: Water Cliffs Tiles: @@ -2193,7 +2197,7 @@ Templates: 5: Rock Template@344: Id: 344 - Image: wc45 + Image: wc45.des Size: 2,3 Category: Water Cliffs Tiles: @@ -2205,7 +2209,7 @@ Templates: 5: Rock Template@345: Id: 345 - Image: wc46 + Image: wc46.des Size: 2,3 Category: Water Cliffs Tiles: @@ -2217,7 +2221,7 @@ Templates: 5: Rock Template@346: Id: 346 - Image: falls03 + Image: falls03.des Size: 3,2 Category: Water Cliffs Tiles: @@ -2229,7 +2233,7 @@ Templates: 5: Rock Template@347: Id: 347 - Image: falls04 + Image: falls04.des Size: 2,3 Category: Water Cliffs Tiles: @@ -2241,17 +2245,18 @@ Templates: 5: Rock Template@400: Id: 400 - Image: sh19 + Image: sh19.des Size: 3,2 Category: Beach Tiles: 1: Rock + 2: Clear 3: Beach 4: Rock 5: Beach Template@401: Id: 401 - Image: sh20 + Image: sh20.des Size: 4,1 Category: Beach Tiles: @@ -2261,7 +2266,7 @@ Templates: 3: Beach Template@402: Id: 402 - Image: sh21 + Image: sh21.des Size: 3,1 Category: Beach Tiles: @@ -2270,7 +2275,7 @@ Templates: 2: Beach Template@403: Id: 403 - Image: sh22 + Image: sh22.des Size: 6,2 Category: Beach Tiles: @@ -2285,7 +2290,7 @@ Templates: 11: Beach Template@404: Id: 404 - Image: sh23 + Image: sh23.des Size: 2,2 Category: Beach Tiles: @@ -2295,7 +2300,7 @@ Templates: 3: Beach Template@405: Id: 405 - Image: sh24 + Image: sh24.des Size: 3,3 Category: Beach Tiles: @@ -2310,7 +2315,7 @@ Templates: 8: Beach Template@406: Id: 406 - Image: sh25 + Image: sh25.des Size: 3,2 Category: Beach Tiles: @@ -2322,7 +2327,7 @@ Templates: 5: Rock Template@407: Id: 407 - Image: sh26 + Image: sh26.des Size: 3,2 Category: Beach Tiles: @@ -2333,7 +2338,7 @@ Templates: 5: Clear Template@408: Id: 408 - Image: sh27 + Image: sh27.des Size: 4,1 Category: Beach Tiles: @@ -2343,7 +2348,7 @@ Templates: 3: Rock Template@409: Id: 409 - Image: sh28 + Image: sh28.des Size: 3,1 Category: Beach Tiles: @@ -2352,7 +2357,7 @@ Templates: 2: Beach Template@410: Id: 410 - Image: sh29 + Image: sh29.des Size: 6,2 Category: Beach Tiles: @@ -2367,7 +2372,7 @@ Templates: 9: Clear Template@411: Id: 411 - Image: sh30 + Image: sh30.des Size: 2,2 Category: Beach Tiles: @@ -2376,7 +2381,7 @@ Templates: 2: Rock Template@412: Id: 412 - Image: sh31 + Image: sh31.des Size: 3,3 Category: Beach Tiles: @@ -2386,39 +2391,40 @@ Templates: 3: Rock 4: River 5: Rock + 6: Clear 7: River 8: Rock Template@413: Id: 413 - Image: sh36 + Image: sh36.des Size: 1,1 Category: Beach Tiles: 0: Clear Template@414: Id: 414 - Image: sh37 + Image: sh37.des Size: 1,1 Category: Beach Tiles: 0: Clear Template@415: Id: 415 - Image: sh38 + Image: sh38.des Size: 1,1 Category: Beach Tiles: 0: Clear Template@416: Id: 416 - Image: sh39 + Image: sh39.des Size: 1,1 Category: Beach Tiles: 0: Clear Template@417: Id: 417 - Image: sh40 + Image: sh40.des Size: 3,3 Category: Beach Tiles: @@ -2433,7 +2439,7 @@ Templates: 8: Water Template@418: Id: 418 - Image: sh41 + Image: sh41.des Size: 3,3 Category: Beach Tiles: @@ -2448,7 +2454,7 @@ Templates: 8: Clear Template@419: Id: 419 - Image: sh42 + Image: sh42.des Size: 1,2 Category: Beach Tiles: @@ -2456,7 +2462,7 @@ Templates: 1: Beach Template@420: Id: 420 - Image: sh43 + Image: sh43.des Size: 1,3 Category: Beach Tiles: @@ -2465,7 +2471,7 @@ Templates: 2: Beach Template@421: Id: 421 - Image: sh44 + Image: sh44.des Size: 1,3 Category: Beach Tiles: @@ -2474,7 +2480,7 @@ Templates: 2: Beach Template@441: Id: 441 - Image: sh64 + Image: sh64.des Size: 2,3 Category: Beach Tiles: @@ -2486,7 +2492,7 @@ Templates: 5: Rock Template@422: Id: 422 - Image: sh45 + Image: sh45.des Size: 1,2 Category: Beach Tiles: @@ -2494,7 +2500,7 @@ Templates: 1: Beach Template@423: Id: 423 - Image: sh46 + Image: sh46.des Size: 3,3 Category: Beach Tiles: @@ -2509,7 +2515,7 @@ Templates: 8: Water Template@442: Id: 442 - Image: sh65 + Image: sh65.des Size: 2,3 Category: Beach Tiles: @@ -2521,7 +2527,7 @@ Templates: 5: River Template@424: Id: 424 - Image: sh47 + Image: sh47.des Size: 3,3 Category: Beach Tiles: @@ -2534,7 +2540,7 @@ Templates: 8: Beach Template@425: Id: 425 - Image: sh48 + Image: sh48.des Size: 3,3 Category: Beach Tiles: @@ -2545,7 +2551,7 @@ Templates: 8: Beach Template@426: Id: 426 - Image: sh49 + Image: sh49.des Size: 3,3 Category: Beach Tiles: @@ -2559,7 +2565,7 @@ Templates: 8: Rock Template@427: Id: 427 - Image: sh50 + Image: sh50.des Size: 4,3 Category: Beach Tiles: @@ -2573,7 +2579,7 @@ Templates: 9: Clear Template@428: Id: 428 - Image: sh51 + Image: sh51.des Size: 4,3 Category: Beach Tiles: @@ -2588,7 +2594,7 @@ Templates: 11: Water Template@429: Id: 429 - Image: sh52 + Image: sh52.des Size: 4,3 Category: Beach Tiles: @@ -2602,7 +2608,7 @@ Templates: 11: River Template@430: Id: 430 - Image: sh53 + Image: sh53.des Size: 4,3 Category: Beach Tiles: @@ -2620,7 +2626,7 @@ Templates: 11: River Template@431: Id: 431 - Image: sh54 + Image: sh54.des Size: 3,2 Category: Beach Tiles: @@ -2632,7 +2638,7 @@ Templates: 5: River Template@432: Id: 432 - Image: sh55 + Image: sh55.des Size: 3,2 Category: Beach Tiles: @@ -2644,7 +2650,7 @@ Templates: 5: Rock Template@433: Id: 433 - Image: sh56 + Image: sh56.des Size: 3,2 Category: Beach Tiles: @@ -2655,7 +2661,7 @@ Templates: 5: Rock Template@434: Id: 434 - Image: sh57 + Image: sh57.des Size: 3,2 Category: Beach Tiles: @@ -2665,7 +2671,7 @@ Templates: 5: River Template@435: Id: 435 - Image: sh58 + Image: sh58.des Size: 2,3 Category: Beach Tiles: @@ -2676,7 +2682,7 @@ Templates: 5: Beach Template@436: Id: 436 - Image: sh59 + Image: sh59.des Size: 2,3 Category: Beach Tiles: @@ -2688,7 +2694,7 @@ Templates: 5: River Template@437: Id: 437 - Image: sh60 + Image: sh60.des Size: 2,3 Category: Beach Tiles: @@ -2700,7 +2706,7 @@ Templates: 5: Clear Template@438: Id: 438 - Image: sh61 + Image: sh61.des Size: 2,3 Category: Beach Tiles: @@ -2712,7 +2718,7 @@ Templates: 5: Beach Template@439: Id: 439 - Image: sh62 + Image: sh62.des Size: 6,1 Category: Beach Tiles: @@ -2724,7 +2730,7 @@ Templates: 5: Beach Template@440: Id: 440 - Image: sh63 + Image: sh63.des Size: 4,1 Category: Beach Tiles: @@ -2734,7 +2740,7 @@ Templates: 3: Beach Template@600: Id: 600 - Image: f01 + Image: f01.des Size: 3,3 Category: Bridge Tiles: @@ -2749,7 +2755,7 @@ Templates: 8: Beach Template@601: Id: 601 - Image: f02 + Image: f02.des Size: 3,3 Category: Bridge Tiles: @@ -2764,7 +2770,7 @@ Templates: 8: Beach Template@602: Id: 602 - Image: f03 + Image: f03.des Size: 3,3 Category: Bridge Tiles: @@ -2779,7 +2785,7 @@ Templates: 8: Clear Template@603: Id: 603 - Image: f04 + Image: f04.des Size: 3,3 Category: Bridge Tiles: @@ -2794,7 +2800,7 @@ Templates: 8: Beach Template@604: Id: 604 - Image: f05 + Image: f05.des Size: 3,3 Category: Bridge Tiles: @@ -2809,7 +2815,7 @@ Templates: 8: Beach Template@605: Id: 605 - Image: f06 + Image: f06.des Size: 3,3 Category: Bridge Tiles: @@ -2824,7 +2830,7 @@ Templates: 8: Clear Template@620: Id: 620 - Image: bridge1 + Image: bridge1.des Size: 4,2 Category: Bridge Tiles: @@ -2838,7 +2844,7 @@ Templates: 7: Rock Template@621: Id: 621 - Image: bridge1h + Image: bridge1h.des Size: 4,2 Category: Bridge Tiles: @@ -2852,7 +2858,7 @@ Templates: 7: Rock Template@622: Id: 622 - Image: bridge1d + Image: bridge1d.des Size: 4,2 Category: Bridge Tiles: @@ -2866,7 +2872,7 @@ Templates: 7: Rock Template@623: Id: 623 - Image: bridge1x + Image: bridge1x.des Size: 6,4 Category: Bridge Tiles: @@ -2887,7 +2893,7 @@ Templates: 23: River Template@624: Id: 624 - Image: bridge2 + Image: bridge2.des Size: 4,2 Category: Bridge Tiles: @@ -2901,7 +2907,7 @@ Templates: 7: Bridge Template@625: Id: 625 - Image: bridge2h + Image: bridge2h.des Size: 4,2 Category: Bridge Tiles: @@ -2915,7 +2921,7 @@ Templates: 7: Bridge Template@626: Id: 626 - Image: bridge2d + Image: bridge2d.des Size: 4,2 Category: Bridge Tiles: @@ -2929,7 +2935,7 @@ Templates: 7: Rock Template@627: Id: 627 - Image: bridge2x + Image: bridge2x.des Size: 6,4 Category: Bridge Tiles: @@ -2950,7 +2956,7 @@ Templates: 23: Road Template@235: Id: 235 - Image: br1a + Image: br1a.des Size: 4,2 Category: Bridge Tiles: @@ -2963,7 +2969,7 @@ Templates: 7: River Template@236: Id: 236 - Image: br1b + Image: br1b.des Size: 4,2 Category: Bridge Tiles: @@ -2976,7 +2982,7 @@ Templates: 7: River Template@237: Id: 237 - Image: br1c + Image: br1c.des Size: 4,2 Category: Bridge Tiles: @@ -2989,7 +2995,7 @@ Templates: 7: River Template@238: Id: 238 - Image: br2a + Image: br2a.des Size: 4,2 Category: Bridge Tiles: @@ -3001,7 +3007,7 @@ Templates: 7: Rock Template@239: Id: 239 - Image: br2b + Image: br2b.des Size: 4,2 Category: Bridge Tiles: @@ -3013,7 +3019,7 @@ Templates: 7: Rock Template@240: Id: 240 - Image: br2c + Image: br2c.des Size: 4,2 Category: Bridge Tiles: @@ -3025,7 +3031,7 @@ Templates: 7: River Template@241: Id: 241 - Image: br3a + Image: br3a.des Size: 4,2 Category: Bridge Tiles: @@ -3036,7 +3042,7 @@ Templates: 7: Rock Template@242: Id: 242 - Image: br3b + Image: br3b.des Size: 4,2 Category: Bridge Tiles: @@ -3047,7 +3053,7 @@ Templates: 7: Rock Template@243: Id: 243 - Image: br3c + Image: br3c.des Size: 4,2 Category: Bridge Tiles: @@ -3058,7 +3064,7 @@ Templates: 7: Rock Template@244: Id: 244 - Image: br3d + Image: br3d.des Size: 4,2 Category: Bridge Tiles: @@ -3069,7 +3075,7 @@ Templates: 7: River Template@245: Id: 245 - Image: br3e + Image: br3e.des Size: 4,2 Category: Bridge Tiles: @@ -3080,7 +3086,7 @@ Templates: 7: Water Template@246: Id: 246 - Image: br3f + Image: br3f.des Size: 4,2 Category: Bridge Tiles: @@ -3091,7 +3097,7 @@ Templates: 7: Water Template@380: Id: 380 - Image: br1x + Image: br1x.des Size: 5,3 Category: Bridge Tiles: @@ -3103,7 +3109,7 @@ Templates: 14: Rock Template@381: Id: 381 - Image: br2x + Image: br2x.des Size: 5,3 Category: Bridge Tiles: diff --git a/mods/ra/tilesets/interior.yaml b/mods/ra/tilesets/interior.yaml index cd58f36c46..c17fe0d70d 100644 --- a/mods/ra/tilesets/interior.yaml +++ b/mods/ra/tilesets/interior.yaml @@ -1,41 +1,39 @@ General: Name: Interior Id: INTERIOR - Extensions: .int, .shp, .tem Palette: interior.pal + Extensions: .int, .shp, .tem EditorTemplateOrder: Floor, Wall Terrain: TerrainType@Clear: Type: Clear + TargetTypes: Ground AcceptsSmudgeType: Crater, Scorch - Color: 0, 0, 0 - TargetTypes: Ground - TerrainType@Tree: # and Boxes - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: - Color: 208, 192, 160 - TargetTypes: Ground - TerrainType@Ore: - Type: Ore - AcceptsSmudgeType: Crater, Scorch - Color: 148, 128, 96 - TargetTypes: Ground + Color: 255,0,0,0 TerrainType@Gems: Type: Gems - AcceptsSmudgeType: Crater, Scorch - Color: 132, 112, 255 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,132,112,255 + TerrainType@Ore: + Type: Ore + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,148,128,96 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + Color: 255,208,192,160 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.int Size: 1,1 PickAny: True Category: Floor @@ -58,9 +56,9 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 - PickAny: True + Image: clear1.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear @@ -81,161 +79,161 @@ Templates: 15: Clear Template@329: Id: 329 - Image: wall0001 + Image: wall0001.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@330: Id: 330 - Image: wall0002 + Image: wall0002.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@331: Id: 331 - Image: wall0003 + Image: wall0003.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@332: Id: 332 - Image: wall0004 + Image: wall0004.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@333: Id: 333 - Image: wall0005 + Image: wall0005.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@334: Id: 334 - Image: wall0006 + Image: wall0006.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@335: Id: 335 - Image: wall0007 + Image: wall0007.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@336: Id: 336 - Image: wall0008 + Image: wall0008.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@337: Id: 337 - Image: wall0009 + Image: wall0009.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@338: Id: 338 - Image: wall0010 + Image: wall0010.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@339: Id: 339 - Image: wall0011 + Image: wall0011.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@340: Id: 340 - Image: wall0012 + Image: wall0012.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@341: Id: 341 - Image: wall0013 + Image: wall0013.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@342: Id: 342 - Image: wall0014 + Image: wall0014.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@343: Id: 343 - Image: wall0015 + Image: wall0015.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@344: Id: 344 - Image: wall0016 + Image: wall0016.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@345: Id: 345 - Image: wall0017 + Image: wall0017.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@346: Id: 346 - Image: wall0018 + Image: wall0018.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@347: Id: 347 - Image: wall0019 + Image: wall0019.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@348: Id: 348 - Image: wall0020 + Image: wall0020.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@349: Id: 349 - Image: wall0021 + Image: wall0021.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@350: Id: 350 - Image: wall0022 + Image: wall0022.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@351: Id: 351 - Image: wall0023 + Image: wall0023.int Size: 2,2 Category: Wall Tiles: @@ -244,7 +242,7 @@ Templates: 2: Wall Template@352: Id: 352 - Image: wall0024 + Image: wall0024.int Size: 2,2 Category: Wall Tiles: @@ -253,7 +251,7 @@ Templates: 2: Wall Template@353: Id: 353 - Image: wall0025 + Image: wall0025.int Size: 2,2 Category: Wall Tiles: @@ -262,7 +260,7 @@ Templates: 2: Wall Template@354: Id: 354 - Image: wall0026 + Image: wall0026.int Size: 2,2 Category: Wall Tiles: @@ -271,7 +269,7 @@ Templates: 2: Wall Template@355: Id: 355 - Image: wall0027 + Image: wall0027.int Size: 2,2 Category: Wall Tiles: @@ -280,7 +278,7 @@ Templates: 3: Wall Template@356: Id: 356 - Image: wall0028 + Image: wall0028.int Size: 2,2 Category: Wall Tiles: @@ -289,7 +287,7 @@ Templates: 3: Wall Template@357: Id: 357 - Image: wall0029 + Image: wall0029.int Size: 2,2 Category: Wall Tiles: @@ -298,7 +296,7 @@ Templates: 3: Wall Template@358: Id: 358 - Image: wall0030 + Image: wall0030.int Size: 2,2 Category: Wall Tiles: @@ -307,7 +305,7 @@ Templates: 3: Wall Template@359: Id: 359 - Image: wall0031 + Image: wall0031.int Size: 2,2 Category: Wall Tiles: @@ -316,7 +314,7 @@ Templates: 3: Wall Template@360: Id: 360 - Image: wall0032 + Image: wall0032.int Size: 2,2 Category: Wall Tiles: @@ -325,7 +323,7 @@ Templates: 3: Wall Template@361: Id: 361 - Image: wall0033 + Image: wall0033.int Size: 2,2 Category: Wall Tiles: @@ -334,7 +332,7 @@ Templates: 3: Wall Template@362: Id: 362 - Image: wall0034 + Image: wall0034.int Size: 2,2 Category: Wall Tiles: @@ -343,7 +341,7 @@ Templates: 3: Wall Template@363: Id: 363 - Image: wall0035 + Image: wall0035.int Size: 2,2 Category: Wall Tiles: @@ -352,7 +350,7 @@ Templates: 3: Wall Template@364: Id: 364 - Image: wall0036 + Image: wall0036.int Size: 2,2 Category: Wall Tiles: @@ -361,7 +359,7 @@ Templates: 3: Wall Template@365: Id: 365 - Image: wall0037 + Image: wall0037.int Size: 2,2 Category: Wall Tiles: @@ -370,7 +368,7 @@ Templates: 3: Wall Template@366: Id: 366 - Image: wall0038 + Image: wall0038.int Size: 2,2 Category: Wall Tiles: @@ -379,7 +377,7 @@ Templates: 3: Wall Template@367: Id: 367 - Image: wall0039 + Image: wall0039.int Size: 2,3 Category: Wall Tiles: @@ -389,7 +387,7 @@ Templates: 4: Wall Template@368: Id: 368 - Image: wall0040 + Image: wall0040.int Size: 2,3 Category: Wall Tiles: @@ -399,7 +397,7 @@ Templates: 4: Wall Template@369: Id: 369 - Image: wall0041 + Image: wall0041.int Size: 2,3 Category: Wall Tiles: @@ -409,7 +407,7 @@ Templates: 5: Wall Template@370: Id: 370 - Image: wall0042 + Image: wall0042.int Size: 2,3 Category: Wall Tiles: @@ -419,7 +417,7 @@ Templates: 5: Wall Template@371: Id: 371 - Image: wall0043 + Image: wall0043.int Size: 3,2 Category: Wall Tiles: @@ -429,7 +427,7 @@ Templates: 5: Wall Template@372: Id: 372 - Image: wall0044 + Image: wall0044.int Size: 3,2 Category: Wall Tiles: @@ -439,7 +437,7 @@ Templates: 5: Wall Template@373: Id: 373 - Image: wall0045 + Image: wall0045.int Size: 3,2 Category: Wall Tiles: @@ -449,7 +447,7 @@ Templates: 5: Wall Template@374: Id: 374 - Image: wall0046 + Image: wall0046.int Size: 3,2 Category: Wall Tiles: @@ -459,7 +457,7 @@ Templates: 5: Wall Template@375: Id: 375 - Image: wall0047 + Image: wall0047.int Size: 3,2 Category: Wall Tiles: @@ -469,7 +467,7 @@ Templates: 4: Wall Template@376: Id: 376 - Image: wall0048 + Image: wall0048.int Size: 3,2 Category: Wall Tiles: @@ -479,7 +477,7 @@ Templates: 4: Wall Template@377: Id: 377 - Image: wall0049 + Image: wall0049.int Size: 3,3 Category: Wall Tiles: @@ -490,63 +488,147 @@ Templates: 7: Wall Template@268: Id: 268 - Image: flor0001 + Image: flor0001.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@269: Id: 269 - Image: flor0002 + Image: flor0002.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@270: Id: 270 - Image: flor0003 + Image: flor0003.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@271: Id: 271 - Image: flor0004 + Image: flor0004.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@272: Id: 272 - Image: flor0005 + Image: flor0005.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@273: Id: 273 - Image: flor0006 + Image: flor0006.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@274: Id: 274 - Image: flor0007 + Image: flor0007.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@384: Id: 384 - Image: xtra0001 + Image: xtra0001.int Size: 1,1 Category: Floor Tiles: 0: Wall Template@385: Id: 385 - Image: xtra0002 + Image: xtra0002.int Size: 2,1 Category: Wall Tiles: @@ -554,14 +636,14 @@ Templates: 1: Clear Template@386: Id: 386 - Image: xtra0003 + Image: xtra0003.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@387: Id: 387 - Image: xtra0004 + Image: xtra0004.int Size: 1,2 Category: Wall Tiles: @@ -569,14 +651,14 @@ Templates: 1: Clear Template@388: Id: 388 - Image: xtra0005 + Image: xtra0005.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@389: Id: 389 - Image: xtra0006 + Image: xtra0006.int Size: 2,1 Category: Wall Tiles: @@ -584,14 +666,14 @@ Templates: 1: Clear Template@390: Id: 390 - Image: xtra0007 + Image: xtra0007.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@391: Id: 391 - Image: xtra0008 + Image: xtra0008.int Size: 1,2 Category: Wall Tiles: @@ -599,28 +681,28 @@ Templates: 1: Clear Template@392: Id: 392 - Image: xtra0009 + Image: xtra0009.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@393: Id: 393 - Image: xtra0010 + Image: xtra0010.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@394: Id: 394 - Image: xtra0011 + Image: xtra0011.int Size: 1,1 Category: Wall Tiles: 0: Wall Template@395: Id: 395 - Image: xtra0012 + Image: xtra0012.int Size: 1,2 Category: Wall Tiles: @@ -628,7 +710,7 @@ Templates: 1: Clear Template@396: Id: 396 - Image: xtra0013 + Image: xtra0013.int Size: 1,2 Category: Wall Tiles: @@ -636,7 +718,7 @@ Templates: 1: Clear Template@397: Id: 397 - Image: xtra0014 + Image: xtra0014.int Size: 3,2 Category: Wall Tiles: @@ -648,7 +730,7 @@ Templates: 5: Clear Template@398: Id: 398 - Image: xtra0015 + Image: xtra0015.int Size: 3,2 Category: Wall Tiles: @@ -660,7 +742,7 @@ Templates: 5: Wall Template@399: Id: 399 - Image: xtra0016 + Image: xtra0016.int Size: 2,4 Category: Wall Tiles: @@ -674,287 +756,420 @@ Templates: 7: Wall Template@318: Id: 318 - Image: strp0001 + Image: strp0001.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@319: Id: 319 - Image: strp0002 + Image: strp0002.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear Template@320: Id: 320 - Image: strp0003 + Image: strp0003.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@321: Id: 321 - Image: strp0004 + Image: strp0004.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@322: Id: 322 - Image: strp0005 + Image: strp0005.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@323: Id: 323 - Image: strp0006 + Image: strp0006.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@324: Id: 324 - Image: strp0007 + Image: strp0007.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@325: Id: 325 - Image: strp0008 + Image: strp0008.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@326: Id: 326 - Image: strp0009 + Image: strp0009.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@327: Id: 327 - Image: strp0010 + Image: strp0010.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@328: Id: 328 - Image: strp0011 + Image: strp0011.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@253: Id: 253 - Image: arro0001 + Image: arro0001.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@254: Id: 254 - Image: arro0002 + Image: arro0002.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@256: Id: 256 - Image: arro0004 + Image: arro0004.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@257: Id: 257 - Image: arro0005 + Image: arro0005.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@258: Id: 258 - Image: arro0006 + Image: arro0006.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@259: Id: 259 - Image: arro0007 + Image: arro0007.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@260: Id: 260 - Image: arro0008 + Image: arro0008.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@261: Id: 261 - Image: arro0009 + Image: arro0009.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@262: Id: 262 - Image: arro0010 + Image: arro0010.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@263: Id: 263 - Image: arro0011 + Image: arro0011.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@264: Id: 264 - Image: arro0012 + Image: arro0012.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@265: Id: 265 - Image: arro0013 + Image: arro0013.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@266: Id: 266 - Image: arro0014 + Image: arro0014.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@267: Id: 267 - Image: arro0015 + Image: arro0015.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@275: Id: 275 - Image: gflr0001 + Image: gflr0001.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear Template@276: Id: 276 - Image: gflr0002 + Image: gflr0002.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear Template@277: Id: 277 - Image: gflr0003 + Image: gflr0003.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear Template@278: Id: 278 - Image: gflr0004 + Image: gflr0004.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear Template@279: Id: 279 - Image: gflr0005 + Image: gflr0005.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear Template@280: Id: 280 - Image: gstr0001 + Image: gstr0001.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@281: Id: 281 - Image: gstr0002 + Image: gstr0002.int Size: 1,1 + PickAny: True Category: Floor Tiles: 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear Template@282: Id: 282 - Image: gstr0003 + Image: gstr0003.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@283: Id: 283 - Image: gstr0004 + Image: gstr0004.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@284: Id: 284 - Image: gstr0005 + Image: gstr0005.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@285: Id: 285 - Image: gstr0006 + Image: gstr0006.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@286: Id: 286 - Image: gstr0007 + Image: gstr0007.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@287: Id: 287 - Image: gstr0008 + Image: gstr0008.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@288: Id: 288 - Image: gstr0009 + Image: gstr0009.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@289: Id: 289 - Image: gstr0010 + Image: gstr0010.int Size: 1,1 Category: Floor Tiles: 0: Clear Template@290: Id: 290 - Image: gstr0011 + Image: gstr0011.int Size: 1,1 Category: Floor Tiles: diff --git a/mods/ra/tilesets/snow.yaml b/mods/ra/tilesets/snow.yaml index 07489ec9db..626530e6dc 100644 --- a/mods/ra/tilesets/snow.yaml +++ b/mods/ra/tilesets/snow.yaml @@ -1,80 +1,75 @@ General: Name: Snow Id: SNOW - Extensions: .sno, .shp, .tem Palette: snow.pal + Extensions: .sno, .shp, .tem EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Water Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 196, 196, 196 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 92, 116, 164 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 88, 116, 116 - TargetTypes: Ground - TerrainType@Bridge: - Type: Bridge - AcceptsSmudgeType: Crater, Scorch - Color: 96, 96, 96 - TargetTypes: Ground, Bridge - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 92, 140, 180 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 TargetTypes: Ground - TerrainType@Ore: - Type: Ore + Color: 255,176,156,120 + TerrainType@Bridge: + Type: Bridge + TargetTypes: Ground, Bridge AcceptsSmudgeType: Crater, Scorch - Color: 148, 128, 96 + Color: 255,96,96,96 + TerrainType@Clear: + Type: Clear TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,196,196,196 TerrainType@Gems: Type: Gems - AcceptsSmudgeType: Crater, Scorch - Color: 132, 112, 255 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,132,112,255 + TerrainType@Ore: + Type: Ore + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,148,128,96 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,92,140,180 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,88,116,116 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,68,68,60 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,92,116,164 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.sno Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -92,12 +87,16 @@ Templates: 13: Clear 14: Clear 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.sno Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -115,16 +114,20 @@ Templates: 13: Clear 14: Clear 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear Template@1: Id: 1 - Image: w1 + Image: w1.sno Size: 1,1 Category: Terrain Tiles: 0: Water Template@2: Id: 2 - Image: w2 + Image: w2.sno Size: 2,2 Category: Terrain Tiles: @@ -134,7 +137,7 @@ Templates: 3: Water Template@3: Id: 3 - Image: sh01 + Image: sh01.sno Size: 4,5 Category: Beach Tiles: @@ -151,7 +154,7 @@ Templates: 16: Water Template@4: Id: 4 - Image: sh02 + Image: sh02.sno Size: 5,5 Category: Beach Tiles: @@ -172,7 +175,7 @@ Templates: 22: Rock Template@5: Id: 5 - Image: sh03 + Image: sh03.sno Size: 3,5 Category: Beach Tiles: @@ -187,7 +190,7 @@ Templates: 12: Water Template@6: Id: 6 - Image: sh04 + Image: sh04.sno Size: 3,3 Category: Beach Tiles: @@ -202,7 +205,7 @@ Templates: 8: Water Template@7: Id: 7 - Image: sh05 + Image: sh05.sno Size: 3,3 Category: Beach Tiles: @@ -217,7 +220,7 @@ Templates: 8: River Template@8: Id: 8 - Image: sh06 + Image: sh06.sno Size: 3,3 Category: Beach Tiles: @@ -232,7 +235,7 @@ Templates: 8: Water Template@9: Id: 9 - Image: sh07 + Image: sh07.sno Size: 3,3 Category: Beach Tiles: @@ -247,7 +250,7 @@ Templates: 8: Water Template@10: Id: 10 - Image: sh08 + Image: sh08.sno Size: 1,2 Category: Beach Tiles: @@ -255,7 +258,7 @@ Templates: 1: Beach Template@11: Id: 11 - Image: sh09 + Image: sh09.sno Size: 3,3 Category: Beach Tiles: @@ -270,7 +273,7 @@ Templates: 8: Water Template@12: Id: 12 - Image: sh10 + Image: sh10.sno Size: 5,6 Category: Beach Tiles: @@ -291,7 +294,7 @@ Templates: 29: Water Template@13: Id: 13 - Image: sh11 + Image: sh11.sno Size: 4,5 Category: Beach Tiles: @@ -310,7 +313,7 @@ Templates: 19: Beach Template@14: Id: 14 - Image: sh12 + Image: sh12.sno Size: 3,5 Category: Beach Tiles: @@ -327,7 +330,7 @@ Templates: 14: Water Template@15: Id: 15 - Image: sh13 + Image: sh13.sno Size: 6,5 Category: Beach Tiles: @@ -351,7 +354,7 @@ Templates: 29: Beach Template@16: Id: 16 - Image: sh14 + Image: sh14.sno Size: 4,4 Category: Beach Tiles: @@ -369,7 +372,7 @@ Templates: 15: Beach Template@17: Id: 17 - Image: sh15 + Image: sh15.sno Size: 5,3 Category: Beach Tiles: @@ -385,7 +388,7 @@ Templates: 14: Beach Template@18: Id: 18 - Image: sh16 + Image: sh16.sno Size: 3,3 Category: Beach Tiles: @@ -400,7 +403,7 @@ Templates: 8: Clear Template@19: Id: 19 - Image: sh17 + Image: sh17.sno Size: 2,1 Category: Beach Tiles: @@ -408,7 +411,7 @@ Templates: 1: Clear Template@20: Id: 20 - Image: sh18 + Image: sh18.sno Size: 3,3 Category: Beach Tiles: @@ -423,7 +426,7 @@ Templates: 8: Rough Template@21: Id: 21 - Image: sh19 + Image: sh19.sno Size: 4,5 Category: Beach Tiles: @@ -444,7 +447,7 @@ Templates: 18: Clear Template@22: Id: 22 - Image: sh20 + Image: sh20.sno Size: 5,4 Category: Beach Tiles: @@ -463,7 +466,7 @@ Templates: 17: Beach Template@23: Id: 23 - Image: sh21 + Image: sh21.sno Size: 5,3 Category: Beach Tiles: @@ -480,7 +483,7 @@ Templates: 12: Beach Template@24: Id: 24 - Image: sh22 + Image: sh22.sno Size: 6,5 Category: Beach Tiles: @@ -503,7 +506,7 @@ Templates: 29: Beach Template@25: Id: 25 - Image: sh23 + Image: sh23.sno Size: 5,5 Category: Beach Tiles: @@ -527,7 +530,7 @@ Templates: 24: Beach Template@26: Id: 26 - Image: sh24 + Image: sh24.sno Size: 3,4 Category: Beach Tiles: @@ -541,7 +544,7 @@ Templates: 11: Clear Template@27: Id: 27 - Image: sh25 + Image: sh25.sno Size: 3,3 Category: Beach Tiles: @@ -556,7 +559,7 @@ Templates: 8: Beach Template@28: Id: 28 - Image: sh26 + Image: sh26.sno Size: 3,3 Category: Beach Tiles: @@ -571,7 +574,7 @@ Templates: 8: Beach Template@29: Id: 29 - Image: sh27 + Image: sh27.sno Size: 3,3 Category: Beach Tiles: @@ -586,7 +589,7 @@ Templates: 8: Rough Template@30: Id: 30 - Image: sh28 + Image: sh28.sno Size: 3,3 Category: Beach Tiles: @@ -600,7 +603,7 @@ Templates: 8: Rough Template@31: Id: 31 - Image: sh29 + Image: sh29.sno Size: 1,2 Category: Beach Tiles: @@ -608,7 +611,7 @@ Templates: 1: Clear Template@32: Id: 32 - Image: sh30 + Image: sh30.sno Size: 3,2 Category: Beach Tiles: @@ -620,7 +623,7 @@ Templates: 5: Rough Template@33: Id: 33 - Image: sh31 + Image: sh31.sno Size: 6,5 Category: Beach Tiles: @@ -648,7 +651,7 @@ Templates: 28: Clear Template@34: Id: 34 - Image: sh32 + Image: sh32.sno Size: 4,4 Category: Beach Tiles: @@ -665,7 +668,7 @@ Templates: 13: Clear Template@35: Id: 35 - Image: sh33 + Image: sh33.sno Size: 3,4 Category: Beach Tiles: @@ -680,7 +683,7 @@ Templates: 10: Beach Template@36: Id: 36 - Image: sh34 + Image: sh34.sno Size: 6,5 Category: Beach Tiles: @@ -702,7 +705,7 @@ Templates: 26: Water Template@37: Id: 37 - Image: sh35 + Image: sh35.sno Size: 4,4 Category: Beach Tiles: @@ -719,7 +722,7 @@ Templates: 14: Water Template@38: Id: 38 - Image: sh36 + Image: sh36.sno Size: 4,3 Category: Beach Tiles: @@ -734,7 +737,7 @@ Templates: 10: Water Template@39: Id: 39 - Image: sh37 + Image: sh37.sno Size: 3,3 Category: Beach Tiles: @@ -748,7 +751,7 @@ Templates: 8: Water Template@40: Id: 40 - Image: sh38 + Image: sh38.sno Size: 2,1 Category: Beach Tiles: @@ -756,7 +759,7 @@ Templates: 1: Beach Template@41: Id: 41 - Image: sh39 + Image: sh39.sno Size: 3,3 Category: Beach Tiles: @@ -771,7 +774,7 @@ Templates: 8: Water Template@42: Id: 42 - Image: sh40 + Image: sh40.sno Size: 5,5 Category: Beach Tiles: @@ -792,7 +795,7 @@ Templates: 24: Water Template@43: Id: 43 - Image: sh41 + Image: sh41.sno Size: 4,4 Category: Beach Tiles: @@ -810,7 +813,7 @@ Templates: 15: Water Template@44: Id: 44 - Image: sh42 + Image: sh42.sno Size: 4,3 Category: Beach Tiles: @@ -825,7 +828,7 @@ Templates: 11: Water Template@45: Id: 45 - Image: sh43 + Image: sh43.sno Size: 3,3 Category: Beach Tiles: @@ -840,7 +843,7 @@ Templates: 8: Water Template@46: Id: 46 - Image: sh44 + Image: sh44.sno Size: 2,2 Category: Beach Tiles: @@ -850,7 +853,7 @@ Templates: 3: Water Template@47: Id: 47 - Image: sh45 + Image: sh45.sno Size: 3,3 Category: Beach Tiles: @@ -865,7 +868,7 @@ Templates: 8: Beach Template@48: Id: 48 - Image: sh46 + Image: sh46.sno Size: 2,2 Category: Beach Tiles: @@ -875,7 +878,7 @@ Templates: 3: Beach Template@49: Id: 49 - Image: sh47 + Image: sh47.sno Size: 3,3 Category: Beach Tiles: @@ -887,7 +890,7 @@ Templates: 8: Water Template@50: Id: 50 - Image: sh48 + Image: sh48.sno Size: 2,2 Category: Beach Tiles: @@ -897,7 +900,7 @@ Templates: 3: Beach Template@51: Id: 51 - Image: sh49 + Image: sh49.sno Size: 3,3 Category: Beach Tiles: @@ -912,7 +915,7 @@ Templates: 8: Rock Template@52: Id: 52 - Image: sh50 + Image: sh50.sno Size: 2,2 Category: Beach Tiles: @@ -922,7 +925,7 @@ Templates: 3: Water Template@53: Id: 53 - Image: sh51 + Image: sh51.sno Size: 3,3 Category: Beach Tiles: @@ -935,7 +938,7 @@ Templates: 8: Clear Template@54: Id: 54 - Image: sh52 + Image: sh52.sno Size: 3,3 Category: Beach Tiles: @@ -948,7 +951,7 @@ Templates: 8: Water Template@55: Id: 55 - Image: sh53 + Image: sh53.sno Size: 3,3 Category: Beach Tiles: @@ -962,7 +965,7 @@ Templates: 8: Clear Template@56: Id: 56 - Image: sh54 + Image: sh54.sno Size: 3,3 Category: Beach Tiles: @@ -974,14 +977,14 @@ Templates: 6: Clear Template@57: Id: 57 - Image: sh55 + Image: sh55.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@58: Id: 58 - Image: sh56 + Image: sh56.sno Size: 2,1 Category: Debris Tiles: @@ -989,7 +992,7 @@ Templates: 1: Rock Template@135: Id: 135 - Image: s01 + Image: s01.sno Size: 2,2 Category: Cliffs Tiles: @@ -999,7 +1002,7 @@ Templates: 3: Rock Template@136: Id: 136 - Image: s02 + Image: s02.sno Size: 2,3 Category: Cliffs Tiles: @@ -1011,7 +1014,7 @@ Templates: 5: Rock Template@137: Id: 137 - Image: s03 + Image: s03.sno Size: 2,2 Category: Cliffs Tiles: @@ -1021,7 +1024,7 @@ Templates: 3: Rock Template@138: Id: 138 - Image: s04 + Image: s04.sno Size: 2,2 Category: Cliffs Tiles: @@ -1031,7 +1034,7 @@ Templates: 3: Rock Template@139: Id: 139 - Image: s05 + Image: s05.sno Size: 2,2 Category: Cliffs Tiles: @@ -1041,7 +1044,7 @@ Templates: 3: Rock Template@140: Id: 140 - Image: s06 + Image: s06.sno Size: 2,3 Category: Cliffs Tiles: @@ -1052,7 +1055,7 @@ Templates: 4: Rock Template@141: Id: 141 - Image: s07 + Image: s07.sno Size: 2,2 Category: Cliffs Tiles: @@ -1062,7 +1065,7 @@ Templates: 3: Rock Template@142: Id: 142 - Image: s08 + Image: s08.sno Size: 2,2 Category: Cliffs Tiles: @@ -1072,7 +1075,7 @@ Templates: 3: Rock Template@143: Id: 143 - Image: s09 + Image: s09.sno Size: 3,2 Category: Cliffs Tiles: @@ -1084,7 +1087,7 @@ Templates: 5: Rock Template@144: Id: 144 - Image: s10 + Image: s10.sno Size: 2,2 Category: Cliffs Tiles: @@ -1094,7 +1097,7 @@ Templates: 3: Rock Template@145: Id: 145 - Image: s11 + Image: s11.sno Size: 2,2 Category: Cliffs Tiles: @@ -1104,7 +1107,7 @@ Templates: 3: Rock Template@146: Id: 146 - Image: s12 + Image: s12.sno Size: 2,2 Category: Cliffs Tiles: @@ -1114,7 +1117,7 @@ Templates: 3: Rock Template@147: Id: 147 - Image: s13 + Image: s13.sno Size: 3,2 Category: Cliffs Tiles: @@ -1126,7 +1129,7 @@ Templates: 5: Rough Template@148: Id: 148 - Image: s14 + Image: s14.sno Size: 2,2 Category: Cliffs Tiles: @@ -1135,7 +1138,7 @@ Templates: 2: Rock Template@149: Id: 149 - Image: s15 + Image: s15.sno Size: 2,2 Category: Cliffs Tiles: @@ -1145,7 +1148,7 @@ Templates: 3: Rock Template@150: Id: 150 - Image: s16 + Image: s16.sno Size: 2,3 Category: Cliffs Tiles: @@ -1155,7 +1158,7 @@ Templates: 5: Rock Template@151: Id: 151 - Image: s17 + Image: s17.sno Size: 2,2 Category: Cliffs Tiles: @@ -1165,7 +1168,7 @@ Templates: 3: Rock Template@152: Id: 152 - Image: s18 + Image: s18.sno Size: 2,2 Category: Cliffs Tiles: @@ -1175,7 +1178,7 @@ Templates: 3: Rock Template@153: Id: 153 - Image: s19 + Image: s19.sno Size: 2,2 Category: Cliffs Tiles: @@ -1185,7 +1188,7 @@ Templates: 3: Rock Template@154: Id: 154 - Image: s20 + Image: s20.sno Size: 2,3 Category: Cliffs Tiles: @@ -1196,7 +1199,7 @@ Templates: 5: Rough Template@155: Id: 155 - Image: s21 + Image: s21.sno Size: 1,2 Category: Cliffs Tiles: @@ -1204,7 +1207,7 @@ Templates: 1: Rock Template@156: Id: 156 - Image: s22 + Image: s22.sno Size: 2,1 Category: Cliffs Tiles: @@ -1212,7 +1215,7 @@ Templates: 1: Rock Template@157: Id: 157 - Image: s23 + Image: s23.sno Size: 3,2 Category: Cliffs Tiles: @@ -1224,7 +1227,7 @@ Templates: 5: Rough Template@158: Id: 158 - Image: s24 + Image: s24.sno Size: 2,2 Category: Cliffs Tiles: @@ -1234,7 +1237,7 @@ Templates: 3: Rock Template@159: Id: 159 - Image: s25 + Image: s25.sno Size: 2,2 Category: Cliffs Tiles: @@ -1244,7 +1247,7 @@ Templates: 3: Rock Template@160: Id: 160 - Image: s26 + Image: s26.sno Size: 2,2 Category: Cliffs Tiles: @@ -1254,7 +1257,7 @@ Templates: 3: Rock Template@161: Id: 161 - Image: s27 + Image: s27.sno Size: 3,2 Category: Cliffs Tiles: @@ -1266,7 +1269,7 @@ Templates: 5: Rock Template@162: Id: 162 - Image: s28 + Image: s28.sno Size: 2,2 Category: Cliffs Tiles: @@ -1275,7 +1278,7 @@ Templates: 3: Rock Template@163: Id: 163 - Image: s29 + Image: s29.sno Size: 2,2 Category: Cliffs Tiles: @@ -1285,7 +1288,7 @@ Templates: 3: Rock Template@164: Id: 164 - Image: s30 + Image: s30.sno Size: 2,2 Category: Cliffs Tiles: @@ -1295,7 +1298,7 @@ Templates: 3: Rock Template@165: Id: 165 - Image: s31 + Image: s31.sno Size: 2,2 Category: Cliffs Tiles: @@ -1305,7 +1308,7 @@ Templates: 3: Rock Template@166: Id: 166 - Image: s32 + Image: s32.sno Size: 2,2 Category: Cliffs Tiles: @@ -1314,7 +1317,7 @@ Templates: 2: Rough Template@167: Id: 167 - Image: s33 + Image: s33.sno Size: 2,2 Category: Cliffs Tiles: @@ -1324,7 +1327,7 @@ Templates: 3: Rock Template@168: Id: 168 - Image: s34 + Image: s34.sno Size: 2,2 Category: Cliffs Tiles: @@ -1334,7 +1337,7 @@ Templates: 3: Rock Template@169: Id: 169 - Image: s35 + Image: s35.sno Size: 2,2 Category: Cliffs Tiles: @@ -1344,7 +1347,7 @@ Templates: 3: Rock Template@170: Id: 170 - Image: s36 + Image: s36.sno Size: 2,2 Category: Cliffs Tiles: @@ -1354,7 +1357,7 @@ Templates: 3: Rock Template@171: Id: 171 - Image: s37 + Image: s37.sno Size: 2,2 Category: Cliffs Tiles: @@ -1364,7 +1367,7 @@ Templates: 3: Rock Template@172: Id: 172 - Image: s38 + Image: s38.sno Size: 2,2 Category: Cliffs Tiles: @@ -1374,7 +1377,7 @@ Templates: 3: Rock Template@59: Id: 59 - Image: wc01 + Image: wc01.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1384,7 +1387,7 @@ Templates: 3: Rock Template@60: Id: 60 - Image: wc02 + Image: wc02.sno Size: 2,3 Category: Water Cliffs Tiles: @@ -1396,7 +1399,7 @@ Templates: 5: Rock Template@61: Id: 61 - Image: wc03 + Image: wc03.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1406,7 +1409,7 @@ Templates: 3: Rock Template@62: Id: 62 - Image: wc04 + Image: wc04.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1416,7 +1419,7 @@ Templates: 3: Rock Template@63: Id: 63 - Image: wc05 + Image: wc05.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1426,7 +1429,7 @@ Templates: 3: Rock Template@64: Id: 64 - Image: wc06 + Image: wc06.sno Size: 2,3 Category: Water Cliffs Tiles: @@ -1437,7 +1440,7 @@ Templates: 4: Rock Template@65: Id: 65 - Image: wc07 + Image: wc07.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1447,7 +1450,7 @@ Templates: 3: Rock Template@66: Id: 66 - Image: wc08 + Image: wc08.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1457,7 +1460,7 @@ Templates: 3: Rock Template@67: Id: 67 - Image: wc09 + Image: wc09.sno Size: 3,2 Category: Water Cliffs Tiles: @@ -1469,7 +1472,7 @@ Templates: 5: Rock Template@68: Id: 68 - Image: wc10 + Image: wc10.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1479,7 +1482,7 @@ Templates: 3: Rock Template@69: Id: 69 - Image: wc11 + Image: wc11.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1489,7 +1492,7 @@ Templates: 3: Rock Template@70: Id: 70 - Image: wc12 + Image: wc12.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1499,7 +1502,7 @@ Templates: 3: Rock Template@71: Id: 71 - Image: wc13 + Image: wc13.sno Size: 3,2 Category: Water Cliffs Tiles: @@ -1511,7 +1514,7 @@ Templates: 5: Clear Template@72: Id: 72 - Image: wc14 + Image: wc14.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1521,7 +1524,7 @@ Templates: 3: Beach Template@73: Id: 73 - Image: wc15 + Image: wc15.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1531,7 +1534,7 @@ Templates: 3: Rock Template@74: Id: 74 - Image: wc16 + Image: wc16.sno Size: 2,3 Category: Water Cliffs Tiles: @@ -1541,7 +1544,7 @@ Templates: 5: Rock Template@75: Id: 75 - Image: wc17 + Image: wc17.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1551,7 +1554,7 @@ Templates: 3: Rock Template@76: Id: 76 - Image: wc18 + Image: wc18.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1561,7 +1564,7 @@ Templates: 3: Rock Template@77: Id: 77 - Image: wc19 + Image: wc19.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1571,7 +1574,7 @@ Templates: 3: Rock Template@78: Id: 78 - Image: wc20 + Image: wc20.sno Size: 2,3 Category: Water Cliffs Tiles: @@ -1582,7 +1585,7 @@ Templates: 5: Rough Template@79: Id: 79 - Image: wc21 + Image: wc21.sno Size: 1,2 Category: Water Cliffs Tiles: @@ -1590,7 +1593,7 @@ Templates: 1: Rock Template@80: Id: 80 - Image: wc22 + Image: wc22.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1600,7 +1603,7 @@ Templates: 3: Rock Template@81: Id: 81 - Image: wc23 + Image: wc23.sno Size: 3,2 Category: Water Cliffs Tiles: @@ -1612,7 +1615,7 @@ Templates: 5: Water Template@82: Id: 82 - Image: wc24 + Image: wc24.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1622,7 +1625,7 @@ Templates: 3: Rock Template@83: Id: 83 - Image: wc25 + Image: wc25.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1632,7 +1635,7 @@ Templates: 3: Rock Template@84: Id: 84 - Image: wc26 + Image: wc26.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1642,7 +1645,7 @@ Templates: 3: Rock Template@85: Id: 85 - Image: wc27 + Image: wc27.sno Size: 3,2 Category: Water Cliffs Tiles: @@ -1654,7 +1657,7 @@ Templates: 5: Rock Template@86: Id: 86 - Image: wc28 + Image: wc28.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1663,7 +1666,7 @@ Templates: 3: Rock Template@87: Id: 87 - Image: wc29 + Image: wc29.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1673,7 +1676,7 @@ Templates: 3: Rock Template@88: Id: 88 - Image: wc30 + Image: wc30.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1683,7 +1686,7 @@ Templates: 3: Rock Template@89: Id: 89 - Image: wc31 + Image: wc31.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1693,7 +1696,7 @@ Templates: 3: Rock Template@90: Id: 90 - Image: wc32 + Image: wc32.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1702,7 +1705,7 @@ Templates: 2: Water Template@91: Id: 91 - Image: wc33 + Image: wc33.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1712,7 +1715,7 @@ Templates: 3: Rock Template@92: Id: 92 - Image: wc34 + Image: wc34.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1722,7 +1725,7 @@ Templates: 3: Rock Template@93: Id: 93 - Image: wc35 + Image: wc35.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1732,7 +1735,7 @@ Templates: 3: Rock Template@94: Id: 94 - Image: wc36 + Image: wc36.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1742,7 +1745,7 @@ Templates: 3: Rock Template@95: Id: 95 - Image: wc37 + Image: wc37.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1752,7 +1755,7 @@ Templates: 3: Rock Template@96: Id: 96 - Image: wc38 + Image: wc38.sno Size: 2,2 Category: Water Cliffs Tiles: @@ -1762,7 +1765,7 @@ Templates: 3: Rock Template@173: Id: 173 - Image: d01 + Image: d01.sno Size: 2,2 Category: Road Tiles: @@ -1771,7 +1774,7 @@ Templates: 3: Clear Template@174: Id: 174 - Image: d02 + Image: d02.sno Size: 2,2 Category: Road Tiles: @@ -1781,7 +1784,7 @@ Templates: 3: Clear Template@175: Id: 175 - Image: d03 + Image: d03.sno Size: 1,2 Category: Road Tiles: @@ -1789,7 +1792,7 @@ Templates: 1: Road Template@176: Id: 176 - Image: d04 + Image: d04.sno Size: 2,2 Category: Road Tiles: @@ -1798,7 +1801,7 @@ Templates: 3: Clear Template@177: Id: 177 - Image: d05 + Image: d05.sno Size: 3,4 Category: Road Tiles: @@ -1812,7 +1815,7 @@ Templates: 10: Road Template@178: Id: 178 - Image: d06 + Image: d06.sno Size: 2,3 Category: Road Tiles: @@ -1823,7 +1826,7 @@ Templates: 5: Clear Template@179: Id: 179 - Image: d07 + Image: d07.sno Size: 3,2 Category: Road Tiles: @@ -1834,7 +1837,7 @@ Templates: 5: Clear Template@180: Id: 180 - Image: d08 + Image: d08.sno Size: 3,2 Category: Road Tiles: @@ -1844,7 +1847,7 @@ Templates: 5: Clear Template@181: Id: 181 - Image: d09 + Image: d09.sno Size: 4,3 Category: Road Tiles: @@ -1860,7 +1863,7 @@ Templates: 11: Clear Template@182: Id: 182 - Image: d10 + Image: d10.sno Size: 4,2 Category: Road Tiles: @@ -1872,7 +1875,7 @@ Templates: 7: Road Template@183: Id: 183 - Image: d11 + Image: d11.sno Size: 2,3 Category: Road Tiles: @@ -1882,7 +1885,7 @@ Templates: 4: Clear Template@184: Id: 184 - Image: d12 + Image: d12.sno Size: 2,2 Category: Road Tiles: @@ -1891,7 +1894,7 @@ Templates: 3: Road Template@185: Id: 185 - Image: d13 + Image: d13.sno Size: 4,3 Category: Road Tiles: @@ -1906,7 +1909,7 @@ Templates: 11: Road Template@186: Id: 186 - Image: d14 + Image: d14.sno Size: 3,3 Category: Road Tiles: @@ -1920,7 +1923,7 @@ Templates: 8: Road Template@187: Id: 187 - Image: d15 + Image: d15.sno Size: 3,3 Category: Road Tiles: @@ -1934,7 +1937,7 @@ Templates: 7: Clear Template@188: Id: 188 - Image: d16 + Image: d16.sno Size: 3,3 Category: Road Tiles: @@ -1949,7 +1952,7 @@ Templates: 8: Rock Template@189: Id: 189 - Image: d17 + Image: d17.sno Size: 3,2 Category: Road Tiles: @@ -1961,7 +1964,7 @@ Templates: 5: Clear Template@190: Id: 190 - Image: d18 + Image: d18.sno Size: 3,3 Category: Road Tiles: @@ -1976,7 +1979,7 @@ Templates: 8: Rock Template@191: Id: 191 - Image: d19 + Image: d19.sno Size: 3,3 Category: Road Tiles: @@ -1991,7 +1994,7 @@ Templates: 8: Clear Template@192: Id: 192 - Image: d20 + Image: d20.sno Size: 3,3 Category: Road Tiles: @@ -2005,7 +2008,7 @@ Templates: 8: Road Template@193: Id: 193 - Image: d21 + Image: d21.sno Size: 3,2 Category: Road Tiles: @@ -2017,7 +2020,7 @@ Templates: 5: Rough Template@194: Id: 194 - Image: d22 + Image: d22.sno Size: 3,3 Category: Road Tiles: @@ -2030,7 +2033,7 @@ Templates: 8: Clear Template@195: Id: 195 - Image: d23 + Image: d23.sno Size: 3,3 Category: Road Tiles: @@ -2043,7 +2046,7 @@ Templates: 7: Road Template@196: Id: 196 - Image: d24 + Image: d24.sno Size: 3,3 Category: Road Tiles: @@ -2056,7 +2059,7 @@ Templates: 8: Road Template@197: Id: 197 - Image: d25 + Image: d25.sno Size: 3,3 Category: Road Tiles: @@ -2069,7 +2072,7 @@ Templates: 8: Road Template@198: Id: 198 - Image: d26 + Image: d26.sno Size: 2,2 Category: Road Tiles: @@ -2077,7 +2080,7 @@ Templates: 2: Road Template@199: Id: 199 - Image: d27 + Image: d27.sno Size: 2,2 Category: Road Tiles: @@ -2085,7 +2088,7 @@ Templates: 2: Road Template@200: Id: 200 - Image: d28 + Image: d28.sno Size: 2,2 Category: Road Tiles: @@ -2094,7 +2097,7 @@ Templates: 2: Rough Template@201: Id: 201 - Image: d29 + Image: d29.sno Size: 2,2 Category: Road Tiles: @@ -2103,7 +2106,7 @@ Templates: 2: Road Template@202: Id: 202 - Image: d30 + Image: d30.sno Size: 2,2 Category: Road Tiles: @@ -2112,7 +2115,7 @@ Templates: 2: Road Template@203: Id: 203 - Image: d31 + Image: d31.sno Size: 2,2 Category: Road Tiles: @@ -2121,7 +2124,7 @@ Templates: 3: Road Template@204: Id: 204 - Image: d32 + Image: d32.sno Size: 2,2 Category: Road Tiles: @@ -2130,7 +2133,7 @@ Templates: 3: Clear Template@205: Id: 205 - Image: d33 + Image: d33.sno Size: 2,2 Category: Road Tiles: @@ -2139,7 +2142,7 @@ Templates: 3: Road Template@206: Id: 206 - Image: d34 + Image: d34.sno Size: 3,3 Category: Road Tiles: @@ -2152,7 +2155,7 @@ Templates: 7: Road Template@207: Id: 207 - Image: d35 + Image: d35.sno Size: 3,3 Category: Road Tiles: @@ -2165,7 +2168,7 @@ Templates: 7: Road Template@208: Id: 208 - Image: d36 + Image: d36.sno Size: 2,2 Category: Road Tiles: @@ -2173,7 +2176,7 @@ Templates: 3: Road Template@209: Id: 209 - Image: d37 + Image: d37.sno Size: 2,2 Category: Road Tiles: @@ -2181,7 +2184,7 @@ Templates: 3: Road Template@210: Id: 210 - Image: d38 + Image: d38.sno Size: 2,2 Category: Road Tiles: @@ -2190,7 +2193,7 @@ Templates: 3: Road Template@211: Id: 211 - Image: d39 + Image: d39.sno Size: 2,2 Category: Road Tiles: @@ -2199,7 +2202,7 @@ Templates: 3: Road Template@212: Id: 212 - Image: d40 + Image: d40.sno Size: 2,2 Category: Road Tiles: @@ -2208,7 +2211,7 @@ Templates: 3: Road Template@213: Id: 213 - Image: d41 + Image: d41.sno Size: 2,2 Category: Road Tiles: @@ -2217,7 +2220,7 @@ Templates: 3: Road Template@214: Id: 214 - Image: d42 + Image: d42.sno Size: 2,2 Category: Road Tiles: @@ -2226,7 +2229,7 @@ Templates: 3: Road Template@215: Id: 215 - Image: d43 + Image: d43.sno Size: 2,2 Category: Road Tiles: @@ -2235,21 +2238,21 @@ Templates: 3: Road Template@227: Id: 227 - Image: d44 + Image: d44.sno Size: 1,1 Category: Road Tiles: 0: Road Template@228: Id: 228 - Image: d45 + Image: d45.sno Size: 1,1 Category: Road Tiles: 0: Road Template@231: Id: 231 - Image: rc01 + Image: rc01.sno Size: 2,2 Category: River Tiles: @@ -2259,7 +2262,7 @@ Templates: 3: Rock Template@232: Id: 232 - Image: rc02 + Image: rc02.sno Size: 2,2 Category: River Tiles: @@ -2269,7 +2272,7 @@ Templates: 3: Rock Template@233: Id: 233 - Image: rc03 + Image: rc03.sno Size: 2,2 Category: River Tiles: @@ -2279,7 +2282,7 @@ Templates: 3: Rock Template@234: Id: 234 - Image: rc04 + Image: rc04.sno Size: 2,2 Category: River Tiles: @@ -2289,7 +2292,7 @@ Templates: 3: Rock Template@112: Id: 112 - Image: rv01 + Image: rv01.sno Size: 5,4 Category: River Tiles: @@ -2309,7 +2312,7 @@ Templates: 17: Rough Template@113: Id: 113 - Image: rv02 + Image: rv02.sno Size: 5,3 Category: River Tiles: @@ -2328,7 +2331,7 @@ Templates: 12: Rock Template@114: Id: 114 - Image: rv03 + Image: rv03.sno Size: 4,4 Category: River Tiles: @@ -2347,7 +2350,7 @@ Templates: 15: Rock Template@115: Id: 115 - Image: rv04 + Image: rv04.sno Size: 4,4 Category: River Tiles: @@ -2365,7 +2368,7 @@ Templates: 14: Rock Template@116: Id: 116 - Image: rv05 + Image: rv05.sno Size: 3,3 Category: River Tiles: @@ -2380,7 +2383,7 @@ Templates: 8: Rock Template@117: Id: 117 - Image: rv06 + Image: rv06.sno Size: 3,2 Category: River Tiles: @@ -2392,7 +2395,7 @@ Templates: 5: Rock Template@118: Id: 118 - Image: rv07 + Image: rv07.sno Size: 3,2 Category: River Tiles: @@ -2404,7 +2407,7 @@ Templates: 5: River Template@119: Id: 119 - Image: rv08 + Image: rv08.sno Size: 2,2 Category: River Tiles: @@ -2414,7 +2417,7 @@ Templates: 3: River Template@120: Id: 120 - Image: rv09 + Image: rv09.sno Size: 2,2 Category: River Tiles: @@ -2424,7 +2427,7 @@ Templates: 3: River Template@121: Id: 121 - Image: rv10 + Image: rv10.sno Size: 2,2 Category: River Tiles: @@ -2434,7 +2437,7 @@ Templates: 3: River Template@122: Id: 122 - Image: rv11 + Image: rv11.sno Size: 2,2 Category: River Tiles: @@ -2444,7 +2447,7 @@ Templates: 3: Rock Template@123: Id: 123 - Image: rv12 + Image: rv12.sno Size: 3,4 Category: River Tiles: @@ -2462,7 +2465,7 @@ Templates: 11: Rock Template@124: Id: 124 - Image: rv13 + Image: rv13.sno Size: 4,4 Category: River Tiles: @@ -2482,7 +2485,7 @@ Templates: 15: Rough Template@229: Id: 229 - Image: rv14 + Image: rv14.sno Size: 1,2 Category: River Tiles: @@ -2490,7 +2493,7 @@ Templates: 1: River Template@230: Id: 230 - Image: rv15 + Image: rv15.sno Size: 2,1 Category: River Tiles: @@ -2498,7 +2501,7 @@ Templates: 1: River Template@235: Id: 235 - Image: br1a + Image: br1a.sno Size: 4,3 Category: Bridge Tiles: @@ -2513,7 +2516,7 @@ Templates: 11: Rock Template@236: Id: 236 - Image: br1b + Image: br1b.sno Size: 4,3 Category: Bridge Tiles: @@ -2528,7 +2531,7 @@ Templates: 11: Rock Template@237: Id: 237 - Image: br1c + Image: br1c.sno Size: 4,3 Category: Bridge Tiles: @@ -2543,7 +2546,7 @@ Templates: 11: Rock Template@238: Id: 238 - Image: br2a + Image: br2a.sno Size: 5,3 Category: Bridge Tiles: @@ -2559,7 +2562,7 @@ Templates: 13: Rock Template@239: Id: 239 - Image: br2b + Image: br2b.sno Size: 5,3 Category: Bridge Tiles: @@ -2575,7 +2578,7 @@ Templates: 13: Rock Template@240: Id: 240 - Image: br2c + Image: br2c.sno Size: 5,3 Category: Bridge Tiles: @@ -2591,7 +2594,7 @@ Templates: 13: Rock Template@241: Id: 241 - Image: br3a + Image: br3a.sno Size: 4,2 Category: Bridge Tiles: @@ -2602,7 +2605,7 @@ Templates: 7: Rock Template@242: Id: 242 - Image: br3b + Image: br3b.sno Size: 4,2 Category: Bridge Tiles: @@ -2613,7 +2616,7 @@ Templates: 7: Rock Template@243: Id: 243 - Image: br3c + Image: br3c.sno Size: 4,2 Category: Bridge Tiles: @@ -2624,7 +2627,7 @@ Templates: 7: Rock Template@244: Id: 244 - Image: br3d + Image: br3d.sno Size: 4,2 Category: Bridge Tiles: @@ -2635,7 +2638,7 @@ Templates: 7: River Template@245: Id: 245 - Image: br3e + Image: br3e.sno Size: 4,2 Category: Bridge Tiles: @@ -2646,7 +2649,7 @@ Templates: 7: Water Template@246: Id: 246 - Image: br3f + Image: br3f.sno Size: 4,2 Category: Bridge Tiles: @@ -2657,7 +2660,7 @@ Templates: 7: Water Template@380: Id: 380 - Image: br1x + Image: br1x.sno Size: 5,3 Category: Bridge Tiles: @@ -2668,7 +2671,7 @@ Templates: 14: Water Template@381: Id: 381 - Image: br2x + Image: br2x.sno Size: 5,1 Category: Bridge Tiles: @@ -2676,7 +2679,7 @@ Templates: 4: Beach Template@131: Id: 131 - Image: bridge1 + Image: bridge1.sno Size: 5,3 Category: Bridge Tiles: @@ -2692,7 +2695,7 @@ Templates: 12: Rock Template@132: Id: 132 - Image: bridge1d + Image: bridge1d.sno Size: 5,3 Category: Bridge Tiles: @@ -2708,7 +2711,7 @@ Templates: 12: Rock Template@378: Id: 378 - Image: bridge1h + Image: bridge1h.sno Size: 5,3 Category: Bridge Tiles: @@ -2724,7 +2727,7 @@ Templates: 12: Rough Template@382: Id: 382 - Image: bridge1x + Image: bridge1x.sno Size: 5,4 Category: Bridge Tiles: @@ -2738,7 +2741,7 @@ Templates: 19: Rock Template@133: Id: 133 - Image: bridge2 + Image: bridge2.sno Size: 5,2 Category: Bridge Tiles: @@ -2753,7 +2756,7 @@ Templates: 9: Rock Template@134: Id: 134 - Image: bridge2d + Image: bridge2d.sno Size: 5,2 Category: Bridge Tiles: @@ -2768,7 +2771,7 @@ Templates: 9: Rock Template@379: Id: 379 - Image: bridge2h + Image: bridge2h.sno Size: 5,2 Category: Bridge Tiles: @@ -2783,7 +2786,7 @@ Templates: 9: Rock Template@383: Id: 383 - Image: bridge2x + Image: bridge2x.sno Size: 5,5 Category: Bridge Tiles: @@ -2802,7 +2805,7 @@ Templates: 24: Road Template@247: Id: 247 - Image: f01 + Image: f01.sno Size: 3,3 Category: Bridge Tiles: @@ -2817,7 +2820,7 @@ Templates: 8: Beach Template@248: Id: 248 - Image: f02 + Image: f02.sno Size: 3,3 Category: Bridge Tiles: @@ -2832,7 +2835,7 @@ Templates: 8: Beach Template@249: Id: 249 - Image: f03 + Image: f03.sno Size: 3,3 Category: Bridge Tiles: @@ -2847,7 +2850,7 @@ Templates: 8: Clear Template@250: Id: 250 - Image: f04 + Image: f04.sno Size: 3,3 Category: Bridge Tiles: @@ -2862,7 +2865,7 @@ Templates: 8: Beach Template@251: Id: 251 - Image: f05 + Image: f05.sno Size: 3,3 Category: Bridge Tiles: @@ -2877,7 +2880,7 @@ Templates: 8: Beach Template@252: Id: 252 - Image: f06 + Image: f06.sno Size: 3,3 Category: Bridge Tiles: @@ -2892,7 +2895,7 @@ Templates: 8: Clear Template@129: Id: 129 - Image: ford1 + Image: ford1.sno Size: 3,3 Category: Bridge Tiles: @@ -2907,7 +2910,7 @@ Templates: 8: Rough Template@130: Id: 130 - Image: ford2 + Image: ford2.sno Size: 3,3 Category: Bridge Tiles: @@ -2922,7 +2925,7 @@ Templates: 8: Clear Template@125: Id: 125 - Image: falls1 + Image: falls1.sno Size: 3,3 Category: River Tiles: @@ -2937,7 +2940,7 @@ Templates: 8: Rock Template@126: Id: 126 - Image: falls1a + Image: falls1a.sno Size: 3,3 Category: Water Cliffs Tiles: @@ -2952,7 +2955,7 @@ Templates: 8: Rock Template@127: Id: 127 - Image: falls2 + Image: falls2.sno Size: 3,2 Category: River Tiles: @@ -2964,7 +2967,7 @@ Templates: 5: Rock Template@128: Id: 128 - Image: falls2a + Image: falls2a.sno Size: 3,2 Category: Water Cliffs Tiles: @@ -2976,14 +2979,14 @@ Templates: 5: River Template@97: Id: 97 - Image: b1 + Image: b1.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@98: Id: 98 - Image: b2 + Image: b2.sno Size: 2,1 Category: Debris Tiles: @@ -2991,7 +2994,7 @@ Templates: 1: Rock Template@99: Id: 99 - Image: b3 + Image: b3.sno Size: 3,1 Category: Debris Tiles: @@ -3000,56 +3003,56 @@ Templates: 2: Rock Template@216: Id: 216 - Image: rf01 + Image: rf01.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@217: Id: 217 - Image: rf02 + Image: rf02.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@218: Id: 218 - Image: rf03 + Image: rf03.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@219: Id: 219 - Image: rf04 + Image: rf04.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@220: Id: 220 - Image: rf05 + Image: rf05.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@221: Id: 221 - Image: rf06 + Image: rf06.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@222: Id: 222 - Image: rf07 + Image: rf07.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@223: Id: 223 - Image: rf08 + Image: rf08.sno Size: 1,2 Category: Debris Tiles: @@ -3057,7 +3060,7 @@ Templates: 1: Rock Template@224: Id: 224 - Image: rf09 + Image: rf09.sno Size: 1,2 Category: Debris Tiles: @@ -3065,7 +3068,7 @@ Templates: 1: Rock Template@225: Id: 225 - Image: rf10 + Image: rf10.sno Size: 2,1 Category: Debris Tiles: @@ -3073,7 +3076,7 @@ Templates: 1: Rough Template@226: Id: 226 - Image: rf11 + Image: rf11.sno Size: 2,1 Category: Debris Tiles: @@ -3081,35 +3084,35 @@ Templates: 1: Rock Template@103: Id: 103 - Image: p01 + Image: p01.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@104: Id: 104 - Image: p02 + Image: p02.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@105: Id: 105 - Image: p03 + Image: p03.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@106: Id: 106 - Image: p04 + Image: p04.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@107: Id: 107 - Image: p07 + Image: p07.sno Size: 4,2 Category: Debris Tiles: @@ -3123,7 +3126,7 @@ Templates: 7: Clear Template@108: Id: 108 - Image: p08 + Image: p08.sno Size: 3,2 Category: Debris Tiles: @@ -3135,7 +3138,7 @@ Templates: 5: Rough Template@109: Id: 109 - Image: p13 + Image: p13.sno Size: 3,2 Category: Debris Tiles: @@ -3147,7 +3150,7 @@ Templates: 5: Rock Template@110: Id: 110 - Image: p14 + Image: p14.sno Size: 2,1 Category: Debris Tiles: diff --git a/mods/ra/tilesets/temperat.yaml b/mods/ra/tilesets/temperat.yaml index af469eb30d..d450d2605b 100644 --- a/mods/ra/tilesets/temperat.yaml +++ b/mods/ra/tilesets/temperat.yaml @@ -1,80 +1,75 @@ General: Name: Temperate Id: TEMPERAT - Extensions: .tem, .shp Palette: temperat.pal + Extensions: .tem, .shp EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Water Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 40, 68, 40 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 92, 116, 164 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 94, 67, 13 - TargetTypes: Ground - TerrainType@Bridge: - Type: Bridge - AcceptsSmudgeType: Crater, Scorch - Color: 96, 96, 96 - TargetTypes: Ground, Bridge - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 92, 140, 180 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 TargetTypes: Ground - TerrainType@Ore: - Type: Ore + Color: 255,176,156,120 + TerrainType@Bridge: + Type: Bridge + TargetTypes: Ground, Bridge AcceptsSmudgeType: Crater, Scorch - Color: 148, 128, 96 + Color: 255,96,96,96 + TerrainType@Clear: + Type: Clear TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,40,68,40 TerrainType@Gems: Type: Gems - AcceptsSmudgeType: Crater, Scorch - Color: 132, 112, 255 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,132,112,255 + TerrainType@Ore: + Type: Ore + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,148,128,96 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,92,140,180 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,94,67,13 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,68,68,60 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,92,116,164 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.tem Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -94,10 +89,10 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.tem Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -117,14 +112,14 @@ Templates: 15: Clear Template@1: Id: 1 - Image: w1 + Image: w1.tem Size: 1,1 Category: Terrain Tiles: 0: Water Template@2: Id: 2 - Image: w2 + Image: w2.tem Size: 2,2 Category: Terrain Tiles: @@ -134,7 +129,7 @@ Templates: 3: Water Template@3: Id: 3 - Image: sh01 + Image: sh01.tem Size: 4,5 Category: Beach Tiles: @@ -151,7 +146,7 @@ Templates: 16: Water Template@4: Id: 4 - Image: sh02 + Image: sh02.tem Size: 5,5 Category: Beach Tiles: @@ -172,7 +167,7 @@ Templates: 22: Rock Template@5: Id: 5 - Image: sh03 + Image: sh03.tem Size: 3,5 Category: Beach Tiles: @@ -187,7 +182,7 @@ Templates: 12: Water Template@6: Id: 6 - Image: sh04 + Image: sh04.tem Size: 3,3 Category: Beach Tiles: @@ -202,7 +197,7 @@ Templates: 8: Water Template@7: Id: 7 - Image: sh05 + Image: sh05.tem Size: 3,3 Category: Beach Tiles: @@ -217,7 +212,7 @@ Templates: 8: River Template@8: Id: 8 - Image: sh06 + Image: sh06.tem Size: 3,3 Category: Beach Tiles: @@ -232,7 +227,7 @@ Templates: 8: Water Template@9: Id: 9 - Image: sh07 + Image: sh07.tem Size: 3,3 Category: Beach Tiles: @@ -247,7 +242,7 @@ Templates: 8: Water Template@10: Id: 10 - Image: sh08 + Image: sh08.tem Size: 1,2 Category: Beach Tiles: @@ -255,7 +250,7 @@ Templates: 1: Beach Template@11: Id: 11 - Image: sh09 + Image: sh09.tem Size: 3,3 Category: Beach Tiles: @@ -270,7 +265,7 @@ Templates: 8: Water Template@12: Id: 12 - Image: sh10 + Image: sh10.tem Size: 5,6 Category: Beach Tiles: @@ -291,7 +286,7 @@ Templates: 29: Water Template@13: Id: 13 - Image: sh11 + Image: sh11.tem Size: 4,5 Category: Beach Tiles: @@ -310,7 +305,7 @@ Templates: 19: Beach Template@14: Id: 14 - Image: sh12 + Image: sh12.tem Size: 3,5 Category: Beach Tiles: @@ -327,7 +322,7 @@ Templates: 14: Water Template@15: Id: 15 - Image: sh13 + Image: sh13.tem Size: 6,5 Category: Beach Tiles: @@ -351,7 +346,7 @@ Templates: 29: Beach Template@16: Id: 16 - Image: sh14 + Image: sh14.tem Size: 4,4 Category: Beach Tiles: @@ -369,7 +364,7 @@ Templates: 15: Beach Template@17: Id: 17 - Image: sh15 + Image: sh15.tem Size: 5,3 Category: Beach Tiles: @@ -385,7 +380,7 @@ Templates: 14: Beach Template@18: Id: 18 - Image: sh16 + Image: sh16.tem Size: 3,3 Category: Beach Tiles: @@ -400,7 +395,7 @@ Templates: 8: Clear Template@19: Id: 19 - Image: sh17 + Image: sh17.tem Size: 2,1 Category: Beach Tiles: @@ -408,7 +403,7 @@ Templates: 1: Clear Template@20: Id: 20 - Image: sh18 + Image: sh18.tem Size: 3,3 Category: Beach Tiles: @@ -423,7 +418,7 @@ Templates: 8: Rough Template@21: Id: 21 - Image: sh19 + Image: sh19.tem Size: 4,5 Category: Beach Tiles: @@ -444,7 +439,7 @@ Templates: 18: Clear Template@22: Id: 22 - Image: sh20 + Image: sh20.tem Size: 5,4 Category: Beach Tiles: @@ -463,7 +458,7 @@ Templates: 17: Beach Template@23: Id: 23 - Image: sh21 + Image: sh21.tem Size: 5,3 Category: Beach Tiles: @@ -480,7 +475,7 @@ Templates: 12: Beach Template@24: Id: 24 - Image: sh22 + Image: sh22.tem Size: 6,5 Category: Beach Tiles: @@ -503,7 +498,7 @@ Templates: 29: Beach Template@25: Id: 25 - Image: sh23 + Image: sh23.tem Size: 5,5 Category: Beach Tiles: @@ -527,7 +522,7 @@ Templates: 24: Beach Template@26: Id: 26 - Image: sh24 + Image: sh24.tem Size: 3,4 Category: Beach Tiles: @@ -541,7 +536,7 @@ Templates: 11: Clear Template@27: Id: 27 - Image: sh25 + Image: sh25.tem Size: 3,3 Category: Beach Tiles: @@ -556,7 +551,7 @@ Templates: 8: Beach Template@28: Id: 28 - Image: sh26 + Image: sh26.tem Size: 3,3 Category: Beach Tiles: @@ -571,7 +566,7 @@ Templates: 8: Beach Template@29: Id: 29 - Image: sh27 + Image: sh27.tem Size: 3,3 Category: Beach Tiles: @@ -586,7 +581,7 @@ Templates: 8: Rough Template@30: Id: 30 - Image: sh28 + Image: sh28.tem Size: 3,3 Category: Beach Tiles: @@ -600,7 +595,7 @@ Templates: 8: Rough Template@31: Id: 31 - Image: sh29 + Image: sh29.tem Size: 1,2 Category: Beach Tiles: @@ -608,7 +603,7 @@ Templates: 1: Clear Template@32: Id: 32 - Image: sh30 + Image: sh30.tem Size: 3,2 Category: Beach Tiles: @@ -620,7 +615,7 @@ Templates: 5: Rough Template@33: Id: 33 - Image: sh31 + Image: sh31.tem Size: 6,5 Category: Beach Tiles: @@ -648,7 +643,7 @@ Templates: 28: Clear Template@34: Id: 34 - Image: sh32 + Image: sh32.tem Size: 4,4 Category: Beach Tiles: @@ -665,7 +660,7 @@ Templates: 13: Clear Template@35: Id: 35 - Image: sh33 + Image: sh33.tem Size: 3,4 Category: Beach Tiles: @@ -680,7 +675,7 @@ Templates: 10: Beach Template@36: Id: 36 - Image: sh34 + Image: sh34.tem Size: 6,5 Category: Beach Tiles: @@ -702,7 +697,7 @@ Templates: 26: Water Template@37: Id: 37 - Image: sh35 + Image: sh35.tem Size: 4,4 Category: Beach Tiles: @@ -719,7 +714,7 @@ Templates: 14: Water Template@38: Id: 38 - Image: sh36 + Image: sh36.tem Size: 4,3 Category: Beach Tiles: @@ -734,7 +729,7 @@ Templates: 10: Water Template@39: Id: 39 - Image: sh37 + Image: sh37.tem Size: 3,3 Category: Beach Tiles: @@ -748,7 +743,7 @@ Templates: 8: Water Template@40: Id: 40 - Image: sh38 + Image: sh38.tem Size: 2,1 Category: Beach Tiles: @@ -756,7 +751,7 @@ Templates: 1: Beach Template@41: Id: 41 - Image: sh39 + Image: sh39.tem Size: 3,3 Category: Beach Tiles: @@ -771,7 +766,7 @@ Templates: 8: Water Template@42: Id: 42 - Image: sh40 + Image: sh40.tem Size: 5,5 Category: Beach Tiles: @@ -792,7 +787,7 @@ Templates: 24: Water Template@43: Id: 43 - Image: sh41 + Image: sh41.tem Size: 4,4 Category: Beach Tiles: @@ -810,7 +805,7 @@ Templates: 15: Water Template@44: Id: 44 - Image: sh42 + Image: sh42.tem Size: 4,3 Category: Beach Tiles: @@ -825,7 +820,7 @@ Templates: 11: Water Template@45: Id: 45 - Image: sh43 + Image: sh43.tem Size: 3,3 Category: Beach Tiles: @@ -840,7 +835,7 @@ Templates: 8: Water Template@46: Id: 46 - Image: sh44 + Image: sh44.tem Size: 2,2 Category: Beach Tiles: @@ -850,7 +845,7 @@ Templates: 3: Water Template@47: Id: 47 - Image: sh45 + Image: sh45.tem Size: 3,3 Category: Beach Tiles: @@ -865,7 +860,7 @@ Templates: 8: Beach Template@48: Id: 48 - Image: sh46 + Image: sh46.tem Size: 2,2 Category: Beach Tiles: @@ -875,7 +870,7 @@ Templates: 3: Beach Template@49: Id: 49 - Image: sh47 + Image: sh47.tem Size: 3,3 Category: Beach Tiles: @@ -887,7 +882,7 @@ Templates: 8: Water Template@50: Id: 50 - Image: sh48 + Image: sh48.tem Size: 2,2 Category: Beach Tiles: @@ -897,7 +892,7 @@ Templates: 3: Beach Template@51: Id: 51 - Image: sh49 + Image: sh49.tem Size: 3,3 Category: Beach Tiles: @@ -912,7 +907,7 @@ Templates: 8: Rock Template@52: Id: 52 - Image: sh50 + Image: sh50.tem Size: 2,2 Category: Beach Tiles: @@ -922,7 +917,7 @@ Templates: 3: Water Template@53: Id: 53 - Image: sh51 + Image: sh51.tem Size: 3,3 Category: Beach Tiles: @@ -935,7 +930,7 @@ Templates: 8: Clear Template@54: Id: 54 - Image: sh52 + Image: sh52.tem Size: 3,3 Category: Beach Tiles: @@ -948,7 +943,7 @@ Templates: 8: Water Template@55: Id: 55 - Image: sh53 + Image: sh53.tem Size: 3,3 Category: Beach Tiles: @@ -962,7 +957,7 @@ Templates: 8: Clear Template@56: Id: 56 - Image: sh54 + Image: sh54.tem Size: 3,3 Category: Beach Tiles: @@ -974,14 +969,14 @@ Templates: 6: Clear Template@57: Id: 57 - Image: sh55 + Image: sh55.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@58: Id: 58 - Image: sh56 + Image: sh56.tem Size: 2,1 Category: Debris Tiles: @@ -989,7 +984,7 @@ Templates: 1: Rock Template@135: Id: 135 - Image: s01 + Image: s01.tem Size: 2,2 Category: Cliffs Tiles: @@ -999,7 +994,7 @@ Templates: 3: Rock Template@136: Id: 136 - Image: s02 + Image: s02.tem Size: 2,3 Category: Cliffs Tiles: @@ -1011,7 +1006,7 @@ Templates: 5: Rock Template@137: Id: 137 - Image: s03 + Image: s03.tem Size: 2,2 Category: Cliffs Tiles: @@ -1021,7 +1016,7 @@ Templates: 3: Rock Template@138: Id: 138 - Image: s04 + Image: s04.tem Size: 2,2 Category: Cliffs Tiles: @@ -1031,7 +1026,7 @@ Templates: 3: Rock Template@139: Id: 139 - Image: s05 + Image: s05.tem Size: 2,2 Category: Cliffs Tiles: @@ -1041,7 +1036,7 @@ Templates: 3: Rock Template@140: Id: 140 - Image: s06 + Image: s06.tem Size: 2,3 Category: Cliffs Tiles: @@ -1052,7 +1047,7 @@ Templates: 4: Rock Template@141: Id: 141 - Image: s07 + Image: s07.tem Size: 2,2 Category: Cliffs Tiles: @@ -1062,7 +1057,7 @@ Templates: 3: Rock Template@142: Id: 142 - Image: s08 + Image: s08.tem Size: 2,2 Category: Cliffs Tiles: @@ -1072,7 +1067,7 @@ Templates: 3: Rock Template@143: Id: 143 - Image: s09 + Image: s09.tem Size: 3,2 Category: Cliffs Tiles: @@ -1084,7 +1079,7 @@ Templates: 5: Rock Template@144: Id: 144 - Image: s10 + Image: s10.tem Size: 2,2 Category: Cliffs Tiles: @@ -1094,7 +1089,7 @@ Templates: 3: Rock Template@145: Id: 145 - Image: s11 + Image: s11.tem Size: 2,2 Category: Cliffs Tiles: @@ -1104,7 +1099,7 @@ Templates: 3: Rock Template@146: Id: 146 - Image: s12 + Image: s12.tem Size: 2,2 Category: Cliffs Tiles: @@ -1114,7 +1109,7 @@ Templates: 3: Rock Template@147: Id: 147 - Image: s13 + Image: s13.tem Size: 3,2 Category: Cliffs Tiles: @@ -1126,7 +1121,7 @@ Templates: 5: Rough Template@148: Id: 148 - Image: s14 + Image: s14.tem Size: 2,2 Category: Cliffs Tiles: @@ -1135,7 +1130,7 @@ Templates: 2: Rock Template@149: Id: 149 - Image: s15 + Image: s15.tem Size: 2,2 Category: Cliffs Tiles: @@ -1145,7 +1140,7 @@ Templates: 3: Rock Template@150: Id: 150 - Image: s16 + Image: s16.tem Size: 2,3 Category: Cliffs Tiles: @@ -1155,7 +1150,7 @@ Templates: 5: Rock Template@151: Id: 151 - Image: s17 + Image: s17.tem Size: 2,2 Category: Cliffs Tiles: @@ -1165,7 +1160,7 @@ Templates: 3: Rock Template@152: Id: 152 - Image: s18 + Image: s18.tem Size: 2,2 Category: Cliffs Tiles: @@ -1175,7 +1170,7 @@ Templates: 3: Rock Template@153: Id: 153 - Image: s19 + Image: s19.tem Size: 2,2 Category: Cliffs Tiles: @@ -1185,7 +1180,7 @@ Templates: 3: Rock Template@154: Id: 154 - Image: s20 + Image: s20.tem Size: 2,3 Category: Cliffs Tiles: @@ -1196,7 +1191,7 @@ Templates: 5: Rough Template@155: Id: 155 - Image: s21 + Image: s21.tem Size: 1,2 Category: Cliffs Tiles: @@ -1204,7 +1199,7 @@ Templates: 1: Rock Template@156: Id: 156 - Image: s22 + Image: s22.tem Size: 2,1 Category: Cliffs Tiles: @@ -1212,7 +1207,7 @@ Templates: 1: Rock Template@157: Id: 157 - Image: s23 + Image: s23.tem Size: 3,2 Category: Cliffs Tiles: @@ -1224,7 +1219,7 @@ Templates: 5: Rough Template@158: Id: 158 - Image: s24 + Image: s24.tem Size: 2,2 Category: Cliffs Tiles: @@ -1234,7 +1229,7 @@ Templates: 3: Rock Template@159: Id: 159 - Image: s25 + Image: s25.tem Size: 2,2 Category: Cliffs Tiles: @@ -1244,7 +1239,7 @@ Templates: 3: Rock Template@160: Id: 160 - Image: s26 + Image: s26.tem Size: 2,2 Category: Cliffs Tiles: @@ -1254,7 +1249,7 @@ Templates: 3: Rock Template@161: Id: 161 - Image: s27 + Image: s27.tem Size: 3,2 Category: Cliffs Tiles: @@ -1266,7 +1261,7 @@ Templates: 5: Rock Template@162: Id: 162 - Image: s28 + Image: s28.tem Size: 2,2 Category: Cliffs Tiles: @@ -1275,7 +1270,7 @@ Templates: 3: Rock Template@163: Id: 163 - Image: s29 + Image: s29.tem Size: 2,2 Category: Cliffs Tiles: @@ -1285,7 +1280,7 @@ Templates: 3: Rock Template@164: Id: 164 - Image: s30 + Image: s30.tem Size: 2,2 Category: Cliffs Tiles: @@ -1295,7 +1290,7 @@ Templates: 3: Rock Template@165: Id: 165 - Image: s31 + Image: s31.tem Size: 2,2 Category: Cliffs Tiles: @@ -1305,7 +1300,7 @@ Templates: 3: Rock Template@166: Id: 166 - Image: s32 + Image: s32.tem Size: 2,2 Category: Cliffs Tiles: @@ -1314,7 +1309,7 @@ Templates: 2: Rough Template@167: Id: 167 - Image: s33 + Image: s33.tem Size: 2,2 Category: Cliffs Tiles: @@ -1324,7 +1319,7 @@ Templates: 3: Rock Template@168: Id: 168 - Image: s34 + Image: s34.tem Size: 2,2 Category: Cliffs Tiles: @@ -1334,7 +1329,7 @@ Templates: 3: Rock Template@169: Id: 169 - Image: s35 + Image: s35.tem Size: 2,2 Category: Cliffs Tiles: @@ -1344,7 +1339,7 @@ Templates: 3: Rock Template@170: Id: 170 - Image: s36 + Image: s36.tem Size: 2,2 Category: Cliffs Tiles: @@ -1354,7 +1349,7 @@ Templates: 3: Rock Template@171: Id: 171 - Image: s37 + Image: s37.tem Size: 2,2 Category: Cliffs Tiles: @@ -1364,7 +1359,7 @@ Templates: 3: Rock Template@172: Id: 172 - Image: s38 + Image: s38.tem Size: 2,2 Category: Cliffs Tiles: @@ -1374,7 +1369,7 @@ Templates: 3: Rock Template@59: Id: 59 - Image: wc01 + Image: wc01.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1384,7 +1379,7 @@ Templates: 3: Rock Template@60: Id: 60 - Image: wc02 + Image: wc02.tem Size: 2,3 Category: Water Cliffs Tiles: @@ -1396,7 +1391,7 @@ Templates: 5: Rock Template@61: Id: 61 - Image: wc03 + Image: wc03.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1406,7 +1401,7 @@ Templates: 3: Rock Template@62: Id: 62 - Image: wc04 + Image: wc04.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1416,7 +1411,7 @@ Templates: 3: Rock Template@63: Id: 63 - Image: wc05 + Image: wc05.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1426,7 +1421,7 @@ Templates: 3: Rock Template@64: Id: 64 - Image: wc06 + Image: wc06.tem Size: 2,3 Category: Water Cliffs Tiles: @@ -1437,7 +1432,7 @@ Templates: 4: Rock Template@65: Id: 65 - Image: wc07 + Image: wc07.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1447,7 +1442,7 @@ Templates: 3: Rock Template@66: Id: 66 - Image: wc08 + Image: wc08.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1457,7 +1452,7 @@ Templates: 3: Rock Template@67: Id: 67 - Image: wc09 + Image: wc09.tem Size: 3,2 Category: Water Cliffs Tiles: @@ -1469,7 +1464,7 @@ Templates: 5: Rock Template@68: Id: 68 - Image: wc10 + Image: wc10.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1479,7 +1474,7 @@ Templates: 3: Rock Template@69: Id: 69 - Image: wc11 + Image: wc11.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1489,7 +1484,7 @@ Templates: 3: Rock Template@70: Id: 70 - Image: wc12 + Image: wc12.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1499,7 +1494,7 @@ Templates: 3: Rock Template@71: Id: 71 - Image: wc13 + Image: wc13.tem Size: 3,2 Category: Water Cliffs Tiles: @@ -1511,7 +1506,7 @@ Templates: 5: Clear Template@72: Id: 72 - Image: wc14 + Image: wc14.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1521,7 +1516,7 @@ Templates: 3: Beach Template@73: Id: 73 - Image: wc15 + Image: wc15.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1531,7 +1526,7 @@ Templates: 3: Rock Template@74: Id: 74 - Image: wc16 + Image: wc16.tem Size: 2,3 Category: Water Cliffs Tiles: @@ -1541,7 +1536,7 @@ Templates: 5: Rock Template@75: Id: 75 - Image: wc17 + Image: wc17.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1551,7 +1546,7 @@ Templates: 3: Rock Template@76: Id: 76 - Image: wc18 + Image: wc18.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1561,7 +1556,7 @@ Templates: 3: Rock Template@77: Id: 77 - Image: wc19 + Image: wc19.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1571,7 +1566,7 @@ Templates: 3: Rock Template@78: Id: 78 - Image: wc20 + Image: wc20.tem Size: 2,3 Category: Water Cliffs Tiles: @@ -1582,7 +1577,7 @@ Templates: 5: Rough Template@79: Id: 79 - Image: wc21 + Image: wc21.tem Size: 1,2 Category: Water Cliffs Tiles: @@ -1590,7 +1585,7 @@ Templates: 1: Rock Template@80: Id: 80 - Image: wc22 + Image: wc22.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1600,7 +1595,7 @@ Templates: 3: Rock Template@81: Id: 81 - Image: wc23 + Image: wc23.tem Size: 3,2 Category: Water Cliffs Tiles: @@ -1612,7 +1607,7 @@ Templates: 5: Water Template@82: Id: 82 - Image: wc24 + Image: wc24.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1622,7 +1617,7 @@ Templates: 3: Rock Template@83: Id: 83 - Image: wc25 + Image: wc25.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1632,7 +1627,7 @@ Templates: 3: Rock Template@84: Id: 84 - Image: wc26 + Image: wc26.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1642,7 +1637,7 @@ Templates: 3: Rock Template@85: Id: 85 - Image: wc27 + Image: wc27.tem Size: 3,2 Category: Water Cliffs Tiles: @@ -1654,7 +1649,7 @@ Templates: 5: Rock Template@86: Id: 86 - Image: wc28 + Image: wc28.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1663,7 +1658,7 @@ Templates: 3: Rock Template@87: Id: 87 - Image: wc29 + Image: wc29.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1673,7 +1668,7 @@ Templates: 3: Rock Template@88: Id: 88 - Image: wc30 + Image: wc30.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1683,7 +1678,7 @@ Templates: 3: Rock Template@89: Id: 89 - Image: wc31 + Image: wc31.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1693,7 +1688,7 @@ Templates: 3: Rock Template@90: Id: 90 - Image: wc32 + Image: wc32.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1702,7 +1697,7 @@ Templates: 2: Water Template@91: Id: 91 - Image: wc33 + Image: wc33.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1712,7 +1707,7 @@ Templates: 3: Rock Template@92: Id: 92 - Image: wc34 + Image: wc34.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1722,7 +1717,7 @@ Templates: 3: Rock Template@93: Id: 93 - Image: wc35 + Image: wc35.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1732,7 +1727,7 @@ Templates: 3: Rock Template@94: Id: 94 - Image: wc36 + Image: wc36.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1742,7 +1737,7 @@ Templates: 3: Rock Template@95: Id: 95 - Image: wc37 + Image: wc37.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1752,7 +1747,7 @@ Templates: 3: Rock Template@96: Id: 96 - Image: wc38 + Image: wc38.tem Size: 2,2 Category: Water Cliffs Tiles: @@ -1762,7 +1757,7 @@ Templates: 3: Rock Template@173: Id: 173 - Image: d01 + Image: d01.tem Size: 2,2 Category: Road Tiles: @@ -1771,7 +1766,7 @@ Templates: 3: Clear Template@174: Id: 174 - Image: d02 + Image: d02.tem Size: 2,2 Category: Road Tiles: @@ -1781,7 +1776,7 @@ Templates: 3: Clear Template@175: Id: 175 - Image: d03 + Image: d03.tem Size: 1,2 Category: Road Tiles: @@ -1789,7 +1784,7 @@ Templates: 1: Road Template@176: Id: 176 - Image: d04 + Image: d04.tem Size: 2,2 Category: Road Tiles: @@ -1798,7 +1793,7 @@ Templates: 3: Clear Template@177: Id: 177 - Image: d05 + Image: d05.tem Size: 3,4 Category: Road Tiles: @@ -1812,7 +1807,7 @@ Templates: 10: Road Template@178: Id: 178 - Image: d06 + Image: d06.tem Size: 2,3 Category: Road Tiles: @@ -1823,7 +1818,7 @@ Templates: 5: Clear Template@179: Id: 179 - Image: d07 + Image: d07.tem Size: 3,2 Category: Road Tiles: @@ -1834,7 +1829,7 @@ Templates: 5: Clear Template@180: Id: 180 - Image: d08 + Image: d08.tem Size: 3,2 Category: Road Tiles: @@ -1844,7 +1839,7 @@ Templates: 5: Clear Template@181: Id: 181 - Image: d09 + Image: d09.tem Size: 4,3 Category: Road Tiles: @@ -1860,7 +1855,7 @@ Templates: 11: Clear Template@182: Id: 182 - Image: d10 + Image: d10.tem Size: 4,2 Category: Road Tiles: @@ -1872,7 +1867,7 @@ Templates: 7: Road Template@183: Id: 183 - Image: d11 + Image: d11.tem Size: 2,3 Category: Road Tiles: @@ -1882,7 +1877,7 @@ Templates: 4: Clear Template@184: Id: 184 - Image: d12 + Image: d12.tem Size: 2,2 Category: Road Tiles: @@ -1891,7 +1886,7 @@ Templates: 3: Road Template@185: Id: 185 - Image: d13 + Image: d13.tem Size: 4,3 Category: Road Tiles: @@ -1906,7 +1901,7 @@ Templates: 11: Road Template@186: Id: 186 - Image: d14 + Image: d14.tem Size: 3,3 Category: Road Tiles: @@ -1920,7 +1915,7 @@ Templates: 8: Road Template@187: Id: 187 - Image: d15 + Image: d15.tem Size: 3,3 Category: Road Tiles: @@ -1934,7 +1929,7 @@ Templates: 7: Clear Template@188: Id: 188 - Image: d16 + Image: d16.tem Size: 3,3 Category: Road Tiles: @@ -1949,7 +1944,7 @@ Templates: 8: Rock Template@189: Id: 189 - Image: d17 + Image: d17.tem Size: 3,2 Category: Road Tiles: @@ -1961,7 +1956,7 @@ Templates: 5: Clear Template@190: Id: 190 - Image: d18 + Image: d18.tem Size: 3,3 Category: Road Tiles: @@ -1976,7 +1971,7 @@ Templates: 8: Rock Template@191: Id: 191 - Image: d19 + Image: d19.tem Size: 3,3 Category: Road Tiles: @@ -1991,7 +1986,7 @@ Templates: 8: Clear Template@192: Id: 192 - Image: d20 + Image: d20.tem Size: 3,3 Category: Road Tiles: @@ -2005,7 +2000,7 @@ Templates: 8: Road Template@193: Id: 193 - Image: d21 + Image: d21.tem Size: 3,2 Category: Road Tiles: @@ -2017,7 +2012,7 @@ Templates: 5: Rough Template@194: Id: 194 - Image: d22 + Image: d22.tem Size: 3,3 Category: Road Tiles: @@ -2030,7 +2025,7 @@ Templates: 8: Clear Template@195: Id: 195 - Image: d23 + Image: d23.tem Size: 3,3 Category: Road Tiles: @@ -2043,7 +2038,7 @@ Templates: 7: Road Template@196: Id: 196 - Image: d24 + Image: d24.tem Size: 3,3 Category: Road Tiles: @@ -2056,7 +2051,7 @@ Templates: 8: Road Template@197: Id: 197 - Image: d25 + Image: d25.tem Size: 3,3 Category: Road Tiles: @@ -2069,7 +2064,7 @@ Templates: 8: Road Template@198: Id: 198 - Image: d26 + Image: d26.tem Size: 2,2 Category: Road Tiles: @@ -2077,7 +2072,7 @@ Templates: 2: Road Template@199: Id: 199 - Image: d27 + Image: d27.tem Size: 2,2 Category: Road Tiles: @@ -2085,7 +2080,7 @@ Templates: 2: Road Template@200: Id: 200 - Image: d28 + Image: d28.tem Size: 2,2 Category: Road Tiles: @@ -2094,7 +2089,7 @@ Templates: 2: Rough Template@201: Id: 201 - Image: d29 + Image: d29.tem Size: 2,2 Category: Road Tiles: @@ -2103,7 +2098,7 @@ Templates: 2: Road Template@202: Id: 202 - Image: d30 + Image: d30.tem Size: 2,2 Category: Road Tiles: @@ -2112,7 +2107,7 @@ Templates: 2: Road Template@203: Id: 203 - Image: d31 + Image: d31.tem Size: 2,2 Category: Road Tiles: @@ -2121,7 +2116,7 @@ Templates: 3: Road Template@204: Id: 204 - Image: d32 + Image: d32.tem Size: 2,2 Category: Road Tiles: @@ -2130,7 +2125,7 @@ Templates: 3: Clear Template@205: Id: 205 - Image: d33 + Image: d33.tem Size: 2,2 Category: Road Tiles: @@ -2139,7 +2134,7 @@ Templates: 3: Road Template@206: Id: 206 - Image: d34 + Image: d34.tem Size: 3,3 Category: Road Tiles: @@ -2152,7 +2147,7 @@ Templates: 7: Road Template@207: Id: 207 - Image: d35 + Image: d35.tem Size: 3,3 Category: Road Tiles: @@ -2165,7 +2160,7 @@ Templates: 7: Road Template@208: Id: 208 - Image: d36 + Image: d36.tem Size: 2,2 Category: Road Tiles: @@ -2173,7 +2168,7 @@ Templates: 3: Road Template@209: Id: 209 - Image: d37 + Image: d37.tem Size: 2,2 Category: Road Tiles: @@ -2181,7 +2176,7 @@ Templates: 3: Road Template@210: Id: 210 - Image: d38 + Image: d38.tem Size: 2,2 Category: Road Tiles: @@ -2190,7 +2185,7 @@ Templates: 3: Road Template@211: Id: 211 - Image: d39 + Image: d39.tem Size: 2,2 Category: Road Tiles: @@ -2199,7 +2194,7 @@ Templates: 3: Road Template@212: Id: 212 - Image: d40 + Image: d40.tem Size: 2,2 Category: Road Tiles: @@ -2208,7 +2203,7 @@ Templates: 3: Road Template@213: Id: 213 - Image: d41 + Image: d41.tem Size: 2,2 Category: Road Tiles: @@ -2217,7 +2212,7 @@ Templates: 3: Road Template@214: Id: 214 - Image: d42 + Image: d42.tem Size: 2,2 Category: Road Tiles: @@ -2226,7 +2221,7 @@ Templates: 3: Road Template@215: Id: 215 - Image: d43 + Image: d43.tem Size: 2,2 Category: Road Tiles: @@ -2235,21 +2230,21 @@ Templates: 3: Road Template@227: Id: 227 - Image: d44 + Image: d44.tem Size: 1,1 Category: Road Tiles: 0: Road Template@228: Id: 228 - Image: d45 + Image: d45.tem Size: 1,1 Category: Road Tiles: 0: Road Template@231: Id: 231 - Image: rc01 + Image: rc01.tem Size: 2,2 Category: River Tiles: @@ -2259,7 +2254,7 @@ Templates: 3: Rock Template@232: Id: 232 - Image: rc02 + Image: rc02.tem Size: 2,2 Category: River Tiles: @@ -2269,7 +2264,7 @@ Templates: 3: Rock Template@233: Id: 233 - Image: rc03 + Image: rc03.tem Size: 2,2 Category: River Tiles: @@ -2279,7 +2274,7 @@ Templates: 3: Rock Template@234: Id: 234 - Image: rc04 + Image: rc04.tem Size: 2,2 Category: River Tiles: @@ -2289,7 +2284,7 @@ Templates: 3: Rock Template@112: Id: 112 - Image: rv01 + Image: rv01.tem Size: 5,4 Category: River Tiles: @@ -2309,7 +2304,7 @@ Templates: 17: Rough Template@113: Id: 113 - Image: rv02 + Image: rv02.tem Size: 5,3 Category: River Tiles: @@ -2328,7 +2323,7 @@ Templates: 12: Rock Template@114: Id: 114 - Image: rv03 + Image: rv03.tem Size: 4,4 Category: River Tiles: @@ -2347,7 +2342,7 @@ Templates: 15: Rock Template@115: Id: 115 - Image: rv04 + Image: rv04.tem Size: 4,4 Category: River Tiles: @@ -2365,7 +2360,7 @@ Templates: 14: Rock Template@116: Id: 116 - Image: rv05 + Image: rv05.tem Size: 3,3 Category: River Tiles: @@ -2380,7 +2375,7 @@ Templates: 8: Rock Template@117: Id: 117 - Image: rv06 + Image: rv06.tem Size: 3,2 Category: River Tiles: @@ -2392,7 +2387,7 @@ Templates: 5: Rock Template@118: Id: 118 - Image: rv07 + Image: rv07.tem Size: 3,2 Category: River Tiles: @@ -2404,7 +2399,7 @@ Templates: 5: River Template@119: Id: 119 - Image: rv08 + Image: rv08.tem Size: 2,2 Category: River Tiles: @@ -2414,7 +2409,7 @@ Templates: 3: River Template@120: Id: 120 - Image: rv09 + Image: rv09.tem Size: 2,2 Category: River Tiles: @@ -2424,7 +2419,7 @@ Templates: 3: River Template@121: Id: 121 - Image: rv10 + Image: rv10.tem Size: 2,2 Category: River Tiles: @@ -2434,7 +2429,7 @@ Templates: 3: River Template@122: Id: 122 - Image: rv11 + Image: rv11.tem Size: 2,2 Category: River Tiles: @@ -2444,7 +2439,7 @@ Templates: 3: Rock Template@123: Id: 123 - Image: rv12 + Image: rv12.tem Size: 3,4 Category: River Tiles: @@ -2462,7 +2457,7 @@ Templates: 11: Rock Template@124: Id: 124 - Image: rv13 + Image: rv13.tem Size: 4,4 Category: River Tiles: @@ -2482,7 +2477,7 @@ Templates: 15: Rough Template@229: Id: 229 - Image: rv14 + Image: rv14.tem Size: 1,2 Category: River Tiles: @@ -2490,7 +2485,7 @@ Templates: 1: River Template@230: Id: 230 - Image: rv15 + Image: rv15.tem Size: 2,1 Category: River Tiles: @@ -2498,7 +2493,7 @@ Templates: 1: River Template@235: Id: 235 - Image: br1a + Image: br1a.tem Size: 4,3 Category: Bridge Tiles: @@ -2513,7 +2508,7 @@ Templates: 11: Rock Template@236: Id: 236 - Image: br1b + Image: br1b.tem Size: 4,3 Category: Bridge Tiles: @@ -2528,7 +2523,7 @@ Templates: 11: Rock Template@237: Id: 237 - Image: br1c + Image: br1c.tem Size: 4,3 Category: Bridge Tiles: @@ -2543,7 +2538,7 @@ Templates: 11: Rock Template@238: Id: 238 - Image: br2a + Image: br2a.tem Size: 5,3 Category: Bridge Tiles: @@ -2559,7 +2554,7 @@ Templates: 13: Rock Template@239: Id: 239 - Image: br2b + Image: br2b.tem Size: 5,3 Category: Bridge Tiles: @@ -2575,7 +2570,7 @@ Templates: 13: Rock Template@240: Id: 240 - Image: br2c + Image: br2c.tem Size: 5,3 Category: Bridge Tiles: @@ -2591,7 +2586,7 @@ Templates: 13: Rock Template@241: Id: 241 - Image: br3a + Image: br3a.tem Size: 4,2 Category: Bridge Tiles: @@ -2602,7 +2597,7 @@ Templates: 7: Rock Template@242: Id: 242 - Image: br3b + Image: br3b.tem Size: 4,2 Category: Bridge Tiles: @@ -2613,7 +2608,7 @@ Templates: 7: Rock Template@243: Id: 243 - Image: br3c + Image: br3c.tem Size: 4,2 Category: Bridge Tiles: @@ -2624,7 +2619,7 @@ Templates: 7: Rock Template@244: Id: 244 - Image: br3d + Image: br3d.tem Size: 4,2 Category: Bridge Tiles: @@ -2635,7 +2630,7 @@ Templates: 7: River Template@245: Id: 245 - Image: br3e + Image: br3e.tem Size: 4,2 Category: Bridge Tiles: @@ -2646,7 +2641,7 @@ Templates: 7: Water Template@246: Id: 246 - Image: br3f + Image: br3f.tem Size: 4,2 Category: Bridge Tiles: @@ -2657,7 +2652,7 @@ Templates: 7: Water Template@380: Id: 380 - Image: br1x + Image: br1x.tem Size: 5,3 Category: Bridge Tiles: @@ -2668,7 +2663,7 @@ Templates: 14: Water Template@381: Id: 381 - Image: br2x + Image: br2x.tem Size: 5,1 Category: Bridge Tiles: @@ -2676,7 +2671,7 @@ Templates: 4: Beach Template@131: Id: 131 - Image: bridge1 + Image: bridge1.tem Size: 5,3 Category: Bridge Tiles: @@ -2692,7 +2687,7 @@ Templates: 12: Rock Template@132: Id: 132 - Image: bridge1d + Image: bridge1d.tem Size: 5,3 Category: Bridge Tiles: @@ -2708,7 +2703,7 @@ Templates: 12: Rock Template@378: Id: 378 - Image: bridge1h + Image: bridge1h.tem Size: 5,3 Category: Bridge Tiles: @@ -2722,9 +2717,11 @@ Templates: 8: Rock 9: Rock 12: Rough + 13: Clear + 14: Clear Template@382: Id: 382 - Image: bridge1x + Image: bridge1x.tem Size: 5,4 Category: Bridge Tiles: @@ -2738,7 +2735,7 @@ Templates: 19: Rock Template@133: Id: 133 - Image: bridge2 + Image: bridge2.tem Size: 5,2 Category: Bridge Tiles: @@ -2753,7 +2750,7 @@ Templates: 9: Rock Template@134: Id: 134 - Image: bridge2d + Image: bridge2d.tem Size: 5,2 Category: Bridge Tiles: @@ -2768,7 +2765,7 @@ Templates: 9: Rock Template@379: Id: 379 - Image: bridge2h + Image: bridge2h.tem Size: 5,2 Category: Bridge Tiles: @@ -2783,7 +2780,7 @@ Templates: 9: Rock Template@383: Id: 383 - Image: bridge2x + Image: bridge2x.tem Size: 5,5 Category: Bridge Tiles: @@ -2802,7 +2799,7 @@ Templates: 24: Bridge Template@247: Id: 247 - Image: f01 + Image: f01.tem Size: 3,3 Category: Bridge Tiles: @@ -2817,7 +2814,7 @@ Templates: 8: Beach Template@248: Id: 248 - Image: f02 + Image: f02.tem Size: 3,3 Category: Bridge Tiles: @@ -2832,7 +2829,7 @@ Templates: 8: Beach Template@249: Id: 249 - Image: f03 + Image: f03.tem Size: 3,3 Category: Bridge Tiles: @@ -2847,7 +2844,7 @@ Templates: 8: Clear Template@250: Id: 250 - Image: f04 + Image: f04.tem Size: 3,3 Category: Bridge Tiles: @@ -2862,7 +2859,7 @@ Templates: 8: Beach Template@251: Id: 251 - Image: f05 + Image: f05.tem Size: 3,3 Category: Bridge Tiles: @@ -2877,7 +2874,7 @@ Templates: 8: Beach Template@252: Id: 252 - Image: f06 + Image: f06.tem Size: 3,3 Category: Bridge Tiles: @@ -2892,7 +2889,7 @@ Templates: 8: Clear Template@129: Id: 129 - Image: ford1 + Image: ford1.tem Size: 3,3 Category: Bridge Tiles: @@ -2907,7 +2904,7 @@ Templates: 8: Rough Template@130: Id: 130 - Image: ford2 + Image: ford2.tem Size: 3,3 Category: Bridge Tiles: @@ -2922,7 +2919,7 @@ Templates: 8: Clear Template@125: Id: 125 - Image: falls1 + Image: falls1.tem Size: 3,3 Category: River Tiles: @@ -2937,7 +2934,7 @@ Templates: 8: Rock Template@126: Id: 126 - Image: falls1a + Image: falls1a.tem Size: 3,3 Category: Water Cliffs Tiles: @@ -2952,7 +2949,7 @@ Templates: 8: Rock Template@127: Id: 127 - Image: falls2 + Image: falls2.tem Size: 3,2 Category: River Tiles: @@ -2964,7 +2961,7 @@ Templates: 5: Rock Template@128: Id: 128 - Image: falls2a + Image: falls2a.tem Size: 3,2 Category: Water Cliffs Tiles: @@ -2976,14 +2973,14 @@ Templates: 5: River Template@97: Id: 97 - Image: b1 + Image: b1.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@98: Id: 98 - Image: b2 + Image: b2.tem Size: 2,1 Category: Debris Tiles: @@ -2991,7 +2988,7 @@ Templates: 1: Rock Template@99: Id: 99 - Image: b3 + Image: b3.tem Size: 3,1 Category: Debris Tiles: @@ -3000,56 +2997,56 @@ Templates: 2: Rock Template@216: Id: 216 - Image: rf01 + Image: rf01.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@217: Id: 217 - Image: rf02 + Image: rf02.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@218: Id: 218 - Image: rf03 + Image: rf03.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@219: Id: 219 - Image: rf04 + Image: rf04.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@220: Id: 220 - Image: rf05 + Image: rf05.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@221: Id: 221 - Image: rf06 + Image: rf06.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@222: Id: 222 - Image: rf07 + Image: rf07.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@223: Id: 223 - Image: rf08 + Image: rf08.tem Size: 1,2 Category: Debris Tiles: @@ -3057,7 +3054,7 @@ Templates: 1: Rock Template@224: Id: 224 - Image: rf09 + Image: rf09.tem Size: 1,2 Category: Debris Tiles: @@ -3065,7 +3062,7 @@ Templates: 1: Rock Template@225: Id: 225 - Image: rf10 + Image: rf10.tem Size: 2,1 Category: Debris Tiles: @@ -3073,7 +3070,7 @@ Templates: 1: Rough Template@226: Id: 226 - Image: rf11 + Image: rf11.tem Size: 2,1 Category: Debris Tiles: @@ -3081,35 +3078,35 @@ Templates: 1: Rock Template@103: Id: 103 - Image: p01 + Image: p01.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@104: Id: 104 - Image: p02 + Image: p02.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@105: Id: 105 - Image: p03 + Image: p03.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@106: Id: 106 - Image: p04 + Image: p04.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@107: Id: 107 - Image: p07 + Image: p07.tem Size: 4,2 Category: Debris Tiles: @@ -3123,7 +3120,7 @@ Templates: 7: Clear Template@108: Id: 108 - Image: p08 + Image: p08.tem Size: 3,2 Category: Debris Tiles: @@ -3135,7 +3132,7 @@ Templates: 5: Rough Template@109: Id: 109 - Image: p13 + Image: p13.tem Size: 3,2 Category: Debris Tiles: @@ -3147,7 +3144,7 @@ Templates: 5: Rock Template@110: Id: 110 - Image: p14 + Image: p14.tem Size: 2,1 Category: Debris Tiles: @@ -3155,70 +3152,71 @@ Templates: 1: Rock Template@500: Id: 500 - Image: sh57 + Image: sh57.tem Size: 1,1 + Category: Debris Tiles: 0: Rock - Category: Debris Template@502: Id: 502 - Image: sh58 + Image: sh58.tem Size: 2,1 + Category: Debris Tiles: 0: Rock 1: Rock - Category: Debris Template@503: Id: 503 - Image: sh59 + Image: sh59.tem Size: 2,1 + Category: Debris Tiles: 0: Rock 1: Rock - Category: Debris Template@504: Id: 504 - Image: sh60 + Image: sh60.tem Size: 1,2 + Category: Debris Tiles: 0: Rock 1: Rock - Category: Debris Template@505: Id: 505 - Image: sh61 + Image: sh61.tem Size: 1,1 + Category: Debris Tiles: 0: Rock - Category: Debris Template@506: Id: 506 - Image: sh62 + Image: sh62.tem Size: 1,1 + Category: Debris Tiles: 0: Rock - Category: Debris Template@507: Id: 507 - Image: sh63 + Image: sh63.tem Size: 2,2 + Category: Debris Tiles: 0: Rock 1: Rock 2: Rock 3: Rock - Category: Debris Template@508: Id: 508 - Image: sh64 + Image: sh64.tem Size: 1,1 + Category: Debris Tiles: 0: Rock - Category: Debris Template@519: Id: 519 - Image: sbridge1x + Image: sbridge1x.tem Size: 3,4 + Category: Bridge Tiles: 0: Clear 1: Road @@ -3226,11 +3224,11 @@ Templates: 9: Clear 10: Road 11: Rock - Category: Bridge Template@520: Id: 520 - Image: sbridge1 + Image: sbridge1.tem Size: 3,2 + Category: Bridge Tiles: 0: River 1: Road @@ -3238,11 +3236,11 @@ Templates: 3: River 4: Road 5: River - Category: Bridge Template@521: Id: 521 - Image: sbridge1h + Image: sbridge1h.tem Size: 3,2 + Category: Bridge Tiles: 0: River 1: Road @@ -3250,11 +3248,11 @@ Templates: 3: River 4: Road 5: River - Category: Bridge Template@522: Id: 522 - Image: sbridge1d + Image: sbridge1d.tem Size: 3,2 + Category: Bridge Tiles: 0: River 1: Rock @@ -3262,11 +3260,11 @@ Templates: 3: River 4: Rock 5: River - Category: Bridge Template@523: Id: 523 - Image: sbridge3 + Image: sbridge3.tem Size: 4,2 + Category: Bridge Tiles: 1: Rock 2: Road @@ -3275,11 +3273,11 @@ Templates: 5: Road 6: Rock 7: River - Category: Bridge Template@524: Id: 524 - Image: sbridge3h + Image: sbridge3h.tem Size: 4,2 + Category: Bridge Tiles: 1: Rock 2: Road @@ -3288,11 +3286,11 @@ Templates: 5: Road 6: Rock 7: River - Category: Bridge Template@525: Id: 525 - Image: sbridge3d + Image: sbridge3d.tem Size: 4,2 + Category: Bridge Tiles: 1: Rock 2: Rock @@ -3301,11 +3299,11 @@ Templates: 5: River 6: Rock 7: River - Category: Bridge Template@526: Id: 526 - Image: sbridge3x + Image: sbridge3x.tem Size: 4,4 + Category: Bridge Tiles: 1: Clear 2: Clear @@ -3315,11 +3313,11 @@ Templates: 13: Clear 14: River 15: River - Category: Bridge Template@527: Id: 527 - Image: sbridge4 + Image: sbridge4.tem Size: 4,2 + Category: Bridge Tiles: 0: Rock 1: Road @@ -3328,11 +3326,11 @@ Templates: 5: Rock 6: Road 7: Rock - Category: Bridge Template@528: Id: 528 - Image: sbridge4h + Image: sbridge4h.tem Size: 4,2 + Category: Bridge Tiles: 0: Rock 1: Road @@ -3341,11 +3339,11 @@ Templates: 5: Rock 6: Road 7: Rock - Category: Bridge Template@529: Id: 529 - Image: sbridge4d + Image: sbridge4d.tem Size: 4,2 + Category: Bridge Tiles: 0: Rock 1: Rock @@ -3354,11 +3352,11 @@ Templates: 5: Rock 6: Rock 7: Rock - Category: Bridge Template@530: Id: 530 - Image: sbridge4x + Image: sbridge4x.tem Size: 5,5 + Category: Bridge Tiles: 0: Road 1: Clear @@ -3374,11 +3372,11 @@ Templates: 19: Clear 23: Clear 24: Road - Category: Bridge Template@531: Id: 531 - Image: sbridge2 + Image: sbridge2.tem Size: 2,3 + Category: Bridge Tiles: 0: River 1: River @@ -3386,11 +3384,11 @@ Templates: 3: Road 4: Rock 5: Rock - Category: Bridge Template@532: Id: 532 - Image: sbridge2h + Image: sbridge2h.tem Size: 2,3 + Category: Bridge Tiles: 0: River 1: River @@ -3398,11 +3396,11 @@ Templates: 3: Road 4: Rock 5: Rock - Category: Bridge Template@533: Id: 533 - Image: sbridge2d + Image: sbridge2d.tem Size: 2,3 + Category: Bridge Tiles: 0: River 1: River @@ -3410,11 +3408,11 @@ Templates: 3: River 4: River 5: River - Category: Bridge Template@534: Id: 534 - Image: sbridge2x + Image: sbridge2x.tem Size: 4,4 + Category: Bridge Tiles: 0: Clear 3: Rock @@ -3426,11 +3424,11 @@ Templates: 13: River 14: River 15: Clear - Category: Bridge Template@550: Id: 550 - Image: sccnr + Image: sccnr.tem Size: 2,3 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3438,11 +3436,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@551: Id: 551 - Image: sccnl + Image: sccnl.tem Size: 2,3 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3450,11 +3448,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@552: Id: 552 - Image: sccsr + Image: sccsr.tem Size: 2,3 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3462,11 +3460,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@553: Id: 553 - Image: sccsl + Image: sccsl.tem Size: 2,3 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3474,11 +3472,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@554: Id: 554 - Image: sccln + Image: sccln.tem Size: 3,2 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3486,11 +3484,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@555: Id: 555 - Image: sccls + Image: sccls.tem Size: 3,2 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3498,11 +3496,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@556: Id: 556 - Image: sccrn + Image: sccrn.tem Size: 3,2 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3510,11 +3508,11 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@557: Id: 557 - Image: sccrs + Image: sccrs.tem Size: 3,2 + Category: Water Cliffs Tiles: 0: Rock 1: Rock @@ -3522,90 +3520,90 @@ Templates: 3: Rock 4: Rock 5: Rock - Category: Water Cliffs Template@580: Id: 580 - Image: deca + Image: deca.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@581: Id: 581 - Image: decb + Image: decb.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@582: Id: 582 - Image: decc + Image: decc.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@583: Id: 583 - Image: decc + Image: decc.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@584: Id: 584 - Image: decd + Image: decd.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@585: Id: 585 - Image: dece + Image: dece.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@586: Id: 586 - Image: decf + Image: decf.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@587: Id: 587 - Image: decg + Image: decg.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@588: Id: 588 - Image: dech + Image: dech.tem Size: 1,1 + Category: Debris Tiles: 0: Rough - Category: Debris Template@590: Id: 590 - Image: fjord1 + Image: fjord1.tem Size: 1,2 + Category: Bridge Tiles: 0: Rough 1: Rough - Category: Bridge Template@591: Id: 591 - Image: fjord2 + Image: fjord2.tem Size: 2,1 + Category: Bridge Tiles: 0: Rough 1: Rough - Category: Bridge Template@400: Id: 400 - Image: hill01 + Image: hill01.tem Size: 4,3 + Category: Debris Tiles: 0: Rough 1: Rough @@ -3619,5 +3617,4 @@ Templates: 9: Rough 10: Rough 11: Clear - Category: Debris From dd36c5094cdedcae9e90b7c9ee16ec3f6d8442fd Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 22 Mar 2015 11:59:38 +0000 Subject: [PATCH 4/7] Fix TD tilesets. --- mods/cnc/tilesets/desert.yaml | 684 ++++++++++++++++--------- mods/cnc/tilesets/jungle.yaml | 662 ++++++++++++++++-------- mods/cnc/tilesets/snow.yaml | 665 +++++++++++++++++------- mods/cnc/tilesets/temperat.yaml | 865 ++++++++++++++++++++++++-------- mods/cnc/tilesets/winter.yaml | 695 +++++++++++++++++-------- 5 files changed, 2556 insertions(+), 1015 deletions(-) diff --git a/mods/cnc/tilesets/desert.yaml b/mods/cnc/tilesets/desert.yaml index 3b4a3c4327..171d91da8a 100644 --- a/mods/cnc/tilesets/desert.yaml +++ b/mods/cnc/tilesets/desert.yaml @@ -1,76 +1,71 @@ General: Name: Desert Id: DESERT - Extensions: .des, .shp, .tem Palette: desert.pal + Extensions: .des, .shp, .tem WaterPaletteRotationBase: 32 EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 134, 95, 69 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 93, 165, 206 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 168, 123, 83 - TargetTypes: Ground - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 116, 90, 63 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 111, 132, 139 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 - TargetTypes: Ground - TerrainType@Tiberium: - Type: Tiberium - AcceptsSmudgeType: Crater, Scorch - Color: 161, 226, 28 TargetTypes: Ground + Color: 255,176,156,120 TerrainType@BlueTiberium: Type: BlueTiberium - AcceptsSmudgeType: Crater, Scorch - Color: 84, 252, 252 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,84,252,252 + TerrainType@Clear: + Type: Clear + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,134,95,69 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,111,132,139 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,168,123,83 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,116,90,63 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tiberium: + Type: Tiberium + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,161,226,28 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,93,165,206 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.des Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -90,10 +85,10 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.des Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -112,11 +107,10 @@ Templates: 14: Clear 15: Clear Template@0: - Id: 0 - Image: clear1 + Image: clear1.des Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -136,34 +130,36 @@ Templates: 15: Clear Template@1: Id: 1 - Image: w1 + Image: w1.des Size: 1,1 Category: Terrain Tiles: 0: Water Template@13: Id: 13 - Image: s01 + Image: s01.des Size: 2,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear 3: Rock Template@14: Id: 14 - Image: s02 + Image: s02.des Size: 2,3 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock 4: Rock 5: Rock Template@15: Id: 15 - Image: s03 + Image: s03.des Size: 2,2 Category: Cliffs Tiles: @@ -173,7 +169,7 @@ Templates: 3: Rock Template@16: Id: 16 - Image: s04 + Image: s04.des Size: 2,2 Category: Cliffs Tiles: @@ -183,7 +179,7 @@ Templates: 3: Rock Template@17: Id: 17 - Image: s05 + Image: s05.des Size: 2,2 Category: Cliffs Tiles: @@ -193,17 +189,18 @@ Templates: 3: Rock Template@18: Id: 18 - Image: s06 + Image: s06.des Size: 2,3 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock Template@19: Id: 19 - Image: s07 + Image: s07.des Size: 2,2 Category: Cliffs Tiles: @@ -213,27 +210,29 @@ Templates: 3: Rock Template@20: Id: 20 - Image: s08 + Image: s08.des Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@21: Id: 21 - Image: s09 + Image: s09.des Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: Rock 5: Rock Template@22: Id: 22 - Image: s10 + Image: s10.des Size: 2,2 Category: Cliffs Tiles: @@ -243,7 +242,7 @@ Templates: 3: Rock Template@23: Id: 23 - Image: s11 + Image: s11.des Size: 2,2 Category: Cliffs Tiles: @@ -253,7 +252,7 @@ Templates: 3: Rock Template@24: Id: 24 - Image: s12 + Image: s12.des Size: 2,2 Category: Cliffs Tiles: @@ -263,74 +262,89 @@ Templates: 3: Rock Template@25: Id: 25 - Image: s13 + Image: s13.des Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock + 2: Clear 3: Rock 4: Rock + 5: Clear Template@26: Id: 26 - Image: s14 + Image: s14.des Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear + 2: Clear Template@27: Id: 27 - Image: s15 + Image: s15.des Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@28: Id: 28 - Image: s16 + Image: s16.des Size: 2,3 Category: Cliffs Tiles: + 0: Clear 2: Rock 3: Rock 5: Rock Template@29: Id: 29 - Image: s17 + Image: s17.des Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@30: Id: 30 - Image: s18 + Image: s18.des Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@31: Id: 31 - Image: s19 + Image: s19.des Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@32: Id: 32 - Image: s20 + Image: s20.des Size: 2,3 Category: Cliffs Tiles: + 1: Clear 2: Rock 3: Rock 4: Rock + 5: Clear Template@33: Id: 33 - Image: s21 + Image: s21.des Size: 1,2 Category: Cliffs Tiles: @@ -338,7 +352,7 @@ Templates: 1: Rock Template@34: Id: 34 - Image: s22 + Image: s22.des Size: 2,1 Category: Cliffs Tiles: @@ -346,17 +360,19 @@ Templates: 1: Rock Template@35: Id: 35 - Image: s23 + Image: s23.des Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock + 5: Clear Template@36: Id: 36 - Image: s24 + Image: s24.des Size: 2,2 Category: Cliffs Tiles: @@ -366,7 +382,7 @@ Templates: 3: Rock Template@37: Id: 37 - Image: s25 + Image: s25.des Size: 2,2 Category: Cliffs Tiles: @@ -376,7 +392,7 @@ Templates: 3: Rock Template@38: Id: 38 - Image: s26 + Image: s26.des Size: 2,2 Category: Cliffs Tiles: @@ -386,17 +402,19 @@ Templates: 3: Rock Template@39: Id: 39 - Image: s27 + Image: s27.des Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear 4: Rock 5: Rock Template@40: Id: 40 - Image: s28 + Image: s28.des Size: 2,2 Category: Cliffs Tiles: @@ -405,7 +423,7 @@ Templates: 3: Rock Template@41: Id: 41 - Image: s29 + Image: s29.des Size: 2,2 Category: Cliffs Tiles: @@ -415,24 +433,27 @@ Templates: 3: Rock Template@42: Id: 42 - Image: s30 + Image: s30.des Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@43: Id: 43 - Image: s31 + Image: s31.des Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@44: Id: 44 - Image: s32 + Image: s32.des Size: 2,2 Category: Cliffs Tiles: @@ -441,7 +462,7 @@ Templates: 2: Rock Template@45: Id: 45 - Image: s33 + Image: s33.des Size: 2,2 Category: Cliffs Tiles: @@ -451,7 +472,7 @@ Templates: 3: Rock Template@46: Id: 46 - Image: s34 + Image: s34.des Size: 2,2 Category: Cliffs Tiles: @@ -461,7 +482,7 @@ Templates: 3: Rock Template@47: Id: 47 - Image: s35 + Image: s35.des Size: 2,2 Category: Cliffs Tiles: @@ -471,7 +492,7 @@ Templates: 3: Rock Template@48: Id: 48 - Image: s36 + Image: s36.des Size: 2,2 Category: Cliffs Tiles: @@ -481,7 +502,7 @@ Templates: 3: Rock Template@49: Id: 49 - Image: s37 + Image: s37.des Size: 2,2 Category: Cliffs Tiles: @@ -491,7 +512,7 @@ Templates: 3: Rock Template@50: Id: 50 - Image: s38 + Image: s38.des Size: 2,2 Category: Cliffs Tiles: @@ -501,7 +522,7 @@ Templates: 3: Rock Template@53: Id: 53 - Image: sh20 + Image: sh20.des Size: 4,1 Category: Beach Tiles: @@ -511,20 +532,22 @@ Templates: 3: River Template@54: Id: 54 - Image: sh21 + Image: sh21.des Size: 3,1 Category: Beach Tiles: 0: Rock + 1: Clear 2: River Template@55: Id: 55 - Image: sh22 + Image: sh22.des Size: 6,2 Category: Beach Tiles: 1: Rock 2: Rock + 3: Clear 6: River 7: Water 8: Water @@ -533,77 +556,83 @@ Templates: 11: River Template@56: Id: 56 - Image: sh23 + Image: sh23.des Size: 2,2 Category: Beach Tiles: + 0: Clear + 1: Clear 2: River 3: River Template@57: Id: 57 - Image: br1 + Image: br1.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@58: Id: 58 - Image: br2 + Image: br2.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@59: Id: 59 - Image: br3 + Image: br3.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@60: Id: 60 - Image: br4 + Image: br4.des Size: 1,1 Category: Debris Tiles: 0: Tree Template@61: Id: 61 - Image: br5 + Image: br5.des Size: 1,1 Tiles: 0: Wall Template@62: Id: 62 - Image: br6 + Image: br6.des Size: 2,2 Category: Debris Tiles: 0: Tree 1: Tree 2: Tree + 3: Clear Template@63: Id: 63 - Image: br7 + Image: br7.des Size: 2,2 Category: Debris Tiles: 0: Tree 1: Tree + 2: Clear 3: Tree Template@64: Id: 64 - Image: br8 + Image: br8.des Size: 3,2 Category: Debris Tiles: 0: Tree 1: Tree + 2: Clear + 3: Clear 4: Tree 5: Tree Template@65: Id: 65 - Image: br9 + Image: br9.des Size: 3,2 Category: Debris Tiles: @@ -615,60 +644,86 @@ Templates: 5: Tree Template@66: Id: 66 - Image: br10 + Image: br10.des Size: 2,1 Tiles: 0: Wall 1: Wall Template@67: Id: 67 - Image: p01 + Image: p01.des Size: 1,1 Category: Debris Tiles: 0: Wall Template@68: Id: 68 - Image: p02 + Image: p02.des Size: 1,1 Category: Debris Tiles: 0: Wall Template@69: Id: 69 - Image: p03 + Image: p03.des Size: 1,1 Category: Debris Tiles: 0: Wall Template@70: Id: 70 - Image: p04 + Image: p04.des Size: 1,1 Category: Debris Tiles: 0: Wall Template@71: Id: 71 - Image: p05 + Image: p05.des Size: 2,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear Template@72: Id: 72 - Image: p06 + Image: p06.des Size: 6,4 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 7: Clear + 8: Clear + 9: Clear + 14: Clear + 15: Clear + 16: Clear + 17: Clear + 20: Clear + 21: Clear + 22: Clear + 23: Clear Template@73: Id: 73 - Image: p07 + Image: p07.des Size: 4,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear Template@76: Id: 76 - Image: sh17 + Image: sh17.des Size: 2,2 Category: Beach Tiles: @@ -678,7 +733,7 @@ Templates: 3: Water Template@77: Id: 77 - Image: sh18 + Image: sh18.des Size: 2,2 Category: Beach Tiles: @@ -688,24 +743,25 @@ Templates: 3: Water Template@78: Id: 78 - Image: sh19 + Image: sh19.des Size: 3,2 Category: Beach Tiles: 1: Rock + 2: Clear 3: River 4: Rock 5: River Template@82: Id: 82 - Image: b1 + Image: b1.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@83: Id: 83 - Image: b2 + Image: b2.des Size: 2,1 Category: Debris Tiles: @@ -713,67 +769,78 @@ Templates: 1: Rock Template@85: Id: 85 - Image: b4 + Image: b4.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@86: Id: 86 - Image: b5 + Image: b5.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@87: Id: 87 - Image: b6 + Image: b6.des Size: 1,1 Category: Debris Tiles: 0: Rock Template@93: Id: 93 - Image: d01 + Image: d01.des Size: 2,2 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear Template@94: Id: 94 - Image: d02 + Image: d02.des Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear Template@95: Id: 95 - Image: d03 + Image: d03.des Size: 1,2 Category: Road Tiles: + 0: Clear + 1: Clear Template@96: Id: 96 - Image: d04 + Image: d04.des Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@97: Id: 97 - Image: d05 + Image: d05.des Size: 3,4 Category: Road Tiles: 1: Road + 2: Clear 3: Road 4: Road 6: Road 7: Road + 9: Clear 10: Road Template@98: Id: 98 - Image: d06 + Image: d06.des Size: 2,3 Category: Road Tiles: @@ -781,38 +848,51 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear Template@99: Id: 99 - Image: d07 + Image: d07.des Size: 3,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 4: Road + 5: Clear Template@100: Id: 100 - Image: d08 + Image: d08.des Size: 3,2 Category: Road Tiles: 1: Road + 3: Clear 4: Road + 5: Clear Template@101: Id: 101 - Image: d09 + Image: d09.des Size: 4,3 Category: Road Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear 4: Road 5: Road 6: Road 7: Road + 10: Clear + 11: Clear Template@102: Id: 102 - Image: d10 + Image: d10.des Size: 4,2 Category: Road Tiles: + 0: Clear 1: Rock 4: Road 5: Road @@ -820,39 +900,47 @@ Templates: 7: Road Template@103: Id: 103 - Image: d11 + Image: d11.des Size: 2,3 Category: Road Tiles: + 1: Clear 2: Road 3: Road + 4: Clear Template@104: Id: 104 - Image: d12 + Image: d12.des Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@105: Id: 105 - Image: d13 + Image: d13.des Size: 4,3 Category: Road Tiles: 0: Road 1: Road + 2: Clear + 4: Clear 5: Road 6: Road + 7: Clear 10: Wall 11: Road Template@106: Id: 106 - Image: d14 + Image: d14.des Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Wall 5: Road 6: Road @@ -860,7 +948,7 @@ Templates: 8: Road Template@107: Id: 107 - Image: d15 + Image: d15.des Size: 3,3 Category: Road Tiles: @@ -869,243 +957,313 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear 6: Road + 7: Clear Template@108: Id: 108 - Image: d16 + Image: d16.des Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear 4: Road 5: Road 6: Road + 7: Clear 8: Wall Template@109: Id: 109 - Image: d17 + Image: d17.des Size: 3,2 Category: Road Tiles: 0: Road 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@110: Id: 110 - Image: d18 + Image: d18.des Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Wall Template@111: Id: 111 - Image: d19 + Image: d19.des Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: Road + 8: Clear Template@112: Id: 112 - Image: d20 + Image: d20.des Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Road Template@113: Id: 113 - Image: d21 + Image: d21.des Size: 3,2 Category: Road Tiles: 0: Rock 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@114: Id: 114 - Image: d22 + Image: d22.des Size: 3,3 Category: Road Tiles: + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road + 8: Clear Template@115: Id: 115 - Image: d23 + Image: d23.des Size: 3,3 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@116: Id: 116 - Image: d24 + Image: d24.des Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@117: Id: 117 - Image: d25 + Image: d25.des Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@118: Id: 118 - Image: d26 + Image: d26.des Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@119: Id: 119 - Image: d27 + Image: d27.des Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@120: Id: 120 - Image: d28 + Image: d28.des Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@121: Id: 121 - Image: d29 + Image: d29.des Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@122: Id: 122 - Image: d30 + Image: d30.des Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear 2: Road Template@123: Id: 123 - Image: d31 + Image: d31.des Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear 3: Road Template@124: Id: 124 - Image: d32 + Image: d32.des Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@125: Id: 125 - Image: d33 + Image: d33.des Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road 3: Road Template@126: Id: 126 - Image: d34 + Image: d34.des Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road 5: Road 6: Road 7: Road Template@127: Id: 127 - Image: d35 + Image: d35.des Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@128: Id: 128 - Image: d36 + Image: d36.des Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@129: Id: 129 - Image: d37 + Image: d37.des Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@130: Id: 130 - Image: d38 + Image: d38.des Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@131: Id: 131 - Image: d39 + Image: d39.des Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@132: Id: 132 - Image: d40 + Image: d40.des Size: 2,2 Category: Road Tiles: 0: Road 1: Road + 3: Clear Template@133: Id: 133 - Image: d41 + Image: d41.des Size: 2,2 Category: Road Tiles: 0: Wall 2: Road + 3: Clear Template@134: Id: 134 - Image: d42 + Image: d42.des Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road + 3: Clear Template@135: Id: 135 - Image: d43 + Image: d43.des Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@149: Id: 149 - Image: rv14 + Image: rv14.des Size: 4,3 Category: River Tiles: @@ -1123,22 +1281,25 @@ Templates: 11: Rock Template@150: Id: 150 - Image: rv15 + Image: rv15.des Size: 4,3 Category: River Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: River 5: River 6: Rock 7: River + 8: Clear 9: Rock 10: Rock + 11: Clear Template@151: Id: 151 - Image: rv16 + Image: rv16.des Size: 6,4 Category: River Tiles: @@ -1163,7 +1324,7 @@ Templates: 21: Tree Template@152: Id: 152 - Image: rv17 + Image: rv17.des Size: 6,5 Category: River Tiles: @@ -1182,6 +1343,7 @@ Templates: 15: River 16: River 17: Rock + 18: Clear 19: Rock 20: Rock 21: Rock @@ -1191,7 +1353,7 @@ Templates: 29: River Template@153: Id: 153 - Image: rv18 + Image: rv18.des Size: 4,4 Category: River Tiles: @@ -1210,12 +1372,13 @@ Templates: 14: Rock Template@154: Id: 154 - Image: rv19 + Image: rv19.des Size: 4,4 Category: River Tiles: 1: Rock 2: River + 3: Clear 5: Rock 6: River 7: Tree @@ -1223,20 +1386,25 @@ Templates: 9: Rock 10: River 11: Rock + 12: Clear 13: Rock 14: River 15: Tree Template@155: Id: 155 - Image: rv20 + Image: rv20.des Size: 6,8 Category: River Tiles: + 2: Clear 3: Rock 4: River + 5: Clear + 7: Clear 8: Rock 9: River 10: Rock + 12: Clear 13: Rock 14: Rock 15: River @@ -1245,6 +1413,7 @@ Templates: 19: Rock 20: River 21: Rock + 22: Clear 24: Rock 25: Rock 26: River @@ -1254,20 +1423,25 @@ Templates: 31: Rock 32: River 33: Rock + 36: Clear 37: River 38: River 39: Rock + 42: Clear 43: River 44: Rock 45: Rock Template@156: Id: 156 - Image: rv21 + Image: rv21.des Size: 5,8 Category: River Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear + 5: Clear 6: River 7: River 8: Rock @@ -1288,13 +1462,16 @@ Templates: 32: Rock 33: River 34: River + 38: Clear 39: River Template@157: Id: 157 - Image: rv22 + Image: rv22.des Size: 3,3 Category: River Tiles: + 1: Clear + 2: Clear 3: Rock 4: Rock 5: River @@ -1303,7 +1480,7 @@ Templates: 8: Rock Template@158: Id: 158 - Image: rv23 + Image: rv23.des Size: 3,3 Category: River Tiles: @@ -1318,7 +1495,7 @@ Templates: 8: Rock Template@159: Id: 159 - Image: rv24 + Image: rv24.des Size: 3,3 Category: River Tiles: @@ -1329,9 +1506,10 @@ Templates: 4: River 5: River 7: Tree + 8: Clear Template@160: Id: 160 - Image: rv25 + Image: rv25.des Size: 3,3 Category: River Tiles: @@ -1343,46 +1521,55 @@ Templates: 5: Rock 6: Rock 7: Rock + 8: Clear Template@161: Id: 161 - Image: ford1 + Image: ford1.des Size: 3,3 Category: River Tiles: + 0: Clear 1: River + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: River 8: River Template@162: Id: 162 - Image: ford2 + Image: ford2.des Size: 3,3 Category: River Tiles: + 0: Clear 1: Road 2: River 3: River 4: Road 5: River + 6: Clear 7: Road + 8: Clear Template@163: Id: 163 - Image: falls1 + Image: falls1.des Size: 3,3 Category: River Tiles: + 0: Clear 1: Rock 2: River 3: River 4: River 5: River + 6: Clear 7: Rock 8: Rock Template@164: Id: 164 - Image: falls2 + Image: falls2.des Size: 3,2 Category: River Tiles: @@ -1394,15 +1581,18 @@ Templates: 5: River Template@169: Id: 169 - Image: bridge3 + Image: bridge3.des Size: 6,5 Category: Bridge Tiles: + 3: Clear 4: Road + 6: Clear 7: Rock 8: Wall 9: Road 10: Wall + 11: Clear 12: River 13: River 14: Road @@ -1411,21 +1601,26 @@ Templates: 17: Rock 18: Rock 19: Road + 20: Clear 21: Rock 22: River 23: River 24: Road + 25: Clear Template@170: Id: 170 - Image: bridge3d + Image: bridge3d.des Size: 6,5 Category: Bridge Tiles: + 3: Clear 4: Road + 6: Clear 7: Rock 8: Rock 9: Wall 10: Wall + 11: Clear 12: River 13: River 14: River @@ -1434,19 +1629,24 @@ Templates: 17: Rock 18: Rock 19: Road + 20: Clear 21: River 22: River 23: River 24: Road + 25: Clear Template@171: Id: 171 - Image: bridge4 + Image: bridge4.des Size: 6,4 Category: Bridge Tiles: 1: Road + 2: Clear 3: Tree 4: Rock + 5: Clear + 6: Clear 7: Wall 8: Road 9: Wall @@ -1461,16 +1661,20 @@ Templates: 18: River 19: River 20: Rock + 21: Clear 22: Road Template@172: Id: 172 - Image: bridge4d + Image: bridge4d.des Size: 6,4 Category: Bridge Tiles: 1: Road + 2: Clear 3: Tree 4: Rock + 5: Clear + 6: Clear 7: Wall 8: Wall 9: River @@ -1485,10 +1689,11 @@ Templates: 18: River 19: River 20: Rock + 21: Clear 22: Road Template@173: Id: 173 - Image: sh24 + Image: sh24.des Size: 3,3 Category: Beach Tiles: @@ -1497,22 +1702,25 @@ Templates: 2: Rock 3: River 4: River + 5: Clear 6: River 7: Water 8: River Template@174: Id: 174 - Image: sh25 + Image: sh25.des Size: 3,2 Category: Beach Tiles: 0: River 1: River 2: River + 3: Clear + 4: Clear 5: Rock Template@175: Id: 175 - Image: sh26 + Image: sh26.des Size: 3,2 Category: Beach Tiles: @@ -1520,9 +1728,10 @@ Templates: 1: Rock 2: River 4: Rock + 5: Clear Template@176: Id: 176 - Image: sh27 + Image: sh27.des Size: 4,1 Category: Beach Tiles: @@ -1532,7 +1741,7 @@ Templates: 3: Rock Template@177: Id: 177 - Image: sh28 + Image: sh28.des Size: 3,1 Category: Beach Tiles: @@ -1541,7 +1750,7 @@ Templates: 2: River Template@178: Id: 178 - Image: sh29 + Image: sh29.des Size: 6,2 Category: Beach Tiles: @@ -1551,9 +1760,12 @@ Templates: 3: River 4: River 5: River + 7: Clear + 8: Clear + 9: Clear Template@179: Id: 179 - Image: sh30 + Image: sh30.des Size: 2,2 Category: Beach Tiles: @@ -1562,7 +1774,7 @@ Templates: 2: Rock Template@180: Id: 180 - Image: sh31 + Image: sh31.des Size: 3,3 Category: Beach Tiles: @@ -1572,38 +1784,44 @@ Templates: 3: Rock 4: River 5: Rock + 6: Clear 7: River 8: Rock Template@188: Id: 188 - Image: sh36 + Image: sh36.des Size: 1,1 Category: Beach Tiles: + 0: Clear Template@189: Id: 189 - Image: sh37 + Image: sh37.des Size: 1,1 Category: Beach Tiles: + 0: Clear Template@190: Id: 190 - Image: sh38 + Image: sh38.des Size: 1,1 Category: Beach Tiles: + 0: Clear Template@191: Id: 191 - Image: sh39 + Image: sh39.des Size: 1,1 Category: Beach Tiles: + 0: Clear Template@192: Id: 192 - Image: sh40 + Image: sh40.des Size: 3,3 Category: Beach Tiles: + 0: Clear 1: River 2: River 3: Clear @@ -1614,7 +1832,7 @@ Templates: 8: Water Template@193: Id: 193 - Image: sh41 + Image: sh41.des Size: 3,3 Category: Beach Tiles: @@ -1626,9 +1844,10 @@ Templates: 5: Clear 6: River 7: Rock + 8: Clear Template@194: Id: 194 - Image: sh42 + Image: sh42.des Size: 1,2 Category: Beach Tiles: @@ -1636,7 +1855,7 @@ Templates: 1: River Template@195: Id: 195 - Image: sh43 + Image: sh43.des Size: 1,3 Category: Beach Tiles: @@ -1645,7 +1864,7 @@ Templates: 2: River Template@196: Id: 196 - Image: sh44 + Image: sh44.des Size: 1,3 Category: Beach Tiles: @@ -1654,7 +1873,7 @@ Templates: 2: River Template@197: Id: 197 - Image: sh45 + Image: sh45.des Size: 1,2 Category: Beach Tiles: @@ -1662,12 +1881,14 @@ Templates: 1: River Template@198: Id: 198 - Image: sh46 + Image: sh46.des Size: 3,3 Category: Beach Tiles: + 0: Clear 1: Clear 2: River + 3: Clear 4: River 5: Water 6: River @@ -1675,7 +1896,7 @@ Templates: 8: Water Template@199: Id: 199 - Image: sh47 + Image: sh47.des Size: 3,3 Category: Beach Tiles: @@ -1688,7 +1909,7 @@ Templates: 8: River Template@200: Id: 200 - Image: sh48 + Image: sh48.des Size: 3,3 Category: Beach Tiles: @@ -1699,7 +1920,7 @@ Templates: 8: River Template@201: Id: 201 - Image: sh49 + Image: sh49.des Size: 3,3 Category: Beach Tiles: @@ -1713,7 +1934,7 @@ Templates: 8: Rock Template@202: Id: 202 - Image: sh50 + Image: sh50.des Size: 4,3 Category: Beach Tiles: @@ -1724,14 +1945,16 @@ Templates: 5: Rock 6: Rock 8: River + 9: Clear Template@203: Id: 203 - Image: sh51 + Image: sh51.des Size: 4,3 Category: Beach Tiles: 0: River 1: Water + 4: Clear 5: River 6: Water 8: Rock @@ -1740,7 +1963,7 @@ Templates: 11: River Template@204: Id: 204 - Image: sh52 + Image: sh52.des Size: 4,3 Category: Beach Tiles: @@ -1754,11 +1977,15 @@ Templates: 11: River Template@205: Id: 205 - Image: sh53 + Image: sh53.des Size: 4,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear 5: River 6: Water 7: Water @@ -1768,10 +1995,11 @@ Templates: 11: River Template@206: Id: 206 - Image: sh54 + Image: sh54.des Size: 3,2 Category: Beach Tiles: + 0: Clear 1: Tree 2: River 3: River @@ -1779,18 +2007,19 @@ Templates: 5: River Template@207: Id: 207 - Image: sh55 + Image: sh55.des Size: 3,2 Category: Beach Tiles: 0: River 1: Rock + 2: Clear 3: Water 4: River 5: River Template@208: Id: 208 - Image: sh56 + Image: sh56.des Size: 3,2 Category: Beach Tiles: @@ -1801,7 +2030,7 @@ Templates: 5: Rock Template@209: Id: 209 - Image: sh57 + Image: sh57.des Size: 3,2 Category: Beach Tiles: @@ -1811,20 +2040,22 @@ Templates: 5: River Template@210: Id: 210 - Image: sh58 + Image: sh58.des Size: 2,3 Category: Beach Tiles: 0: River 2: River 3: Water + 4: Clear 5: River Template@211: Id: 211 - Image: sh59 + Image: sh59.des Size: 2,3 Category: Beach Tiles: + 0: Clear 1: River 2: River 3: River @@ -1832,27 +2063,30 @@ Templates: 5: River Template@212: Id: 212 - Image: sh60 + Image: sh60.des Size: 2,3 Category: Beach Tiles: 0: Water 1: River 2: River + 3: Clear 4: River + 5: Clear Template@213: Id: 213 - Image: sh61 + Image: sh61.des Size: 2,3 Category: Beach Tiles: 0: River + 1: Clear 2: Water 3: River 5: River Template@214: Id: 214 - Image: sh62 + Image: sh62.des Size: 6,1 Category: Beach Tiles: @@ -1864,7 +2098,7 @@ Templates: 5: River Template@215: Id: 215 - Image: sh63 + Image: sh63.des Size: 4,1 Category: Beach Tiles: diff --git a/mods/cnc/tilesets/jungle.yaml b/mods/cnc/tilesets/jungle.yaml index 19d82bc13c..f9a20cce59 100644 --- a/mods/cnc/tilesets/jungle.yaml +++ b/mods/cnc/tilesets/jungle.yaml @@ -1,76 +1,71 @@ General: Name: Jungle Id: JUNGLE - Extensions: .jun, .tem, .shp Palette: jungle.pal + Extensions: .jun, .tem, .shp WaterPaletteRotationBase: 32 EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 40, 92, 48 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 92, 116, 164 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 84, 64, 49 - TargetTypes: Ground - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 191, 199, 196 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 92, 140, 180 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 - TargetTypes: Ground - TerrainType@Tiberium: - Type: Tiberium - AcceptsSmudgeType: Crater, Scorch - Color: 161, 226, 28 TargetTypes: Ground + Color: 255,176,156,120 TerrainType@BlueTiberium: Type: BlueTiberium - AcceptsSmudgeType: Crater, Scorch - Color: 84, 252, 252 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,84,252,252 + TerrainType@Clear: + Type: Clear + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,40,92,48 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,92,140,180 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,84,64,49 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,191,199,196 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tiberium: + Type: Tiberium + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,161,226,28 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,92,116,164 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.jun Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -90,10 +85,10 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.jun Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -112,11 +107,10 @@ Templates: 14: Clear 15: Clear Template@0: - Id: 0 - Image: clear1 + Image: clear1.jun Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -136,14 +130,14 @@ Templates: 15: Clear Template@1: Id: 1 - Image: w1 + Image: w1.jun Size: 1,1 Category: Terrain Tiles: 0: Water Template@2: Id: 2 - Image: w2 + Image: w2.jun Size: 2,2 Category: Terrain Tiles: @@ -153,20 +147,28 @@ Templates: 3: Water Template@3: Id: 3 - Image: sh1 + Image: sh1.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@4: Id: 4 - Image: sh2 + Image: sh2.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River 5: River @@ -175,14 +177,14 @@ Templates: 8: Water Template@5: Id: 5 - Image: sh3 + Image: sh3.jun Size: 1,1 Category: Beach Tiles: 0: River Template@6: Id: 6 - Image: sh4 + Image: sh4.jun Size: 2,1 Category: Beach Tiles: @@ -190,23 +192,29 @@ Templates: 1: River Template@7: Id: 7 - Image: sh5 + Image: sh5.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River + 5: Clear 6: Water 7: Water 8: Water Template@8: Id: 8 - Image: sh11 + Image: sh11.jun Size: 3,3 Category: Beach Tiles: + 0: Clear 1: River 2: Rock + 3: Clear 4: River 5: River 6: Water @@ -214,7 +222,7 @@ Templates: 8: Water Template@9: Id: 9 - Image: sh12 + Image: sh12.jun Size: 3,3 Category: Beach Tiles: @@ -222,11 +230,14 @@ Templates: 1: Water 2: Water 3: Rock + 4: Clear + 5: Clear 6: Tree 7: Tree + 8: Clear Template@10: Id: 10 - Image: sh13 + Image: sh13.jun Size: 3,3 Category: Beach Tiles: @@ -234,12 +245,14 @@ Templates: 1: Water 2: Water 3: Water + 4: Clear 5: Rock + 6: Clear 7: Rock 8: Road Template@11: Id: 11 - Image: sh14 + Image: sh14.jun Size: 3,3 Category: Beach Tiles: @@ -249,10 +262,12 @@ Templates: 3: River 4: River 5: River + 6: Clear + 7: Clear 8: Tree Template@12: Id: 12 - Image: sh15 + Image: sh15.jun Size: 3,3 Category: Beach Tiles: @@ -261,30 +276,34 @@ Templates: 3: River 4: Rock 5: Rock + 6: Clear 7: Tree + 8: Clear Template@13: Id: 13 - Image: s01 + Image: s01.jun Size: 2,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear 3: Rock Template@14: Id: 14 - Image: s02 + Image: s02.jun Size: 2,3 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock 4: Rock 5: Rock Template@15: Id: 15 - Image: s03 + Image: s03.jun Size: 2,2 Category: Cliffs Tiles: @@ -294,7 +313,7 @@ Templates: 3: Rock Template@16: Id: 16 - Image: s04 + Image: s04.jun Size: 2,2 Category: Cliffs Tiles: @@ -304,7 +323,7 @@ Templates: 3: Rock Template@17: Id: 17 - Image: s05 + Image: s05.jun Size: 2,2 Category: Cliffs Tiles: @@ -314,17 +333,18 @@ Templates: 3: Rock Template@18: Id: 18 - Image: s06 + Image: s06.jun Size: 2,3 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock Template@19: Id: 19 - Image: s07 + Image: s07.jun Size: 2,2 Category: Cliffs Tiles: @@ -334,27 +354,29 @@ Templates: 3: Rock Template@20: Id: 20 - Image: s08 + Image: s08.jun Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@21: Id: 21 - Image: s09 + Image: s09.jun Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: Rock 5: Rock Template@22: Id: 22 - Image: s10 + Image: s10.jun Size: 2,2 Category: Cliffs Tiles: @@ -364,7 +386,7 @@ Templates: 3: Rock Template@23: Id: 23 - Image: s11 + Image: s11.jun Size: 2,2 Category: Cliffs Tiles: @@ -374,7 +396,7 @@ Templates: 3: Rock Template@24: Id: 24 - Image: s12 + Image: s12.jun Size: 2,2 Category: Cliffs Tiles: @@ -384,74 +406,89 @@ Templates: 3: Rock Template@25: Id: 25 - Image: s13 + Image: s13.jun Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock + 2: Clear 3: Rock 4: Rock + 5: Clear Template@26: Id: 26 - Image: s14 + Image: s14.jun Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear + 2: Clear Template@27: Id: 27 - Image: s15 + Image: s15.jun Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@28: Id: 28 - Image: s16 + Image: s16.jun Size: 2,3 Category: Cliffs Tiles: + 0: Clear 2: Rock 3: Rock 5: Rock Template@29: Id: 29 - Image: s17 + Image: s17.jun Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@30: Id: 30 - Image: s18 + Image: s18.jun Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@31: Id: 31 - Image: s19 + Image: s19.jun Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@32: Id: 32 - Image: s20 + Image: s20.jun Size: 2,3 Category: Cliffs Tiles: + 1: Clear 2: Rock 3: Rock 4: Rock + 5: Clear Template@33: Id: 33 - Image: s21 + Image: s21.jun Size: 1,2 Category: Cliffs Tiles: @@ -459,7 +496,7 @@ Templates: 1: Rock Template@34: Id: 34 - Image: s22 + Image: s22.jun Size: 2,1 Category: Cliffs Tiles: @@ -467,17 +504,19 @@ Templates: 1: Rock Template@35: Id: 35 - Image: s23 + Image: s23.jun Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock + 5: Clear Template@36: Id: 36 - Image: s24 + Image: s24.jun Size: 2,2 Category: Cliffs Tiles: @@ -487,7 +526,7 @@ Templates: 3: Rock Template@37: Id: 37 - Image: s25 + Image: s25.jun Size: 2,2 Category: Cliffs Tiles: @@ -497,7 +536,7 @@ Templates: 3: Rock Template@38: Id: 38 - Image: s26 + Image: s26.jun Size: 2,2 Category: Cliffs Tiles: @@ -507,17 +546,19 @@ Templates: 3: Rock Template@39: Id: 39 - Image: s27 + Image: s27.jun Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear 4: Rock 5: Rock Template@40: Id: 40 - Image: s28 + Image: s28.jun Size: 2,2 Category: Cliffs Tiles: @@ -526,7 +567,7 @@ Templates: 3: Rock Template@41: Id: 41 - Image: s29 + Image: s29.jun Size: 2,2 Category: Cliffs Tiles: @@ -536,24 +577,27 @@ Templates: 3: Rock Template@42: Id: 42 - Image: s30 + Image: s30.jun Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@43: Id: 43 - Image: s31 + Image: s31.jun Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@44: Id: 44 - Image: s32 + Image: s32.jun Size: 2,2 Category: Cliffs Tiles: @@ -562,7 +606,7 @@ Templates: 2: Rock Template@45: Id: 45 - Image: s33 + Image: s33.jun Size: 2,2 Category: Cliffs Tiles: @@ -572,7 +616,7 @@ Templates: 3: Rock Template@46: Id: 46 - Image: s34 + Image: s34.jun Size: 2,2 Category: Cliffs Tiles: @@ -582,7 +626,7 @@ Templates: 3: Rock Template@47: Id: 47 - Image: s35 + Image: s35.jun Size: 2,2 Category: Cliffs Tiles: @@ -592,7 +636,7 @@ Templates: 3: Rock Template@48: Id: 48 - Image: s36 + Image: s36.jun Size: 2,2 Category: Cliffs Tiles: @@ -602,7 +646,7 @@ Templates: 3: Rock Template@49: Id: 49 - Image: s37 + Image: s37.jun Size: 2,2 Category: Cliffs Tiles: @@ -612,7 +656,7 @@ Templates: 3: Rock Template@50: Id: 50 - Image: s38 + Image: s38.jun Size: 2,2 Category: Cliffs Tiles: @@ -622,62 +666,94 @@ Templates: 3: Rock Template@51: Id: 51 - Image: sh32 + Image: sh32.jun Size: 3,3 Category: Beach Tiles: 0: Water + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@52: Id: 52 - Image: sh33 + Image: sh33.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: River + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@67: Id: 67 - Image: p01 + Image: p01.jun Size: 1,1 Category: Debris Tiles: 0: Wall Template@68: Id: 68 - Image: p02 + Image: p02.jun Size: 1,1 Category: Debris Tiles: 0: Wall Template@69: Id: 69 - Image: p03 + Image: p03.jun Size: 1,1 + PickAny: True Category: Debris Tiles: 0: Wall + 1: Clear + 2: Clear Template@70: Id: 70 - Image: p04 + Image: p04.jun Size: 1,1 Category: Debris Tiles: 0: Wall Template@73: Id: 73 - Image: p07 + Image: p07.jun Size: 4,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear Template@74: Id: 74 - Image: p08 + Image: p08.jun Size: 3,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@75: Id: 75 - Image: sh16 + Image: sh16.jun Size: 3,2 Category: Beach Tiles: @@ -689,7 +765,7 @@ Templates: 5: River Template@76: Id: 76 - Image: sh17 + Image: sh17.jun Size: 2,2 Category: Beach Tiles: @@ -699,7 +775,7 @@ Templates: 3: Water Template@77: Id: 77 - Image: sh18 + Image: sh18.jun Size: 2,2 Category: Beach Tiles: @@ -709,7 +785,7 @@ Templates: 3: Water Template@79: Id: 79 - Image: p13 + Image: p13.jun Size: 3,2 Category: Debris Tiles: @@ -717,10 +793,11 @@ Templates: 1: Wall 2: Wall 3: Wall + 4: Clear 5: Wall Template@80: Id: 80 - Image: p14 + Image: p14.jun Size: 2,1 Category: Debris Tiles: @@ -728,14 +805,14 @@ Templates: 1: Wall Template@82: Id: 82 - Image: b1 + Image: b1.jun Size: 1,1 Category: Debris Tiles: 0: Rock Template@83: Id: 83 - Image: b2 + Image: b2.jun Size: 2,1 Category: Debris Tiles: @@ -743,98 +820,131 @@ Templates: 1: Rock Template@84: Id: 84 - Image: b3 + Image: b3.jun Size: 3,1 Category: Debris Tiles: 0: Rock 1: Rock + 2: Clear Template@88: Id: 88 - Image: sh6 + Image: sh6.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@89: Id: 89 - Image: sh7 + Image: sh7.jun Size: 2,2 Category: Beach Tiles: + 0: Clear 1: River 2: River 3: Water Template@90: Id: 90 - Image: sh8 + Image: sh8.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear 5: River + 6: Clear + 7: Clear 8: Water Template@91: Id: 91 - Image: sh9 + Image: sh9.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: River + 8: Clear Template@92: Id: 92 - Image: sh10 + Image: sh10.jun Size: 2,2 Category: Beach Tiles: 0: River + 1: Clear 2: Water 3: River Template@93: Id: 93 - Image: d01 + Image: d01.jun Size: 2,2 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear Template@94: Id: 94 - Image: d02 + Image: d02.jun Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear Template@95: Id: 95 - Image: d03 + Image: d03.jun Size: 1,2 Category: Road Tiles: + 0: Clear + 1: Clear Template@96: Id: 96 - Image: d04 + Image: d04.jun Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@97: Id: 97 - Image: d05 + Image: d05.jun Size: 3,4 Category: Road Tiles: 1: Road + 2: Clear 3: Road 4: Road 6: Road 7: Road + 9: Clear 10: Road Template@98: Id: 98 - Image: d06 + Image: d06.jun Size: 2,3 Category: Road Tiles: @@ -842,38 +952,51 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear Template@99: Id: 99 - Image: d07 + Image: d07.jun Size: 3,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 4: Road + 5: Clear Template@100: Id: 100 - Image: d08 + Image: d08.jun Size: 3,2 Category: Road Tiles: 1: Road + 3: Clear 4: Road + 5: Clear Template@101: Id: 101 - Image: d09 + Image: d09.jun Size: 4,3 Category: Road Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear 4: Road 5: Road 6: Road 7: Road + 10: Clear + 11: Clear Template@102: Id: 102 - Image: d10 + Image: d10.jun Size: 4,2 Category: Road Tiles: + 0: Clear 1: Rock 4: Road 5: Road @@ -881,39 +1004,47 @@ Templates: 7: Road Template@103: Id: 103 - Image: d11 + Image: d11.jun Size: 2,3 Category: Road Tiles: + 1: Clear 2: Road 3: Road + 4: Clear Template@104: Id: 104 - Image: d12 + Image: d12.jun Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@105: Id: 105 - Image: d13 + Image: d13.jun Size: 4,3 Category: Road Tiles: 0: Road 1: Road + 2: Clear + 4: Clear 5: Road 6: Road + 7: Clear 10: Wall 11: Road Template@106: Id: 106 - Image: d14 + Image: d14.jun Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Wall 5: Road 6: Road @@ -921,7 +1052,7 @@ Templates: 8: Road Template@107: Id: 107 - Image: d15 + Image: d15.jun Size: 3,3 Category: Road Tiles: @@ -930,246 +1061,317 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear 6: Road + 7: Clear Template@108: Id: 108 - Image: d16 + Image: d16.jun Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear 4: Road 5: Road 6: Road + 7: Clear 8: Wall Template@109: Id: 109 - Image: d17 + Image: d17.jun Size: 3,2 Category: Road Tiles: 0: Road 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@110: Id: 110 - Image: d18 + Image: d18.jun Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Wall Template@111: Id: 111 - Image: d19 + Image: d19.jun Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: Road + 8: Clear Template@112: Id: 112 - Image: d20 + Image: d20.jun Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Road Template@113: Id: 113 - Image: d21 + Image: d21.jun Size: 3,2 Category: Road Tiles: 0: Rock 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@114: Id: 114 - Image: d22 + Image: d22.jun Size: 3,3 Category: Road Tiles: + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road + 8: Clear Template@115: Id: 115 - Image: d23 + Image: d23.jun Size: 3,3 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@116: Id: 116 - Image: d24 + Image: d24.jun Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@117: Id: 117 - Image: d25 + Image: d25.jun Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@118: Id: 118 - Image: d26 + Image: d26.jun Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@119: Id: 119 - Image: d27 + Image: d27.jun Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@120: Id: 120 - Image: d28 + Image: d28.jun Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@121: Id: 121 - Image: d29 + Image: d29.jun Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@122: Id: 122 - Image: d30 + Image: d30.jun Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear 2: Road Template@123: Id: 123 - Image: d31 + Image: d31.jun Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear 3: Road Template@124: Id: 124 - Image: d32 + Image: d32.jun Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@125: Id: 125 - Image: d33 + Image: d33.jun Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road 3: Road Template@126: Id: 126 - Image: d34 + Image: d34.jun Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road 5: Road 6: Road 7: Road Template@127: Id: 127 - Image: d35 + Image: d35.jun Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@128: Id: 128 - Image: d36 + Image: d36.jun Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@129: Id: 129 - Image: d37 + Image: d37.jun Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@130: Id: 130 - Image: d38 + Image: d38.jun Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@131: Id: 131 - Image: d39 + Image: d39.jun Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@132: Id: 132 - Image: d40 + Image: d40.jun Size: 2,2 Category: Road Tiles: 0: Road 1: Road + 3: Clear Template@133: Id: 133 - Image: d41 + Image: d41.jun Size: 2,2 Category: Road Tiles: 0: Wall 2: Road + 3: Clear Template@134: Id: 134 - Image: d42 + Image: d42.jun Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road + 3: Clear Template@135: Id: 135 - Image: d43 + Image: d43.jun Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@136: Id: 136 - Image: rv01 + Image: rv01.jun Size: 5,4 Category: River Tiles: + 0: Clear 1: Rock 5: Rock 6: River @@ -1182,9 +1384,10 @@ Templates: 13: Rock 14: River 16: Wall + 17: Clear Template@137: Id: 137 - Image: rv02 + Image: rv02.jun Size: 5,3 Category: River Tiles: @@ -1200,26 +1403,35 @@ Templates: 9: River 10: River 11: Rock + 12: Clear Template@138: Id: 138 - Image: rv03 + Image: rv03.jun Size: 4,4 Category: River Tiles: + 0: Clear + 1: Clear 4: River 5: River 6: River + 7: Clear + 8: Clear 9: River 10: River 11: River + 13: Clear + 14: Clear 15: River Template@139: Id: 139 - Image: rv04 + Image: rv04.jun Size: 4,4 Category: River Tiles: 2: Wall + 3: Clear + 5: Clear 6: River 7: River 8: River @@ -1231,12 +1443,14 @@ Templates: 14: Rock Template@140: Id: 140 - Image: rv05 + Image: rv05.jun Size: 3,3 Category: River Tiles: + 0: Clear 1: River 2: River + 3: Clear 4: River 5: River 6: Rock @@ -1244,7 +1458,7 @@ Templates: 8: River Template@141: Id: 141 - Image: rv06 + Image: rv06.jun Size: 3,2 Category: River Tiles: @@ -1253,9 +1467,10 @@ Templates: 2: Rock 3: Rock 4: River + 5: Clear Template@142: Id: 142 - Image: rv07 + Image: rv07.jun Size: 3,2 Category: River Tiles: @@ -1267,7 +1482,7 @@ Templates: 5: River Template@143: Id: 143 - Image: rv08 + Image: rv08.jun Size: 2,2 Category: River Tiles: @@ -1277,36 +1492,41 @@ Templates: 3: River Template@144: Id: 144 - Image: rv09 + Image: rv09.jun Size: 2,2 Category: River Tiles: + 0: Clear + 1: Clear 2: River 3: River Template@145: Id: 145 - Image: rv10 + Image: rv10.jun Size: 2,2 Category: River Tiles: 0: River 1: River + 2: Clear 3: River Template@146: Id: 146 - Image: rv11 + Image: rv11.jun Size: 2,2 Category: River Tiles: 0: River 1: River 2: River + 3: Clear Template@147: Id: 147 - Image: rv12 + Image: rv12.jun Size: 3,4 Category: River Tiles: + 0: Clear 1: River 2: River 3: Rock @@ -1315,14 +1535,17 @@ Templates: 6: River 7: River 8: Rock + 9: Clear 10: River 11: River Template@148: Id: 148 - Image: rv13 + Image: rv13.jun Size: 4,4 Category: River Tiles: + 2: Clear + 3: Clear 4: River 5: River 6: River @@ -1331,49 +1554,58 @@ Templates: 9: Rock 10: River 11: Rock + 12: Clear 13: Rock 14: River 15: Rock Template@161: Id: 161 - Image: ford1 + Image: ford1.jun Size: 3,3 Category: River Tiles: + 0: Clear 1: River + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: River 8: River Template@162: Id: 162 - Image: ford2 + Image: ford2.jun Size: 3,3 Category: River Tiles: + 0: Clear 1: Road 2: River 3: River 4: Road 5: River + 6: Clear 7: Road + 8: Clear Template@163: Id: 163 - Image: falls1 + Image: falls1.jun Size: 3,3 Category: River Tiles: + 0: Clear 1: Rock 2: River 3: River 4: River 5: River + 6: Clear 7: Rock 8: Rock Template@164: Id: 164 - Image: falls2 + Image: falls2.jun Size: 3,2 Category: River Tiles: @@ -1385,10 +1617,11 @@ Templates: 5: River Template@165: Id: 165 - Image: bridge1 + Image: bridge1.jun Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1399,13 +1632,16 @@ Templates: 10: Wall 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@166: Id: 166 - Image: bridge1d + Image: bridge1d.jun Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1416,14 +1652,19 @@ Templates: 10: River 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@167: Id: 167 - Image: bridge2 + Image: bridge2.jun Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Road 7: Wall @@ -1433,16 +1674,24 @@ Templates: 11: Wall 12: Road 13: Wall + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@168: Id: 168 - Image: bridge2d + Image: bridge2d.jun Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Wall 7: River @@ -1452,40 +1701,55 @@ Templates: 11: River 12: River 13: River + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@186: Id: 186 - Image: sh34 + Image: sh34.jun Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: Water + 3: Clear + 4: Clear 5: Water + 6: Clear + 7: Clear 8: Water Template@187: Id: 187 - Image: sh35 + Image: sh35.jun Size: 3,3 Category: Beach Tiles: 0: Water 1: River + 2: Clear 3: Water 4: River + 5: Clear 6: Water + 7: Clear + 8: Clear Template@188: Id: 188 - Image: a10cr + Image: a10cr.tem Size: 4,2 Category: Debris Tiles: 1: Tree + 2: Tree + 3: Tree + 4: Tree 5: Tree 6: Tree 7: Tree - 3: Tree - 2: Tree - 4: Tree diff --git a/mods/cnc/tilesets/snow.yaml b/mods/cnc/tilesets/snow.yaml index b5cf00bdff..f3c26af9bc 100644 --- a/mods/cnc/tilesets/snow.yaml +++ b/mods/cnc/tilesets/snow.yaml @@ -1,76 +1,71 @@ General: Name: Snow Id: SNOW - Extensions: .sno, .shp, .tem Palette: snow.pal + Extensions: .sno, .shp, .tem WaterPaletteRotationBase: 32 EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 196, 196, 196 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 92, 116, 164 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 88, 116, 116 - TargetTypes: Ground - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 92, 140, 180 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 - TargetTypes: Ground - TerrainType@Tiberium: - Type: Tiberium - AcceptsSmudgeType: Crater, Scorch - Color: 161, 226, 28 TargetTypes: Ground + Color: 255,176,156,120 TerrainType@BlueTiberium: Type: BlueTiberium - AcceptsSmudgeType: Crater, Scorch - Color: 84, 252, 252 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,84,252,252 + TerrainType@Clear: + Type: Clear + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,196,196,196 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,92,140,180 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,88,116,116 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,68,68,60 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tiberium: + Type: Tiberium + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,161,226,28 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,92,116,164 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.sno Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -88,12 +83,16 @@ Templates: 13: Clear 14: Clear 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.sno Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -111,12 +110,15 @@ Templates: 13: Clear 14: Clear 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear Template@0: - Id: 0 - Image: clear1 + Image: clear1.sno Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -134,16 +136,20 @@ Templates: 13: Clear 14: Clear 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear Template@1: Id: 1 - Image: w1 + Image: w1.sno Size: 1,1 Category: Terrain Tiles: 0: Water Template@2: Id: 2 - Image: w2 + Image: w2.sno Size: 2,2 Category: Terrain Tiles: @@ -153,20 +159,28 @@ Templates: 3: Water Template@3: Id: 3 - Image: sh1 + Image: sh1.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@4: Id: 4 - Image: sh2 + Image: sh2.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River 5: River @@ -175,14 +189,14 @@ Templates: 8: Water Template@5: Id: 5 - Image: sh3 + Image: sh3.sno Size: 1,1 Category: Beach Tiles: 0: River Template@6: Id: 6 - Image: sh4 + Image: sh4.sno Size: 2,1 Category: Beach Tiles: @@ -190,23 +204,29 @@ Templates: 1: River Template@7: Id: 7 - Image: sh5 + Image: sh5.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River + 5: Clear 6: Water 7: Water 8: Water Template@8: Id: 8 - Image: sh11 + Image: sh11.sno Size: 3,3 Category: Beach Tiles: + 0: Clear 1: River 2: Rock + 3: Clear 4: River 5: River 6: Water @@ -214,7 +234,7 @@ Templates: 8: Water Template@9: Id: 9 - Image: sh12 + Image: sh12.sno Size: 3,3 Category: Beach Tiles: @@ -222,11 +242,14 @@ Templates: 1: Water 2: Water 3: Rock + 4: Clear + 5: Clear 6: Tree 7: Tree + 8: Clear Template@10: Id: 10 - Image: sh13 + Image: sh13.sno Size: 3,3 Category: Beach Tiles: @@ -234,12 +257,14 @@ Templates: 1: Water 2: Water 3: Water + 4: Clear 5: Rock + 6: Clear 7: Rock 8: Road Template@11: Id: 11 - Image: sh14 + Image: sh14.sno Size: 3,3 Category: Beach Tiles: @@ -249,10 +274,12 @@ Templates: 3: River 4: River 5: River + 6: Clear + 7: Clear 8: Tree Template@12: Id: 12 - Image: sh15 + Image: sh15.sno Size: 3,3 Category: Beach Tiles: @@ -261,30 +288,34 @@ Templates: 3: River 4: Rock 5: Rock + 6: Clear 7: Tree + 8: Clear Template@13: Id: 13 - Image: s01 + Image: s01.sno Size: 2,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear 3: Rock Template@14: Id: 14 - Image: s02 + Image: s02.sno Size: 2,3 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock 4: Rock 5: Rock Template@15: Id: 15 - Image: s03 + Image: s03.sno Size: 2,2 Category: Cliffs Tiles: @@ -294,7 +325,7 @@ Templates: 3: Rock Template@16: Id: 16 - Image: s04 + Image: s04.sno Size: 2,2 Category: Cliffs Tiles: @@ -304,7 +335,7 @@ Templates: 3: Rock Template@17: Id: 17 - Image: s05 + Image: s05.sno Size: 2,2 Category: Cliffs Tiles: @@ -314,17 +345,18 @@ Templates: 3: Rock Template@18: Id: 18 - Image: s06 + Image: s06.sno Size: 2,3 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock Template@19: Id: 19 - Image: s07 + Image: s07.sno Size: 2,2 Category: Cliffs Tiles: @@ -334,27 +366,29 @@ Templates: 3: Rock Template@20: Id: 20 - Image: s08 + Image: s08.sno Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@21: Id: 21 - Image: s09 + Image: s09.sno Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: Rock 5: Rock Template@22: Id: 22 - Image: s10 + Image: s10.sno Size: 2,2 Category: Cliffs Tiles: @@ -364,7 +398,7 @@ Templates: 3: Rock Template@23: Id: 23 - Image: s11 + Image: s11.sno Size: 2,2 Category: Cliffs Tiles: @@ -374,7 +408,7 @@ Templates: 3: Rock Template@24: Id: 24 - Image: s12 + Image: s12.sno Size: 2,2 Category: Cliffs Tiles: @@ -384,74 +418,89 @@ Templates: 3: Rock Template@25: Id: 25 - Image: s13 + Image: s13.sno Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock + 2: Clear 3: Rock 4: Rock + 5: Clear Template@26: Id: 26 - Image: s14 + Image: s14.sno Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear + 2: Clear Template@27: Id: 27 - Image: s15 + Image: s15.sno Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@28: Id: 28 - Image: s16 + Image: s16.sno Size: 2,3 Category: Cliffs Tiles: + 0: Clear 2: Rock 3: Rock 5: Rock Template@29: Id: 29 - Image: s17 + Image: s17.sno Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@30: Id: 30 - Image: s18 + Image: s18.sno Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@31: Id: 31 - Image: s19 + Image: s19.sno Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@32: Id: 32 - Image: s20 + Image: s20.sno Size: 2,3 Category: Cliffs Tiles: + 1: Clear 2: Rock 3: Rock 4: Rock + 5: Clear Template@33: Id: 33 - Image: s21 + Image: s21.sno Size: 1,2 Category: Cliffs Tiles: @@ -459,7 +508,7 @@ Templates: 1: Rock Template@34: Id: 34 - Image: s22 + Image: s22.sno Size: 2,1 Category: Cliffs Tiles: @@ -467,17 +516,19 @@ Templates: 1: Rock Template@35: Id: 35 - Image: s23 + Image: s23.sno Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock + 5: Clear Template@36: Id: 36 - Image: s24 + Image: s24.sno Size: 2,2 Category: Cliffs Tiles: @@ -487,7 +538,7 @@ Templates: 3: Rock Template@37: Id: 37 - Image: s25 + Image: s25.sno Size: 2,2 Category: Cliffs Tiles: @@ -497,7 +548,7 @@ Templates: 3: Rock Template@38: Id: 38 - Image: s26 + Image: s26.sno Size: 2,2 Category: Cliffs Tiles: @@ -507,17 +558,19 @@ Templates: 3: Rock Template@39: Id: 39 - Image: s27 + Image: s27.sno Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear 4: Rock 5: Rock Template@40: Id: 40 - Image: s28 + Image: s28.sno Size: 2,2 Category: Cliffs Tiles: @@ -526,7 +579,7 @@ Templates: 3: Rock Template@41: Id: 41 - Image: s29 + Image: s29.sno Size: 2,2 Category: Cliffs Tiles: @@ -536,24 +589,27 @@ Templates: 3: Rock Template@42: Id: 42 - Image: s30 + Image: s30.sno Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@43: Id: 43 - Image: s31 + Image: s31.sno Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@44: Id: 44 - Image: s32 + Image: s32.sno Size: 2,2 Category: Cliffs Tiles: @@ -562,7 +618,7 @@ Templates: 2: Rock Template@45: Id: 45 - Image: s33 + Image: s33.sno Size: 2,2 Category: Cliffs Tiles: @@ -572,7 +628,7 @@ Templates: 3: Rock Template@46: Id: 46 - Image: s34 + Image: s34.sno Size: 2,2 Category: Cliffs Tiles: @@ -582,7 +638,7 @@ Templates: 3: Rock Template@47: Id: 47 - Image: s35 + Image: s35.sno Size: 2,2 Category: Cliffs Tiles: @@ -592,7 +648,7 @@ Templates: 3: Rock Template@48: Id: 48 - Image: s36 + Image: s36.sno Size: 2,2 Category: Cliffs Tiles: @@ -602,7 +658,7 @@ Templates: 3: Rock Template@49: Id: 49 - Image: s37 + Image: s37.sno Size: 2,2 Category: Cliffs Tiles: @@ -612,7 +668,7 @@ Templates: 3: Rock Template@50: Id: 50 - Image: s38 + Image: s38.sno Size: 2,2 Category: Cliffs Tiles: @@ -622,62 +678,94 @@ Templates: 3: Rock Template@51: Id: 51 - Image: sh32 + Image: sh32.sno Size: 3,3 Category: Beach Tiles: 0: Water + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@52: Id: 52 - Image: sh33 + Image: sh33.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: River + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@67: Id: 67 - Image: p01 + Image: p01.sno Size: 1,1 Category: Debris Tiles: 0: Wall Template@68: Id: 68 - Image: p02 + Image: p02.sno Size: 1,1 Category: Debris Tiles: 0: Wall Template@69: Id: 69 - Image: p03 + Image: p03.sno Size: 1,1 + PickAny: True Category: Debris Tiles: 0: Wall + 1: Clear + 2: Clear Template@70: Id: 70 - Image: p04 + Image: p04.sno Size: 1,1 Category: Debris Tiles: 0: Wall Template@73: Id: 73 - Image: p07 + Image: p07.sno Size: 4,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear Template@74: Id: 74 - Image: p08 + Image: p08.sno Size: 3,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@75: Id: 75 - Image: sh16 + Image: sh16.sno Size: 3,2 Category: Beach Tiles: @@ -689,7 +777,7 @@ Templates: 5: River Template@76: Id: 76 - Image: sh17 + Image: sh17.sno Size: 2,2 Category: Beach Tiles: @@ -699,7 +787,7 @@ Templates: 3: Water Template@77: Id: 77 - Image: sh18 + Image: sh18.sno Size: 2,2 Category: Beach Tiles: @@ -709,7 +797,7 @@ Templates: 3: Water Template@79: Id: 79 - Image: p13 + Image: p13.sno Size: 3,2 Category: Debris Tiles: @@ -717,10 +805,11 @@ Templates: 1: Wall 2: Wall 3: Wall + 4: Clear 5: Wall Template@80: Id: 80 - Image: p14 + Image: p14.sno Size: 2,1 Category: Debris Tiles: @@ -728,14 +817,14 @@ Templates: 1: Wall Template@82: Id: 82 - Image: b1 + Image: b1.sno Size: 1,1 Category: Debris Tiles: 0: Rock Template@83: Id: 83 - Image: b2 + Image: b2.sno Size: 2,1 Category: Debris Tiles: @@ -743,7 +832,7 @@ Templates: 1: Rock Template@84: Id: 84 - Image: b3 + Image: b3.sno Size: 3,1 Category: Debris Tiles: @@ -752,90 +841,122 @@ Templates: 2: Rock Template@88: Id: 88 - Image: sh6 + Image: sh6.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@89: Id: 89 - Image: sh7 + Image: sh7.sno Size: 2,2 Category: Beach Tiles: + 0: Clear 1: River 2: River 3: Water Template@90: Id: 90 - Image: sh8 + Image: sh8.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear 5: River + 6: Clear + 7: Clear 8: Water Template@91: Id: 91 - Image: sh9 + Image: sh9.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: River + 8: Clear Template@92: Id: 92 - Image: sh10 + Image: sh10.sno Size: 2,2 Category: Beach Tiles: 0: River + 1: Clear 2: Water 3: River Template@93: Id: 93 - Image: d01 + Image: d01.sno Size: 2,2 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear Template@94: Id: 94 - Image: d02 + Image: d02.sno Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear Template@95: Id: 95 - Image: d03 + Image: d03.sno Size: 1,2 Category: Road Tiles: + 0: Clear + 1: Clear Template@96: Id: 96 - Image: d04 + Image: d04.sno Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@97: Id: 97 - Image: d05 + Image: d05.sno Size: 3,4 Category: Road Tiles: 1: Road + 2: Clear 3: Road 4: Road 6: Road 7: Road + 9: Clear 10: Road Template@98: Id: 98 - Image: d06 + Image: d06.sno Size: 2,3 Category: Road Tiles: @@ -843,38 +964,51 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear Template@99: Id: 99 - Image: d07 + Image: d07.sno Size: 3,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 4: Road + 5: Clear Template@100: Id: 100 - Image: d08 + Image: d08.sno Size: 3,2 Category: Road Tiles: 1: Road + 3: Clear 4: Road + 5: Clear Template@101: Id: 101 - Image: d09 + Image: d09.sno Size: 4,3 Category: Road Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear 4: Road 5: Road 6: Road 7: Road + 10: Clear + 11: Clear Template@102: Id: 102 - Image: d10 + Image: d10.sno Size: 4,2 Category: Road Tiles: + 0: Clear 1: Rock 4: Road 5: Road @@ -882,39 +1016,47 @@ Templates: 7: Road Template@103: Id: 103 - Image: d11 + Image: d11.sno Size: 2,3 Category: Road Tiles: + 1: Clear 2: Road 3: Road + 4: Clear Template@104: Id: 104 - Image: d12 + Image: d12.sno Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@105: Id: 105 - Image: d13 + Image: d13.sno Size: 4,3 Category: Road Tiles: 0: Road 1: Road + 2: Clear + 4: Clear 5: Road 6: Road + 7: Clear 10: Wall 11: Road Template@106: Id: 106 - Image: d14 + Image: d14.sno Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Wall 5: Road 6: Road @@ -922,7 +1064,7 @@ Templates: 8: Road Template@107: Id: 107 - Image: d15 + Image: d15.sno Size: 3,3 Category: Road Tiles: @@ -931,246 +1073,317 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear 6: Road + 7: Clear Template@108: Id: 108 - Image: d16 + Image: d16.sno Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear 4: Road 5: Road 6: Road + 7: Clear 8: Wall Template@109: Id: 109 - Image: d17 + Image: d17.sno Size: 3,2 Category: Road Tiles: 0: Road 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@110: Id: 110 - Image: d18 + Image: d18.sno Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Wall Template@111: Id: 111 - Image: d19 + Image: d19.sno Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: Road + 8: Clear Template@112: Id: 112 - Image: d20 + Image: d20.sno Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Road Template@113: Id: 113 - Image: d21 + Image: d21.sno Size: 3,2 Category: Road Tiles: 0: Rock 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@114: Id: 114 - Image: d22 + Image: d22.sno Size: 3,3 Category: Road Tiles: + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road + 8: Clear Template@115: Id: 115 - Image: d23 + Image: d23.sno Size: 3,3 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@116: Id: 116 - Image: d24 + Image: d24.sno Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@117: Id: 117 - Image: d25 + Image: d25.sno Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@118: Id: 118 - Image: d26 + Image: d26.sno Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@119: Id: 119 - Image: d27 + Image: d27.sno Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@120: Id: 120 - Image: d28 + Image: d28.sno Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@121: Id: 121 - Image: d29 + Image: d29.sno Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@122: Id: 122 - Image: d30 + Image: d30.sno Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear 2: Road Template@123: Id: 123 - Image: d31 + Image: d31.sno Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear 3: Road Template@124: Id: 124 - Image: d32 + Image: d32.sno Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@125: Id: 125 - Image: d33 + Image: d33.sno Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road 3: Road Template@126: Id: 126 - Image: d34 + Image: d34.sno Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road 5: Road 6: Road 7: Road Template@127: Id: 127 - Image: d35 + Image: d35.sno Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@128: Id: 128 - Image: d36 + Image: d36.sno Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@129: Id: 129 - Image: d37 + Image: d37.sno Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@130: Id: 130 - Image: d38 + Image: d38.sno Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@131: Id: 131 - Image: d39 + Image: d39.sno Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@132: Id: 132 - Image: d40 + Image: d40.sno Size: 2,2 Category: Road Tiles: 0: Road 1: Road + 3: Clear Template@133: Id: 133 - Image: d41 + Image: d41.sno Size: 2,2 Category: Road Tiles: 0: Wall 2: Road + 3: Clear Template@134: Id: 134 - Image: d42 + Image: d42.sno Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road + 3: Clear Template@135: Id: 135 - Image: d43 + Image: d43.sno Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@136: Id: 136 - Image: rv01 + Image: rv01.sno Size: 5,4 Category: River Tiles: + 0: Clear 1: Rock 5: Rock 6: River @@ -1183,9 +1396,10 @@ Templates: 13: Rock 14: River 16: Wall + 17: Clear Template@137: Id: 137 - Image: rv02 + Image: rv02.sno Size: 5,3 Category: River Tiles: @@ -1201,26 +1415,35 @@ Templates: 9: River 10: River 11: Rock + 12: Clear Template@138: Id: 138 - Image: rv03 + Image: rv03.sno Size: 4,4 Category: River Tiles: + 0: Clear + 1: Clear 4: River 5: River 6: River + 7: Clear + 8: Clear 9: River 10: River 11: River + 13: Clear + 14: Clear 15: River Template@139: Id: 139 - Image: rv04 + Image: rv04.sno Size: 4,4 Category: River Tiles: 2: Wall + 3: Clear + 5: Clear 6: River 7: River 8: River @@ -1232,12 +1455,14 @@ Templates: 14: Rock Template@140: Id: 140 - Image: rv05 + Image: rv05.sno Size: 3,3 Category: River Tiles: + 0: Clear 1: River 2: River + 3: Clear 4: River 5: River 6: Rock @@ -1245,7 +1470,7 @@ Templates: 8: River Template@141: Id: 141 - Image: rv06 + Image: rv06.sno Size: 3,2 Category: River Tiles: @@ -1254,9 +1479,10 @@ Templates: 2: Rock 3: Rock 4: River + 5: Clear Template@142: Id: 142 - Image: rv07 + Image: rv07.sno Size: 3,2 Category: River Tiles: @@ -1268,7 +1494,7 @@ Templates: 5: River Template@143: Id: 143 - Image: rv08 + Image: rv08.sno Size: 2,2 Category: River Tiles: @@ -1278,36 +1504,41 @@ Templates: 3: River Template@144: Id: 144 - Image: rv09 + Image: rv09.sno Size: 2,2 Category: River Tiles: + 0: Clear + 1: Clear 2: River 3: River Template@145: Id: 145 - Image: rv10 + Image: rv10.sno Size: 2,2 Category: River Tiles: 0: River 1: River + 2: Clear 3: River Template@146: Id: 146 - Image: rv11 + Image: rv11.sno Size: 2,2 Category: River Tiles: 0: River 1: River 2: River + 3: Clear Template@147: Id: 147 - Image: rv12 + Image: rv12.sno Size: 3,4 Category: River Tiles: + 0: Clear 1: River 2: River 3: Rock @@ -1316,14 +1547,17 @@ Templates: 6: River 7: River 8: Rock + 9: Clear 10: River 11: River Template@148: Id: 148 - Image: rv13 + Image: rv13.sno Size: 4,4 Category: River Tiles: + 2: Clear + 3: Clear 4: River 5: River 6: River @@ -1332,49 +1566,58 @@ Templates: 9: Rock 10: River 11: Rock + 12: Clear 13: Rock 14: River 15: Rock Template@161: Id: 161 - Image: ford1 + Image: ford1.sno Size: 3,3 Category: River Tiles: + 0: Clear 1: River + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: River 8: River Template@162: Id: 162 - Image: ford2 + Image: ford2.sno Size: 3,3 Category: River Tiles: + 0: Clear 1: Road 2: River 3: River 4: Road 5: River + 6: Clear 7: Road + 8: Clear Template@163: Id: 163 - Image: falls1 + Image: falls1.sno Size: 3,3 Category: River Tiles: + 0: Clear 1: Rock 2: River 3: River 4: River 5: River + 6: Clear 7: Rock 8: Rock Template@164: Id: 164 - Image: falls2 + Image: falls2.sno Size: 3,2 Category: River Tiles: @@ -1386,10 +1629,11 @@ Templates: 5: River Template@165: Id: 165 - Image: bridge1 + Image: bridge1.sno Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1400,13 +1644,16 @@ Templates: 10: Wall 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@166: Id: 166 - Image: bridge1d + Image: bridge1d.sno Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1417,14 +1664,19 @@ Templates: 10: River 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@167: Id: 167 - Image: bridge2 + Image: bridge2.sno Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Road 7: Wall @@ -1434,16 +1686,24 @@ Templates: 11: Wall 12: Road 13: Wall + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@168: Id: 168 - Image: bridge2d + Image: bridge2d.sno Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Wall 7: River @@ -1453,27 +1713,42 @@ Templates: 11: River 12: River 13: River + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@186: Id: 186 - Image: sh34 + Image: sh34.sno Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: Water + 3: Clear + 4: Clear 5: Water + 6: Clear + 7: Clear 8: Water Template@187: Id: 187 - Image: sh35 + Image: sh35.sno Size: 3,3 Category: Beach Tiles: 0: Water 1: River + 2: Clear 3: Water 4: River + 5: Clear 6: Water + 7: Clear + 8: Clear diff --git a/mods/cnc/tilesets/temperat.yaml b/mods/cnc/tilesets/temperat.yaml index 35ce5ec31d..a8f6362ab3 100644 --- a/mods/cnc/tilesets/temperat.yaml +++ b/mods/cnc/tilesets/temperat.yaml @@ -1,76 +1,71 @@ General: Name: Temperate Id: TEMPERAT - Extensions: .tem, .shp Palette: temperat.pal + Extensions: .tem, .shp WaterPaletteRotationBase: 32 EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 40, 68, 40 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 92, 116, 164 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 88, 116, 116 - TargetTypes: Ground - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 92, 140, 180 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 - TargetTypes: Ground - TerrainType@Tiberium: - Type: Tiberium - AcceptsSmudgeType: Crater, Scorch - Color: 161, 226, 28 TargetTypes: Ground + Color: 255,176,156,120 TerrainType@BlueTiberium: Type: BlueTiberium - AcceptsSmudgeType: Crater, Scorch - Color: 84, 252, 252 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,84,252,252 + TerrainType@Clear: + Type: Clear + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,40,68,40 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,92,140,180 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,88,116,116 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,68,68,60 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tiberium: + Type: Tiberium + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,161,226,28 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,92,116,164 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.tem Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -90,10 +85,10 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.tem Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -112,11 +107,10 @@ Templates: 14: Clear 15: Clear Template@0: - Id: 0 - Image: clear1 + Image: clear1.tem Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -136,14 +130,14 @@ Templates: 15: Clear Template@1: Id: 1 - Image: w1 + Image: w1.tem Size: 1,1 Category: Terrain Tiles: 0: Water Template@2: Id: 2 - Image: w2 + Image: w2.tem Size: 2,2 Category: Terrain Tiles: @@ -153,20 +147,28 @@ Templates: 3: Water Template@3: Id: 3 - Image: sh1 + Image: sh1.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@4: Id: 4 - Image: sh2 + Image: sh2.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River 5: River @@ -175,14 +177,14 @@ Templates: 8: Water Template@5: Id: 5 - Image: sh3 + Image: sh3.tem Size: 1,1 Category: Beach Tiles: 0: River Template@6: Id: 6 - Image: sh4 + Image: sh4.tem Size: 2,1 Category: Beach Tiles: @@ -190,23 +192,29 @@ Templates: 1: River Template@7: Id: 7 - Image: sh5 + Image: sh5.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River + 5: Clear 6: Water 7: Water 8: Water Template@8: Id: 8 - Image: sh11 + Image: sh11.tem Size: 3,3 Category: Beach Tiles: + 0: Clear 1: River 2: Rock + 3: Clear 4: River 5: River 6: Water @@ -214,7 +222,7 @@ Templates: 8: Water Template@9: Id: 9 - Image: sh12 + Image: sh12.tem Size: 3,3 Category: Beach Tiles: @@ -222,11 +230,14 @@ Templates: 1: Water 2: Water 3: Rock + 4: Clear + 5: Clear 6: Tree 7: Tree + 8: Clear Template@10: Id: 10 - Image: sh13 + Image: sh13.tem Size: 3,3 Category: Beach Tiles: @@ -234,12 +245,14 @@ Templates: 1: Water 2: Water 3: Water + 4: Clear 5: Rock + 6: Clear 7: Rock 8: Road Template@11: Id: 11 - Image: sh14 + Image: sh14.tem Size: 3,3 Category: Beach Tiles: @@ -249,10 +262,12 @@ Templates: 3: River 4: River 5: River + 6: Clear + 7: Clear 8: Tree Template@12: Id: 12 - Image: sh15 + Image: sh15.tem Size: 3,3 Category: Beach Tiles: @@ -261,30 +276,34 @@ Templates: 3: River 4: Rock 5: Rock + 6: Clear 7: Tree + 8: Clear Template@13: Id: 13 - Image: s01 + Image: s01.tem Size: 2,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear 3: Rock Template@14: Id: 14 - Image: s02 + Image: s02.tem Size: 2,3 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock 4: Rock 5: Rock Template@15: Id: 15 - Image: s03 + Image: s03.tem Size: 2,2 Category: Cliffs Tiles: @@ -294,7 +313,7 @@ Templates: 3: Rock Template@16: Id: 16 - Image: s04 + Image: s04.tem Size: 2,2 Category: Cliffs Tiles: @@ -304,7 +323,7 @@ Templates: 3: Rock Template@17: Id: 17 - Image: s05 + Image: s05.tem Size: 2,2 Category: Cliffs Tiles: @@ -314,17 +333,18 @@ Templates: 3: Rock Template@18: Id: 18 - Image: s06 + Image: s06.tem Size: 2,3 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock Template@19: Id: 19 - Image: s07 + Image: s07.tem Size: 2,2 Category: Cliffs Tiles: @@ -334,27 +354,29 @@ Templates: 3: Rock Template@20: Id: 20 - Image: s08 + Image: s08.tem Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@21: Id: 21 - Image: s09 + Image: s09.tem Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: Rock 5: Rock Template@22: Id: 22 - Image: s10 + Image: s10.tem Size: 2,2 Category: Cliffs Tiles: @@ -364,7 +386,7 @@ Templates: 3: Rock Template@23: Id: 23 - Image: s11 + Image: s11.tem Size: 2,2 Category: Cliffs Tiles: @@ -374,7 +396,7 @@ Templates: 3: Rock Template@24: Id: 24 - Image: s12 + Image: s12.tem Size: 2,2 Category: Cliffs Tiles: @@ -384,74 +406,89 @@ Templates: 3: Rock Template@25: Id: 25 - Image: s13 + Image: s13.tem Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock + 2: Clear 3: Rock 4: Rock + 5: Clear Template@26: Id: 26 - Image: s14 + Image: s14.tem Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear + 2: Clear Template@27: Id: 27 - Image: s15 + Image: s15.tem Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@28: Id: 28 - Image: s16 + Image: s16.tem Size: 2,3 Category: Cliffs Tiles: + 0: Clear 2: Rock 3: Rock 5: Rock Template@29: Id: 29 - Image: s17 + Image: s17.tem Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@30: Id: 30 - Image: s18 + Image: s18.tem Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@31: Id: 31 - Image: s19 + Image: s19.tem Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@32: Id: 32 - Image: s20 + Image: s20.tem Size: 2,3 Category: Cliffs Tiles: + 1: Clear 2: Rock 3: Rock 4: Rock + 5: Clear Template@33: Id: 33 - Image: s21 + Image: s21.tem Size: 1,2 Category: Cliffs Tiles: @@ -459,7 +496,7 @@ Templates: 1: Rock Template@34: Id: 34 - Image: s22 + Image: s22.tem Size: 2,1 Category: Cliffs Tiles: @@ -467,17 +504,19 @@ Templates: 1: Rock Template@35: Id: 35 - Image: s23 + Image: s23.tem Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock + 5: Clear Template@36: Id: 36 - Image: s24 + Image: s24.tem Size: 2,2 Category: Cliffs Tiles: @@ -487,7 +526,7 @@ Templates: 3: Rock Template@37: Id: 37 - Image: s25 + Image: s25.tem Size: 2,2 Category: Cliffs Tiles: @@ -497,7 +536,7 @@ Templates: 3: Rock Template@38: Id: 38 - Image: s26 + Image: s26.tem Size: 2,2 Category: Cliffs Tiles: @@ -507,17 +546,19 @@ Templates: 3: Rock Template@39: Id: 39 - Image: s27 + Image: s27.tem Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear 4: Rock 5: Rock Template@40: Id: 40 - Image: s28 + Image: s28.tem Size: 2,2 Category: Cliffs Tiles: @@ -526,7 +567,7 @@ Templates: 3: Rock Template@41: Id: 41 - Image: s29 + Image: s29.tem Size: 2,2 Category: Cliffs Tiles: @@ -536,24 +577,27 @@ Templates: 3: Rock Template@42: Id: 42 - Image: s30 + Image: s30.tem Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@43: Id: 43 - Image: s31 + Image: s31.tem Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@44: Id: 44 - Image: s32 + Image: s32.tem Size: 2,2 Category: Cliffs Tiles: @@ -562,7 +606,7 @@ Templates: 2: Rock Template@45: Id: 45 - Image: s33 + Image: s33.tem Size: 2,2 Category: Cliffs Tiles: @@ -572,7 +616,7 @@ Templates: 3: Rock Template@46: Id: 46 - Image: s34 + Image: s34.tem Size: 2,2 Category: Cliffs Tiles: @@ -582,7 +626,7 @@ Templates: 3: Rock Template@47: Id: 47 - Image: s35 + Image: s35.tem Size: 2,2 Category: Cliffs Tiles: @@ -592,7 +636,7 @@ Templates: 3: Rock Template@48: Id: 48 - Image: s36 + Image: s36.tem Size: 2,2 Category: Cliffs Tiles: @@ -602,7 +646,7 @@ Templates: 3: Rock Template@49: Id: 49 - Image: s37 + Image: s37.tem Size: 2,2 Category: Cliffs Tiles: @@ -612,7 +656,7 @@ Templates: 3: Rock Template@50: Id: 50 - Image: s38 + Image: s38.tem Size: 2,2 Category: Cliffs Tiles: @@ -622,62 +666,297 @@ Templates: 3: Rock Template@51: Id: 51 - Image: sh32 + Image: sh32.tem Size: 3,3 Category: Beach Tiles: 0: Water + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@52: Id: 52 - Image: sh33 + Image: sh33.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: River + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@67: Id: 67 - Image: p01 + Image: p01.tem Size: 1,1 Category: Debris Tiles: 0: Wall Template@68: Id: 68 - Image: p02 + Image: p02.tem Size: 1,1 Category: Debris Tiles: 0: Wall Template@69: Id: 69 - Image: p03 + Image: p03.tem Size: 1,1 + PickAny: True Category: Debris Tiles: 0: Wall + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear + 13: Clear + 14: Clear + 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear + 20: Clear + 21: Clear + 22: Clear + 23: Clear + 24: Clear + 25: Clear + 26: Clear + 27: Clear + 28: Clear + 29: Clear + 30: Clear + 31: Clear + 32: Clear + 33: Clear + 34: Clear + 35: Clear + 36: Clear + 37: Clear + 38: Clear + 39: Clear + 40: Clear + 41: Clear + 42: Clear + 43: Clear + 44: Clear + 45: Clear + 46: Clear + 47: Clear + 48: Clear + 49: Clear + 50: Clear + 51: Clear + 52: Clear + 53: Clear + 54: Clear + 55: Clear + 56: Clear + 57: Clear + 58: Clear + 59: Clear + 60: Clear + 61: Clear + 62: Clear + 63: Clear + 64: Clear + 65: Clear + 66: Clear + 67: Clear + 68: Clear + 69: Clear + 70: Clear + 71: Clear + 72: Clear + 73: Clear + 74: Clear + 75: Clear + 76: Clear + 77: Clear + 78: Clear + 79: Clear + 80: Clear + 81: Clear + 82: Clear + 83: Clear + 84: Clear + 85: Clear + 86: Clear + 87: Clear + 88: Clear + 89: Clear + 90: Clear + 91: Clear + 92: Clear + 93: Clear + 94: Clear + 95: Clear + 96: Clear + 97: Clear + 98: Clear + 99: Clear + 100: Clear + 101: Clear + 102: Clear Template@70: Id: 70 - Image: p04 + Image: p04.tem Size: 1,1 + PickAny: True Category: Debris Tiles: 0: Wall + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear + 10: Clear + 11: Clear + 12: Clear + 13: Clear + 14: Clear + 15: Clear + 16: Clear + 17: Clear + 18: Clear + 19: Clear + 20: Clear + 21: Clear + 22: Clear + 23: Clear + 24: Clear + 25: Clear + 26: Clear + 27: Clear + 28: Clear + 29: Clear + 30: Clear + 31: Clear + 32: Clear + 33: Clear + 34: Clear + 35: Clear + 36: Clear + 37: Clear + 38: Clear + 39: Clear + 40: Clear + 41: Clear + 42: Clear + 43: Clear + 44: Clear + 45: Clear + 46: Clear + 47: Clear + 48: Clear + 49: Clear + 50: Clear + 51: Clear + 52: Clear + 53: Clear + 54: Clear + 55: Clear + 56: Clear + 57: Clear + 58: Clear + 59: Clear + 60: Clear + 61: Clear + 62: Clear + 63: Clear + 64: Clear + 65: Clear + 66: Clear + 67: Clear + 68: Clear + 69: Clear + 70: Clear + 71: Clear + 72: Clear + 73: Clear + 74: Clear + 75: Clear + 76: Clear + 77: Clear + 78: Clear + 79: Clear + 80: Clear + 81: Clear + 82: Clear + 83: Clear + 84: Clear + 85: Clear + 86: Clear + 87: Clear + 88: Clear + 89: Clear + 90: Clear + 91: Clear + 92: Clear + 93: Clear + 94: Clear + 95: Clear + 96: Clear + 97: Clear + 98: Clear + 99: Clear + 100: Clear + 101: Clear + 102: Clear Template@73: Id: 73 - Image: p07 + Image: p07.tem Size: 4,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear Template@74: Id: 74 - Image: p08 + Image: p08.tem Size: 3,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@75: Id: 75 - Image: sh16 + Image: sh16.tem Size: 3,2 Category: Beach Tiles: @@ -689,7 +968,7 @@ Templates: 5: River Template@76: Id: 76 - Image: sh17 + Image: sh17.tem Size: 2,2 Category: Beach Tiles: @@ -699,7 +978,7 @@ Templates: 3: Water Template@77: Id: 77 - Image: sh18 + Image: sh18.tem Size: 2,2 Category: Beach Tiles: @@ -709,7 +988,7 @@ Templates: 3: Water Template@79: Id: 79 - Image: p13 + Image: p13.tem Size: 3,2 Category: Debris Tiles: @@ -717,10 +996,11 @@ Templates: 1: Wall 2: Wall 3: Wall + 4: Clear 5: Wall Template@80: Id: 80 - Image: p14 + Image: p14.tem Size: 2,1 Category: Debris Tiles: @@ -728,14 +1008,14 @@ Templates: 1: Wall Template@82: Id: 82 - Image: b1 + Image: b1.tem Size: 1,1 Category: Debris Tiles: 0: Rock Template@83: Id: 83 - Image: b2 + Image: b2.tem Size: 2,1 Category: Debris Tiles: @@ -743,98 +1023,131 @@ Templates: 1: Rock Template@84: Id: 84 - Image: b3 + Image: b3.tem Size: 3,1 Category: Debris Tiles: 0: Rock 1: Rock + 2: Clear Template@88: Id: 88 - Image: sh6 + Image: sh6.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@89: Id: 89 - Image: sh7 + Image: sh7.tem Size: 2,2 Category: Beach Tiles: + 0: Clear 1: River 2: River 3: Water Template@90: Id: 90 - Image: sh8 + Image: sh8.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear 5: River + 6: Clear + 7: Clear 8: Water Template@91: Id: 91 - Image: sh9 + Image: sh9.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: River + 8: Clear Template@92: Id: 92 - Image: sh10 + Image: sh10.tem Size: 2,2 Category: Beach Tiles: 0: River + 1: Clear 2: Water 3: River Template@93: Id: 93 - Image: d01 + Image: d01.tem Size: 2,2 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear Template@94: Id: 94 - Image: d02 + Image: d02.tem Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear Template@95: Id: 95 - Image: d03 + Image: d03.tem Size: 1,2 Category: Road Tiles: + 0: Clear + 1: Clear Template@96: Id: 96 - Image: d04 + Image: d04.tem Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@97: Id: 97 - Image: d05 + Image: d05.tem Size: 3,4 Category: Road Tiles: 1: Road + 2: Clear 3: Road 4: Road 6: Road 7: Road + 9: Clear 10: Road Template@98: Id: 98 - Image: d06 + Image: d06.tem Size: 2,3 Category: Road Tiles: @@ -842,38 +1155,51 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear Template@99: Id: 99 - Image: d07 + Image: d07.tem Size: 3,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 4: Road + 5: Clear Template@100: Id: 100 - Image: d08 + Image: d08.tem Size: 3,2 Category: Road Tiles: 1: Road + 3: Clear 4: Road + 5: Clear Template@101: Id: 101 - Image: d09 + Image: d09.tem Size: 4,3 Category: Road Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear 4: Road 5: Road 6: Road 7: Road + 10: Clear + 11: Clear Template@102: Id: 102 - Image: d10 + Image: d10.tem Size: 4,2 Category: Road Tiles: + 0: Clear 1: Rock 4: Road 5: Road @@ -881,39 +1207,47 @@ Templates: 7: Road Template@103: Id: 103 - Image: d11 + Image: d11.tem Size: 2,3 Category: Road Tiles: + 1: Clear 2: Road 3: Road + 4: Clear Template@104: Id: 104 - Image: d12 + Image: d12.tem Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@105: Id: 105 - Image: d13 + Image: d13.tem Size: 4,3 Category: Road Tiles: 0: Road 1: Road + 2: Clear + 4: Clear 5: Road 6: Road + 7: Clear 10: Wall 11: Road Template@106: Id: 106 - Image: d14 + Image: d14.tem Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Wall 5: Road 6: Road @@ -921,7 +1255,7 @@ Templates: 8: Road Template@107: Id: 107 - Image: d15 + Image: d15.tem Size: 3,3 Category: Road Tiles: @@ -930,246 +1264,317 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear 6: Road + 7: Clear Template@108: Id: 108 - Image: d16 + Image: d16.tem Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear 4: Road 5: Road 6: Road + 7: Clear 8: Wall Template@109: Id: 109 - Image: d17 + Image: d17.tem Size: 3,2 Category: Road Tiles: 0: Road 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@110: Id: 110 - Image: d18 + Image: d18.tem Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Wall Template@111: Id: 111 - Image: d19 + Image: d19.tem Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: Road + 8: Clear Template@112: Id: 112 - Image: d20 + Image: d20.tem Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Road Template@113: Id: 113 - Image: d21 + Image: d21.tem Size: 3,2 Category: Road Tiles: 0: Rock 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@114: Id: 114 - Image: d22 + Image: d22.tem Size: 3,3 Category: Road Tiles: + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road + 8: Clear Template@115: Id: 115 - Image: d23 + Image: d23.tem Size: 3,3 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@116: Id: 116 - Image: d24 + Image: d24.tem Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@117: Id: 117 - Image: d25 + Image: d25.tem Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@118: Id: 118 - Image: d26 + Image: d26.tem Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@119: Id: 119 - Image: d27 + Image: d27.tem Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@120: Id: 120 - Image: d28 + Image: d28.tem Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@121: Id: 121 - Image: d29 + Image: d29.tem Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@122: Id: 122 - Image: d30 + Image: d30.tem Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear 2: Road Template@123: Id: 123 - Image: d31 + Image: d31.tem Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear 3: Road Template@124: Id: 124 - Image: d32 + Image: d32.tem Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@125: Id: 125 - Image: d33 + Image: d33.tem Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road 3: Road Template@126: Id: 126 - Image: d34 + Image: d34.tem Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road 5: Road 6: Road 7: Road Template@127: Id: 127 - Image: d35 + Image: d35.tem Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@128: Id: 128 - Image: d36 + Image: d36.tem Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@129: Id: 129 - Image: d37 + Image: d37.tem Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@130: Id: 130 - Image: d38 + Image: d38.tem Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@131: Id: 131 - Image: d39 + Image: d39.tem Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@132: Id: 132 - Image: d40 + Image: d40.tem Size: 2,2 Category: Road Tiles: 0: Road 1: Road + 3: Clear Template@133: Id: 133 - Image: d41 + Image: d41.tem Size: 2,2 Category: Road Tiles: 0: Wall 2: Road + 3: Clear Template@134: Id: 134 - Image: d42 + Image: d42.tem Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road + 3: Clear Template@135: Id: 135 - Image: d43 + Image: d43.tem Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@136: Id: 136 - Image: rv01 + Image: rv01.tem Size: 5,4 Category: River Tiles: + 0: Clear 1: Rock 5: Rock 6: River @@ -1182,9 +1587,10 @@ Templates: 13: Rock 14: River 16: Wall + 17: Clear Template@137: Id: 137 - Image: rv02 + Image: rv02.tem Size: 5,3 Category: River Tiles: @@ -1200,26 +1606,35 @@ Templates: 9: River 10: River 11: Rock + 12: Clear Template@138: Id: 138 - Image: rv03 + Image: rv03.tem Size: 4,4 Category: River Tiles: + 0: Clear + 1: Clear 4: River 5: River 6: River + 7: Clear + 8: Clear 9: River 10: River 11: River + 13: Clear + 14: Clear 15: River Template@139: Id: 139 - Image: rv04 + Image: rv04.tem Size: 4,4 Category: River Tiles: 2: Wall + 3: Clear + 5: Clear 6: River 7: River 8: River @@ -1231,12 +1646,14 @@ Templates: 14: Rock Template@140: Id: 140 - Image: rv05 + Image: rv05.tem Size: 3,3 Category: River Tiles: + 0: Clear 1: River 2: River + 3: Clear 4: River 5: River 6: Rock @@ -1244,7 +1661,7 @@ Templates: 8: River Template@141: Id: 141 - Image: rv06 + Image: rv06.tem Size: 3,2 Category: River Tiles: @@ -1253,9 +1670,10 @@ Templates: 2: Rock 3: Rock 4: River + 5: Clear Template@142: Id: 142 - Image: rv07 + Image: rv07.tem Size: 3,2 Category: River Tiles: @@ -1267,7 +1685,7 @@ Templates: 5: River Template@143: Id: 143 - Image: rv08 + Image: rv08.tem Size: 2,2 Category: River Tiles: @@ -1277,36 +1695,41 @@ Templates: 3: River Template@144: Id: 144 - Image: rv09 + Image: rv09.tem Size: 2,2 Category: River Tiles: + 0: Clear + 1: Clear 2: River 3: River Template@145: Id: 145 - Image: rv10 + Image: rv10.tem Size: 2,2 Category: River Tiles: 0: River 1: River + 2: Clear 3: River Template@146: Id: 146 - Image: rv11 + Image: rv11.tem Size: 2,2 Category: River Tiles: 0: River 1: River 2: River + 3: Clear Template@147: Id: 147 - Image: rv12 + Image: rv12.tem Size: 3,4 Category: River Tiles: + 0: Clear 1: River 2: River 3: Rock @@ -1315,14 +1738,17 @@ Templates: 6: River 7: River 8: Rock + 9: Clear 10: River 11: River Template@148: Id: 148 - Image: rv13 + Image: rv13.tem Size: 4,4 Category: River Tiles: + 2: Clear + 3: Clear 4: River 5: River 6: River @@ -1331,49 +1757,58 @@ Templates: 9: Rock 10: River 11: Rock + 12: Clear 13: Rock 14: River 15: Rock Template@161: Id: 161 - Image: ford1 + Image: ford1.tem Size: 3,3 Category: River Tiles: + 0: Clear 1: River + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: River 8: River Template@162: Id: 162 - Image: ford2 + Image: ford2.tem Size: 3,3 Category: River Tiles: + 0: Clear 1: Road 2: River 3: River 4: Road 5: River + 6: Clear 7: Road + 8: Clear Template@163: Id: 163 - Image: falls1 + Image: falls1.tem Size: 3,3 Category: River Tiles: + 0: Clear 1: Rock 2: River 3: River 4: River 5: River + 6: Clear 7: Rock 8: Rock Template@164: Id: 164 - Image: falls2 + Image: falls2.tem Size: 3,2 Category: River Tiles: @@ -1385,10 +1820,11 @@ Templates: 5: River Template@165: Id: 165 - Image: bridge1 + Image: bridge1.tem Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1399,13 +1835,16 @@ Templates: 10: Wall 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@166: Id: 166 - Image: bridge1d + Image: bridge1d.tem Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1416,14 +1855,19 @@ Templates: 10: River 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@167: Id: 167 - Image: bridge2 + Image: bridge2.tem Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Road 7: Wall @@ -1433,16 +1877,24 @@ Templates: 11: Wall 12: Road 13: Wall + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@168: Id: 168 - Image: bridge2d + Image: bridge2d.tem Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Wall 7: River @@ -1452,40 +1904,55 @@ Templates: 11: River 12: River 13: River + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@186: Id: 186 - Image: sh34 + Image: sh34.tem Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: Water + 3: Clear + 4: Clear 5: Water + 6: Clear + 7: Clear 8: Water Template@187: Id: 187 - Image: sh35 + Image: sh35.tem Size: 3,3 Category: Beach Tiles: 0: Water 1: River + 2: Clear 3: Water 4: River + 5: Clear 6: Water + 7: Clear + 8: Clear Template@188: Id: 188 - Image: a10cr + Image: a10cr.tem Size: 4,2 Category: Debris Tiles: 1: Tree + 2: Tree + 3: Tree + 4: Tree 5: Tree 6: Tree 7: Tree - 3: Tree - 2: Tree - 4: Tree diff --git a/mods/cnc/tilesets/winter.yaml b/mods/cnc/tilesets/winter.yaml index df5cbe3095..afb0de37aa 100644 --- a/mods/cnc/tilesets/winter.yaml +++ b/mods/cnc/tilesets/winter.yaml @@ -1,76 +1,71 @@ General: Name: Winter Id: WINTER - Extensions: .win, .shp, .tem Palette: winter.pal + Extensions: .win, .shp, .tem WaterPaletteRotationBase: 32 EditorTemplateOrder: Terrain, Debris, Road, Cliffs, Beach, River, Bridge Terrain: - TerrainType@Clear: - Type: Clear - AcceptsSmudgeType: Crater, Scorch - Color: 40, 68, 40 - TargetTypes: Ground - TerrainType@Water: - Type: Water - IsWater: true - AcceptsSmudgeType: - Color: 92, 116, 164 - TargetTypes: Water - TerrainType@Road: - Type: Road - AcceptsSmudgeType: Crater, Scorch - Color: 88, 116, 116 - TargetTypes: Ground - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Tree: - Type: Tree - AcceptsSmudgeType: - Color: 28, 32, 36 - TargetTypes: Ground - TerrainType@River: - Type: River - AcceptsSmudgeType: - Color: 92, 140, 180 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: Crater, Scorch - Color: 68, 68, 60 - TargetTypes: Ground - TerrainType@Wall: - Type: Wall - AcceptsSmudgeType: Crater, Scorch - Color: 208, 192, 160 - TargetTypes: Ground TerrainType@Beach: Type: Beach - AcceptsSmudgeType: - Color: 176, 156, 120 - TargetTypes: Ground - TerrainType@Tiberium: - Type: Tiberium - AcceptsSmudgeType: Crater, Scorch - Color: 161, 226, 28 TargetTypes: Ground + Color: 255,176,156,120 TerrainType@BlueTiberium: Type: BlueTiberium - AcceptsSmudgeType: Crater, Scorch - Color: 84, 252, 252 TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,84,252,252 + TerrainType@Clear: + Type: Clear + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,40,68,40 + TerrainType@River: + Type: River + TargetTypes: Ground + Color: 255,92,140,180 + TerrainType@Road: + Type: Road + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,88,116,116 + TerrainType@Rock: + Type: Rock + TargetTypes: Ground + Color: 255,68,68,60 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,68,68,60 + TerrainType@Tiberium: + Type: Tiberium + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,161,226,28 + TerrainType@Tree: + Type: Tree + TargetTypes: Ground + Color: 255,28,32,36 + TerrainType@Wall: + Type: Wall + TargetTypes: Ground + AcceptsSmudgeType: Crater, Scorch + Color: 255,208,192,160 + TerrainType@Water: + Type: Water + TargetTypes: Water + IsWater: True + Color: 255,92,116,164 Templates: Template@255: Id: 255 - Image: clear1 + Image: clear1.win Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -90,10 +85,10 @@ Templates: 15: Clear Template@65535: Id: 65535 - Image: clear1 + Image: clear1.win Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -112,11 +107,10 @@ Templates: 14: Clear 15: Clear Template@0: - Id: 0 - Image: clear1 + Image: clear1.win Size: 1,1 - Category: Terrain PickAny: True + Category: Terrain Tiles: 0: Clear 1: Clear @@ -136,14 +130,14 @@ Templates: 15: Clear Template@1: Id: 1 - Image: w1 + Image: w1.win Size: 1,1 Category: Terrain Tiles: 0: Water Template@2: Id: 2 - Image: w2 + Image: w2.win Size: 2,2 Category: Terrain Tiles: @@ -153,20 +147,28 @@ Templates: 3: Water Template@3: Id: 3 - Image: sh1 + Image: sh1.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@4: Id: 4 - Image: sh2 + Image: sh2.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River 5: River @@ -175,14 +177,14 @@ Templates: 8: Water Template@5: Id: 5 - Image: sh3 + Image: sh3.win Size: 1,1 Category: Beach Tiles: 0: River Template@6: Id: 6 - Image: sh4 + Image: sh4.win Size: 2,1 Category: Beach Tiles: @@ -190,23 +192,29 @@ Templates: 1: River Template@7: Id: 7 - Image: sh5 + Image: sh5.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River 4: River + 5: Clear 6: Water 7: Water 8: Water Template@8: Id: 8 - Image: sh11 + Image: sh11.win Size: 3,3 Category: Beach Tiles: + 0: Clear 1: River 2: Rock + 3: Clear 4: River 5: River 6: Water @@ -214,7 +222,7 @@ Templates: 8: Water Template@9: Id: 9 - Image: sh12 + Image: sh12.win Size: 3,3 Category: Beach Tiles: @@ -222,11 +230,14 @@ Templates: 1: Water 2: Water 3: Rock + 4: Clear + 5: Clear 6: Tree 7: Tree + 8: Clear Template@10: Id: 10 - Image: sh13 + Image: sh13.win Size: 3,3 Category: Beach Tiles: @@ -234,12 +245,14 @@ Templates: 1: Water 2: Water 3: Water + 4: Clear 5: Rock + 6: Clear 7: Rock 8: Road Template@11: Id: 11 - Image: sh14 + Image: sh14.win Size: 3,3 Category: Beach Tiles: @@ -249,10 +262,12 @@ Templates: 3: River 4: River 5: River + 6: Clear + 7: Clear 8: Tree Template@12: Id: 12 - Image: sh15 + Image: sh15.win Size: 3,3 Category: Beach Tiles: @@ -261,30 +276,34 @@ Templates: 3: River 4: Rock 5: Rock + 6: Clear 7: Tree + 8: Clear Template@13: Id: 13 - Image: s01 + Image: s01.win Size: 2,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear 3: Rock Template@14: Id: 14 - Image: s02 + Image: s02.win Size: 2,3 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock 4: Rock 5: Rock Template@15: Id: 15 - Image: s03 + Image: s03.win Size: 2,2 Category: Cliffs Tiles: @@ -294,7 +313,7 @@ Templates: 3: Rock Template@16: Id: 16 - Image: s04 + Image: s04.win Size: 2,2 Category: Cliffs Tiles: @@ -304,7 +323,7 @@ Templates: 3: Rock Template@17: Id: 17 - Image: s05 + Image: s05.win Size: 2,2 Category: Cliffs Tiles: @@ -314,17 +333,18 @@ Templates: 3: Rock Template@18: Id: 18 - Image: s06 + Image: s06.win Size: 2,3 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock Template@19: Id: 19 - Image: s07 + Image: s07.win Size: 2,2 Category: Cliffs Tiles: @@ -334,27 +354,29 @@ Templates: 3: Rock Template@20: Id: 20 - Image: s08 + Image: s08.win Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@21: Id: 21 - Image: s09 + Image: s09.win Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock 2: Rock + 3: Clear 4: Rock 5: Rock Template@22: Id: 22 - Image: s10 + Image: s10.win Size: 2,2 Category: Cliffs Tiles: @@ -364,7 +386,7 @@ Templates: 3: Rock Template@23: Id: 23 - Image: s11 + Image: s11.win Size: 2,2 Category: Cliffs Tiles: @@ -374,7 +396,7 @@ Templates: 3: Rock Template@24: Id: 24 - Image: s12 + Image: s12.win Size: 2,2 Category: Cliffs Tiles: @@ -384,74 +406,89 @@ Templates: 3: Rock Template@25: Id: 25 - Image: s13 + Image: s13.win Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock + 2: Clear 3: Rock 4: Rock + 5: Clear Template@26: Id: 26 - Image: s14 + Image: s14.win Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear + 2: Clear Template@27: Id: 27 - Image: s15 + Image: s15.win Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@28: Id: 28 - Image: s16 + Image: s16.win Size: 2,3 Category: Cliffs Tiles: + 0: Clear 2: Rock 3: Rock 5: Rock Template@29: Id: 29 - Image: s17 + Image: s17.win Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@30: Id: 30 - Image: s18 + Image: s18.win Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@31: Id: 31 - Image: s19 + Image: s19.win Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@32: Id: 32 - Image: s20 + Image: s20.win Size: 2,3 Category: Cliffs Tiles: + 1: Clear 2: Rock 3: Rock 4: Rock + 5: Clear Template@33: Id: 33 - Image: s21 + Image: s21.win Size: 1,2 Category: Cliffs Tiles: @@ -459,7 +496,7 @@ Templates: 1: Rock Template@34: Id: 34 - Image: s22 + Image: s22.win Size: 2,1 Category: Cliffs Tiles: @@ -467,17 +504,19 @@ Templates: 1: Rock Template@35: Id: 35 - Image: s23 + Image: s23.win Size: 3,2 Category: Cliffs Tiles: + 0: Clear 1: Rock 2: Rock 3: Rock 4: Rock + 5: Clear Template@36: Id: 36 - Image: s24 + Image: s24.win Size: 2,2 Category: Cliffs Tiles: @@ -487,7 +526,7 @@ Templates: 3: Rock Template@37: Id: 37 - Image: s25 + Image: s25.win Size: 2,2 Category: Cliffs Tiles: @@ -497,7 +536,7 @@ Templates: 3: Rock Template@38: Id: 38 - Image: s26 + Image: s26.win Size: 2,2 Category: Cliffs Tiles: @@ -507,17 +546,19 @@ Templates: 3: Rock Template@39: Id: 39 - Image: s27 + Image: s27.win Size: 3,2 Category: Cliffs Tiles: 0: Rock 1: Rock + 2: Clear + 3: Clear 4: Rock 5: Rock Template@40: Id: 40 - Image: s28 + Image: s28.win Size: 2,2 Category: Cliffs Tiles: @@ -526,7 +567,7 @@ Templates: 3: Rock Template@41: Id: 41 - Image: s29 + Image: s29.win Size: 2,2 Category: Cliffs Tiles: @@ -536,24 +577,27 @@ Templates: 3: Rock Template@42: Id: 42 - Image: s30 + Image: s30.win Size: 2,2 Category: Cliffs Tiles: 0: Rock + 1: Clear 2: Rock 3: Rock Template@43: Id: 43 - Image: s31 + Image: s31.win Size: 2,2 Category: Cliffs Tiles: + 0: Clear + 1: Clear 2: Rock 3: Rock Template@44: Id: 44 - Image: s32 + Image: s32.win Size: 2,2 Category: Cliffs Tiles: @@ -562,7 +606,7 @@ Templates: 2: Rock Template@45: Id: 45 - Image: s33 + Image: s33.win Size: 2,2 Category: Cliffs Tiles: @@ -572,7 +616,7 @@ Templates: 3: Rock Template@46: Id: 46 - Image: s34 + Image: s34.win Size: 2,2 Category: Cliffs Tiles: @@ -582,7 +626,7 @@ Templates: 3: Rock Template@47: Id: 47 - Image: s35 + Image: s35.win Size: 2,2 Category: Cliffs Tiles: @@ -592,7 +636,7 @@ Templates: 3: Rock Template@48: Id: 48 - Image: s36 + Image: s36.win Size: 2,2 Category: Cliffs Tiles: @@ -602,7 +646,7 @@ Templates: 3: Rock Template@49: Id: 49 - Image: s37 + Image: s37.win Size: 2,2 Category: Cliffs Tiles: @@ -612,7 +656,7 @@ Templates: 3: Rock Template@50: Id: 50 - Image: s38 + Image: s38.win Size: 2,2 Category: Cliffs Tiles: @@ -622,34 +666,63 @@ Templates: 3: Rock Template@51: Id: 51 - Image: sh32 + Image: sh32.win Size: 3,3 Category: Beach Tiles: 0: Water + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@52: Id: 52 - Image: sh33 + Image: sh33.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: River + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear Template@73: Id: 73 - Image: p07 + Image: p07.win Size: 4,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear Template@74: Id: 74 - Image: p08 + Image: p08.win Size: 3,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@75: Id: 75 - Image: sh16 + Image: sh16.win Size: 3,2 Category: Beach Tiles: @@ -661,7 +734,7 @@ Templates: 5: River Template@76: Id: 76 - Image: sh17 + Image: sh17.win Size: 2,2 Category: Beach Tiles: @@ -671,7 +744,7 @@ Templates: 3: Water Template@77: Id: 77 - Image: sh18 + Image: sh18.win Size: 2,2 Category: Beach Tiles: @@ -681,7 +754,7 @@ Templates: 3: Water Template@79: Id: 79 - Image: p13 + Image: p13.win Size: 3,2 Category: Debris Tiles: @@ -689,10 +762,11 @@ Templates: 1: Wall 2: Wall 3: Wall + 4: Clear 5: Wall Template@80: Id: 80 - Image: p14 + Image: p14.win Size: 2,1 Category: Debris Tiles: @@ -700,20 +774,26 @@ Templates: 1: Wall Template@81: Id: 81 - Image: p15 + Image: p15.win Size: 4,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear Template@82: Id: 82 - Image: b1 + Image: b1.win Size: 1,1 Category: Debris Tiles: 0: Rock Template@83: Id: 83 - Image: b2 + Image: b2.win Size: 2,1 Category: Debris Tiles: @@ -721,98 +801,131 @@ Templates: 1: Rock Template@84: Id: 84 - Image: b3 + Image: b3.win Size: 3,1 Category: Debris Tiles: 0: Rock 1: Rock + 2: Clear Template@88: Id: 88 - Image: sh6 + Image: sh6.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear + 5: Clear 6: Water 7: Water 8: Water Template@89: Id: 89 - Image: sh7 + Image: sh7.win Size: 2,2 Category: Beach Tiles: + 0: Clear 1: River 2: River 3: Water Template@90: Id: 90 - Image: sh8 + Image: sh8.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 4: Clear 5: River + 6: Clear + 7: Clear 8: Water Template@91: Id: 91 - Image: sh9 + Image: sh9.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear + 2: Clear 3: River + 4: Clear + 5: Clear 6: Water 7: River + 8: Clear Template@92: Id: 92 - Image: sh10 + Image: sh10.win Size: 2,2 Category: Beach Tiles: 0: River + 1: Clear 2: Water 3: River Template@93: Id: 93 - Image: d01 + Image: d01.win Size: 2,2 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear Template@94: Id: 94 - Image: d02 + Image: d02.win Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear Template@95: Id: 95 - Image: d03 + Image: d03.win Size: 1,2 Category: Road Tiles: + 0: Clear + 1: Clear Template@96: Id: 96 - Image: d04 + Image: d04.win Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@97: Id: 97 - Image: d05 + Image: d05.win Size: 3,4 Category: Road Tiles: 1: Road + 2: Clear 3: Road 4: Road 6: Road 7: Road + 9: Clear 10: Road Template@98: Id: 98 - Image: d06 + Image: d06.win Size: 2,3 Category: Road Tiles: @@ -820,38 +933,51 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear Template@99: Id: 99 - Image: d07 + Image: d07.win Size: 3,2 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 4: Road + 5: Clear Template@100: Id: 100 - Image: d08 + Image: d08.win Size: 3,2 Category: Road Tiles: 1: Road + 3: Clear 4: Road + 5: Clear Template@101: Id: 101 - Image: d09 + Image: d09.win Size: 4,3 Category: Road Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear 4: Road 5: Road 6: Road 7: Road + 10: Clear + 11: Clear Template@102: Id: 102 - Image: d10 + Image: d10.win Size: 4,2 Category: Road Tiles: + 0: Clear 1: Rock 4: Road 5: Road @@ -859,39 +985,47 @@ Templates: 7: Road Template@103: Id: 103 - Image: d11 + Image: d11.win Size: 2,3 Category: Road Tiles: + 1: Clear 2: Road 3: Road + 4: Clear Template@104: Id: 104 - Image: d12 + Image: d12.win Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@105: Id: 105 - Image: d13 + Image: d13.win Size: 4,3 Category: Road Tiles: 0: Road 1: Road + 2: Clear + 4: Clear 5: Road 6: Road + 7: Clear 10: Wall 11: Road Template@106: Id: 106 - Image: d14 + Image: d14.win Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Wall 5: Road 6: Road @@ -899,7 +1033,7 @@ Templates: 8: Road Template@107: Id: 107 - Image: d15 + Image: d15.win Size: 3,3 Category: Road Tiles: @@ -908,246 +1042,317 @@ Templates: 2: Road 3: Road 4: Road + 5: Clear 6: Road + 7: Clear Template@108: Id: 108 - Image: d16 + Image: d16.win Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear + 3: Clear 4: Road 5: Road 6: Road + 7: Clear 8: Wall Template@109: Id: 109 - Image: d17 + Image: d17.win Size: 3,2 Category: Road Tiles: 0: Road 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@110: Id: 110 - Image: d18 + Image: d18.win Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Wall Template@111: Id: 111 - Image: d19 + Image: d19.win Size: 3,3 Category: Road Tiles: + 0: Clear 1: Road + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: Road + 8: Clear Template@112: Id: 112 - Image: d20 + Image: d20.win Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road 8: Road Template@113: Id: 113 - Image: d21 + Image: d21.win Size: 3,2 Category: Road Tiles: 0: Rock 1: Road 2: Road + 3: Clear 4: Road + 5: Clear Template@114: Id: 114 - Image: d22 + Image: d22.win Size: 3,3 Category: Road Tiles: + 1: Clear 3: Road 4: Road + 5: Clear + 6: Clear 7: Road + 8: Clear Template@115: Id: 115 - Image: d23 + Image: d23.win Size: 3,3 Category: Road Tiles: 1: Road + 2: Clear + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@116: Id: 116 - Image: d24 + Image: d24.win Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@117: Id: 117 - Image: d25 + Image: d25.win Size: 3,3 Category: Road Tiles: 0: Road + 1: Clear + 3: Clear 4: Road + 5: Clear + 7: Clear 8: Road Template@118: Id: 118 - Image: d26 + Image: d26.win Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@119: Id: 119 - Image: d27 + Image: d27.win Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear Template@120: Id: 120 - Image: d28 + Image: d28.win Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@121: Id: 121 - Image: d29 + Image: d29.win Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear + 2: Clear Template@122: Id: 122 - Image: d30 + Image: d30.win Size: 2,2 Category: Road Tiles: 0: Road + 1: Clear 2: Road Template@123: Id: 123 - Image: d31 + Image: d31.win Size: 2,2 Category: Road Tiles: + 1: Clear + 2: Clear 3: Road Template@124: Id: 124 - Image: d32 + Image: d32.win Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear Template@125: Id: 125 - Image: d33 + Image: d33.win Size: 2,2 Category: Road Tiles: + 1: Clear 2: Road 3: Road Template@126: Id: 126 - Image: d34 + Image: d34.win Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road 5: Road 6: Road 7: Road Template@127: Id: 127 - Image: d35 + Image: d35.win Size: 3,3 Category: Road Tiles: + 1: Clear 2: Road + 3: Clear 4: Road + 5: Clear 6: Road + 7: Clear Template@128: Id: 128 - Image: d36 + Image: d36.win Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@129: Id: 129 - Image: d37 + Image: d37.win Size: 2,2 Category: Road Tiles: + 0: Clear + 3: Clear Template@130: Id: 130 - Image: d38 + Image: d38.win Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@131: Id: 131 - Image: d39 + Image: d39.win Size: 2,2 Category: Road Tiles: + 0: Clear 1: Road + 3: Clear Template@132: Id: 132 - Image: d40 + Image: d40.win Size: 2,2 Category: Road Tiles: 0: Road 1: Road + 3: Clear Template@133: Id: 133 - Image: d41 + Image: d41.win Size: 2,2 Category: Road Tiles: 0: Wall 2: Road + 3: Clear Template@134: Id: 134 - Image: d42 + Image: d42.win Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road + 3: Clear Template@135: Id: 135 - Image: d43 + Image: d43.win Size: 2,2 Category: Road Tiles: + 0: Clear 2: Road 3: Road Template@136: Id: 136 - Image: rv01 + Image: rv01.win Size: 5,4 Category: River Tiles: + 0: Clear 1: Rock 5: Rock 6: River @@ -1160,9 +1365,10 @@ Templates: 13: Rock 14: River 16: Wall + 17: Clear Template@137: Id: 137 - Image: rv02 + Image: rv02.win Size: 5,3 Category: River Tiles: @@ -1178,26 +1384,35 @@ Templates: 9: River 10: River 11: Rock + 12: Clear Template@138: Id: 138 - Image: rv03 + Image: rv03.win Size: 4,4 Category: River Tiles: + 0: Clear + 1: Clear 4: River 5: River 6: River + 7: Clear + 8: Clear 9: River 10: River 11: River + 13: Clear + 14: Clear 15: River Template@139: Id: 139 - Image: rv04 + Image: rv04.win Size: 4,4 Category: River Tiles: 2: Wall + 3: Clear + 5: Clear 6: River 7: River 8: River @@ -1209,12 +1424,14 @@ Templates: 14: Rock Template@140: Id: 140 - Image: rv05 + Image: rv05.win Size: 3,3 Category: River Tiles: + 0: Clear 1: River 2: River + 3: Clear 4: River 5: River 6: Rock @@ -1222,7 +1439,7 @@ Templates: 8: River Template@141: Id: 141 - Image: rv06 + Image: rv06.win Size: 3,2 Category: River Tiles: @@ -1231,9 +1448,10 @@ Templates: 2: Rock 3: Rock 4: River + 5: Clear Template@142: Id: 142 - Image: rv07 + Image: rv07.win Size: 3,2 Category: River Tiles: @@ -1245,7 +1463,7 @@ Templates: 5: River Template@143: Id: 143 - Image: rv08 + Image: rv08.win Size: 2,2 Category: River Tiles: @@ -1255,36 +1473,41 @@ Templates: 3: River Template@144: Id: 144 - Image: rv09 + Image: rv09.win Size: 2,2 Category: River Tiles: + 0: Clear + 1: Clear 2: River 3: River Template@145: Id: 145 - Image: rv10 + Image: rv10.win Size: 2,2 Category: River Tiles: 0: River 1: River + 2: Clear 3: River Template@146: Id: 146 - Image: rv11 + Image: rv11.win Size: 2,2 Category: River Tiles: 0: River 1: River 2: River + 3: Clear Template@147: Id: 147 - Image: rv12 + Image: rv12.win Size: 3,4 Category: River Tiles: + 0: Clear 1: River 2: River 3: Rock @@ -1293,14 +1516,17 @@ Templates: 6: River 7: River 8: Rock + 9: Clear 10: River 11: River Template@148: Id: 148 - Image: rv13 + Image: rv13.win Size: 4,4 Category: River Tiles: + 2: Clear + 3: Clear 4: River 5: River 6: River @@ -1309,49 +1535,58 @@ Templates: 9: Rock 10: River 11: Rock + 12: Clear 13: Rock 14: River 15: Rock Template@161: Id: 161 - Image: ford1 + Image: ford1.win Size: 3,3 Category: River Tiles: + 0: Clear 1: River + 2: Clear 3: Road 4: Road 5: Road + 6: Clear 7: River 8: River Template@162: Id: 162 - Image: ford2 + Image: ford2.win Size: 3,3 Category: River Tiles: + 0: Clear 1: Road 2: River 3: River 4: Road 5: River + 6: Clear 7: Road + 8: Clear Template@163: Id: 163 - Image: falls1 + Image: falls1.win Size: 3,3 Category: River Tiles: + 0: Clear 1: Rock 2: River 3: River 4: River 5: River + 6: Clear 7: Rock 8: Rock Template@164: Id: 164 - Image: falls2 + Image: falls2.win Size: 3,2 Category: River Tiles: @@ -1363,10 +1598,11 @@ Templates: 5: River Template@165: Id: 165 - Image: bridge1 + Image: bridge1.win Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1377,13 +1613,16 @@ Templates: 10: Wall 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@166: Id: 166 - Image: bridge1d + Image: bridge1d.win Size: 4,4 Category: Bridge Tiles: + 2: Clear 3: Road 4: River 5: Wall @@ -1394,14 +1633,19 @@ Templates: 10: River 11: River 12: Road + 13: Clear + 14: Clear 15: River Template@167: Id: 167 - Image: bridge2 + Image: bridge2.win Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Road 7: Wall @@ -1411,16 +1655,24 @@ Templates: 11: Wall 12: Road 13: Wall + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@168: Id: 168 - Image: bridge2d + Image: bridge2d.win Size: 5,5 Category: Bridge Tiles: 0: Road + 1: Clear + 2: Clear + 4: Clear 5: Wall 6: Wall 7: River @@ -1430,57 +1682,106 @@ Templates: 11: River 12: River 13: River + 14: Clear 15: River + 16: Clear + 17: Clear 18: Road + 19: Clear + 23: Clear 24: Road Template@181: Id: 181 - Image: p16 + Image: p16.win Size: 2,2 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear Template@182: Id: 182 - Image: p17 + Image: p17.win Size: 4,2 Category: Debris Tiles: + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear Template@183: Id: 183 - Image: p18 + Image: p18.win Size: 4,3 Category: Debris Tiles: + 0: Clear + 1: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 10: Clear + 11: Clear Template@184: Id: 184 - Image: p19 + Image: p19.win Size: 6,2 Category: Debris Tiles: + 2: Clear + 3: Clear + 4: Clear + 5: Clear + 6: Clear + 7: Clear + 8: Clear + 9: Clear Template@185: Id: 185 - Image: p20 + Image: p20.win Size: 4,3 Category: Debris Tiles: + 0: Clear + 1: Clear + 2: Clear + 3: Clear + 6: Clear + 7: Clear + 10: Clear + 11: Clear Template@186: Id: 186 - Image: sh34 + Image: sh34.win Size: 3,3 Category: Beach Tiles: + 0: Clear + 1: Clear 2: Water + 3: Clear + 4: Clear 5: Water + 6: Clear + 7: Clear 8: Water Template@187: Id: 187 - Image: sh35 + Image: sh35.win Size: 3,3 Category: Beach Tiles: 0: Water 1: River + 2: Clear 3: Water 4: River + 5: Clear 6: Water + 7: Clear + 8: Clear From 491c851c875f236fa4a3b4f05ad5371d775ef9f8 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Mon, 23 Mar 2015 20:33:13 +0000 Subject: [PATCH 5/7] Fix D2K tileset. --- mods/d2k/tilesets/arrakis.yaml | 3397 +++++++++++++------------------- 1 file changed, 1418 insertions(+), 1979 deletions(-) diff --git a/mods/d2k/tilesets/arrakis.yaml b/mods/d2k/tilesets/arrakis.yaml index e337b518d4..c151d63574 100644 --- a/mods/d2k/tilesets/arrakis.yaml +++ b/mods/d2k/tilesets/arrakis.yaml @@ -5,73 +5,57 @@ General: Palette: d2k.pal Extensions: .R8, .r8, .shp, .tmp EditorTemplateOrder: Basic, Dune, Sand-Detail, Brick, Sand-Cliff, Sand-Smooth, Cliff-Type-Changer, Rock-Sand-Smooth, Rock-Detail, Rock-Cliff, Rock-Cliff-Rock, Rotten-Base, Dead-Worm, Ice, Ice-Detail, Rock-Cliff-Sand, Sand-Platform, Unidentified - IgnoreTileSpriteOffsets: true + IgnoreTileSpriteOffsets: True Terrain: - TerrainType@Clear: # TODO: workaround for the stupid WinForms editor + TerrainType@Clear: Type: Clear - Color: 0, 0, 0 - TargetTypes: Ground - TerrainType@Sand: - Type: Sand - AcceptsSmudgeType: SandCrater - IsWater: False - Color: 255,208,192,160 - TargetTypes: Ground - TerrainType@Transition: - Type: Transition - AcceptsSmudgeType: - IsWater: False - Color: 255,207,166,100 - TargetTypes: Ground - TerrainType@Rock: - Type: Rock - AcceptsSmudgeType: RockCrater - IsWater: False - Color: 255,206,140,66 TargetTypes: Ground + Color: 255,0,0,0 TerrainType@Cliff: Type: Cliff - AcceptsSmudgeType: - IsWater: False + TargetTypes: Ground Color: 255,74,41,16 - TargetTypes: Ground - TerrainType@Rough: - Type: Rough - AcceptsSmudgeType: - IsWater: False - Color: 255,88,116,116 - CustomCursor: move-rough - TargetTypes: Ground TerrainType@Concrete: Type: Concrete - AcceptsSmudgeType: - IsWater: False - Color: 232,196,152 TargetTypes: Ground + Color: 255,232,196,152 TerrainType@Dune: Type: Dune - AcceptsSmudgeType: - IsWater: False + TargetTypes: Ground Color: 255,239,222,140 - TargetTypes: Ground - TerrainType@Spice: - Type: Spice - AcceptsSmudgeType: - IsWater: False - Color: 255,239,148,74 - TargetTypes: Ground TerrainType@Ice: Type: Ice - AcceptsSmudgeType: + TargetTypes: Ground IsWater: True Color: 255,255,255,255 + TerrainType@Rock: + Type: Rock TargetTypes: Ground + AcceptsSmudgeType: RockCrater + Color: 255,206,140,66 + TerrainType@Rough: + Type: Rough + TargetTypes: Ground + Color: 255,88,116,116 + CustomCursor: move-rough + TerrainType@Sand: + Type: Sand + TargetTypes: Ground + AcceptsSmudgeType: SandCrater + Color: 255,208,192,160 + TerrainType@Spice: + Type: Spice + TargetTypes: Ground + Color: 255,239,148,74 + TerrainType@Transition: + Type: Transition + TargetTypes: Ground + Color: 255,207,166,100 Templates: Template@0: - Id: 0 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 0, 8, 9, 48, 49, 50, 51, 52, 68, 69, 70, 71, 72 Size: 1,1 PickAny: True @@ -92,944 +76,861 @@ Templates: 12: Sand Template@1: Id: 1 - Image: BLOXBASE - Frames: 10,11,30,31 + Image: BLOXBASE.R8 + Frames: 10, 11, 30, 31 Size: 2,2 Category: Dune - PickAny: False Tiles: 0: Sand 1: Dune - 3: Dune 2: Dune + 3: Dune Template@2: Id: 2 - Image: BLOXBASE - Frames: 12,13,32,33 + Image: BLOXBASE.R8 + Frames: 12, 13, 32, 33 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: 0: Cliff 1: Transition - 3: Transition 2: Cliff + 3: Transition Template@3: Id: 3 - Image: BLOXBASE - Frames: 14,15,34,35 + Image: BLOXBASE.R8 + Frames: 14, 15, 34, 35 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: 0: Cliff 1: Transition - 3: Transition 2: Cliff + 3: Transition Template@4: Id: 4 - Image: BLOXBASE - Frames: 16,17,36,37 + Image: BLOXBASE.R8 + Frames: 16, 17, 36, 37 Size: 2,2 Category: Dune - PickAny: False Tiles: 0: Sand + 1: Dune 2: Dune 3: Dune - 1: Dune Template@5: Id: 5 - Image: BLOXBASE - Frames: 18,19,38,39 + Image: BLOXBASE.R8 + Frames: 18, 19, 38, 39 Size: 2,2 Category: Dune - PickAny: False Tiles: 0: Dune + 1: Sand 2: Dune 3: Dune - 1: Sand Template@6: Id: 6 - Image: BLOXBASE - Frames: 58,59,78,79 + Image: BLOXBASE.R8 + Frames: 58, 59, 78, 79 Size: 2,2 Category: Dune - PickAny: False Tiles: - 1: Dune - 3: Sand - 2: Dune 0: Dune + 1: Dune + 2: Dune + 3: Sand Template@7: Id: 7 - Image: BLOXBASE - Frames: 56,57,76,77 + Image: BLOXBASE.R8 + Frames: 56, 57, 76, 77 Size: 2,2 Category: Dune - PickAny: False Tiles: - 1: Dune - 3: Dune - 2: Sand 0: Dune + 1: Dune + 2: Sand + 3: Dune Template@8: Id: 8 - Image: BLOXBASE - Frames: 54,55,74,75 + Image: BLOXBASE.R8 + Frames: 54, 55, 74, 75 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@9: Id: 9 - Image: BLOXBASE - Frames: 53,73 + Image: BLOXBASE.R8 + Frames: 53, 73 Size: 1,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Transition 1: Transition Template@10: Id: 10 - Image: BLOXBASE - Frames: 98,99,118,119 + Image: BLOXBASE.R8 + Frames: 98, 99, 118, 119 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@11: Id: 11 - Image: BLOXBASE - Frames: 138,139,158,159 + Image: BLOXBASE.R8 + Frames: 138, 139, 158, 159 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@12: Id: 12 - Image: BLOXBASE - Frames: 136,137,156,157 + Image: BLOXBASE.R8 + Frames: 136, 137, 156, 157 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@13: Id: 13 - Image: BLOXBASE - Frames: 134,135,154,155 + Image: BLOXBASE.R8 + Frames: 134, 135, 154, 155 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@14: Id: 14 - Image: BLOXBASE - Frames: 132,133,152,153 + Image: BLOXBASE.R8 + Frames: 132, 133, 152, 153 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Sand 1: Cliff + 2: Cliff + 3: Cliff Template@15: Id: 15 - Image: BLOXBASE - Frames: 130,131,150,151 + Image: BLOXBASE.R8 + Frames: 130, 131, 150, 151 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Sand - 3: Cliff 2: Cliff + 3: Cliff Template@16: Id: 16 - Image: BLOXBASE - Frames: 128,129,148,149 + Image: BLOXBASE.R8 + Frames: 128, 129, 148, 149 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@17: Id: 17 - Image: BLOXBASE - Frames: 126,127,146,147 + Image: BLOXBASE.R8 + Frames: 126, 127, 146, 147 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Sand - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Sand Template@18: Id: 18 - Image: BLOXBASE - Frames: 124,125,144,145 + Image: BLOXBASE.R8 + Frames: 124, 125, 144, 145 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Sand - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Sand Template@19: Id: 19 - Image: BLOXBASE - Frames: 122,123,142,143 + Image: BLOXBASE.R8 + Frames: 122, 123, 142, 143 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@20: Id: 20 - Image: BLOXBASE - Frames: 120,121,140,141 + Image: BLOXBASE.R8 + Frames: 120, 121, 140, 141 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@21: Id: 21 - Image: BLOXBASE - Frames: 178,179,198,199 + Image: BLOXBASE.R8 + Frames: 178, 179, 198, 199 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition + 1: Transition 2: Transition 3: Transition - 1: Transition Template@22: Id: 22 - Image: BLOXBASE - Frames: 176,177,196,197 + Image: BLOXBASE.R8 + Frames: 176, 177, 196, 197 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Rough - 3: Rough - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough Template@23: Id: 23 - Image: BLOXBASE - Frames: 174,175,194,195 + Image: BLOXBASE.R8 + Frames: 174, 175, 194, 195 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Rough - 3: Rough - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough Template@24: Id: 24 - Image: BLOXBASE - Frames: 172,173,192,193 + Image: BLOXBASE.R8 + Frames: 172, 173, 192, 193 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@25: Id: 25 - Image: BLOXBASE - Frames: 170,171,190,191 + Image: BLOXBASE.R8 + Frames: 170, 171, 190, 191 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@26: Id: 26 - Image: BLOXBASE - Frames: 168,169,188,189 + Image: BLOXBASE.R8 + Frames: 168, 169, 188, 189 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@27: Id: 27 - Image: BLOXBASE - Frames: 166,167,186,187 + Image: BLOXBASE.R8 + Frames: 166, 167, 186, 187 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Rough - 3: Rough - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough Template@28: Id: 28 - Image: BLOXBASE - Frames: 164,165,184,185 + Image: BLOXBASE.R8 + Frames: 164, 165, 184, 185 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: - 1: Rough - 3: Rough - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough Template@29: Id: 29 - Image: BLOXBASE - Frames: 162,163,182,183 + Image: BLOXBASE.R8 + Frames: 162, 163, 182, 183 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Sand - 2: Sand 0: Cliff + 1: Cliff + 2: Sand + 3: Sand Template@30: Id: 30 - Image: BLOXBASE - Frames: 160,161,180,181 + Image: BLOXBASE.R8 + Frames: 160, 161, 180, 181 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Sand - 2: Sand 0: Cliff + 1: Cliff + 2: Sand + 3: Sand Template@31: Id: 31 - Image: BLOXBASE - Frames: 202,203,222,223,242,243 + Image: BLOXBASE.R8 + Frames: 202, 203, 222, 223, 242, 243 Size: 2,3 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff 4: Cliff 5: Cliff Template@32: Id: 32 - Image: BLOXBASE - Frames: 260,261,280,281 + Image: BLOXBASE.R8 + Frames: 260, 261, 280, 281 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: - 1: Transition - 3: Transition - 2: Transition 0: Transition + 1: Transition + 2: Transition + 3: Transition Template@33: Id: 33 - Image: BLOXBASE - Frames: 200,201,220,221,240,241 + Image: BLOXBASE.R8 + Frames: 200, 201, 220, 221, 240, 241 Size: 2,3 Category: Sand-Cliff - PickAny: False Tiles: - 1: Sand - 3: Cliff - 5: Cliff - 4: Cliff - 2: Cliff 0: Cliff + 1: Sand + 2: Cliff + 3: Cliff + 4: Cliff + 5: Cliff Template@34: Id: 34 - Image: BLOXBASE - Frames: 204,205,224,225,244,245 + Image: BLOXBASE.R8 + Frames: 204, 205, 224, 225, 244, 245 Size: 2,3 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Sand 2: Cliff + 3: Cliff 4: Sand 5: Sand - 3: Cliff - 1: Sand Template@35: Id: 35 - Image: BLOXBASE - Frames: 206,207,226,227,246,247 + Image: BLOXBASE.R8 + Frames: 206, 207, 226, 227, 246, 247 Size: 2,3 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Sand 5: Cliff - 3: Cliff - 1: Cliff Template@36: Id: 36 - Image: BLOXBASE - Frames: 262,263,282,283 + Image: BLOXBASE.R8 + Frames: 262, 263, 282, 283 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition + 1: Transition 2: Transition 3: Transition - 1: Transition Template@37: Id: 37 - Image: BLOXBASE - Frames: 264,265,284,285 + Image: BLOXBASE.R8 + Frames: 264, 265, 284, 285 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition + 1: Transition 2: Sand 3: Transition - 1: Transition Template@38: Id: 38 - Image: BLOXBASE - Frames: 85,86,105,106 + Image: BLOXBASE.R8 + Frames: 85, 86, 105, 106 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Sand 2: Cliff + 3: Sand Template@39: Id: 39 - Image: BLOXBASE - Frames: 87,88,107,108 + Image: BLOXBASE.R8 + Frames: 87, 88, 107, 108 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Sand 3: Sand - 1: Cliff Template@40: Id: 40 - Image: BLOXBASE - Frames: 89,90,109,110 + Image: BLOXBASE.R8 + Frames: 89, 90, 109, 110 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Sand + 3: Cliff Template@41: Id: 41 - Image: BLOXBASE - Frames: 91,92,111,112 + Image: BLOXBASE.R8 + Frames: 91, 92, 111, 112 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@42: Id: 42 - Image: BLOXBASE - Frames: 93,94,113,114 + Image: BLOXBASE.R8 + Frames: 93, 94, 113, 114 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@43: Id: 43 - Image: BLOXBASE - Frames: 95,96,115,116 + Image: BLOXBASE.R8 + Frames: 95, 96, 115, 116 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@44: Id: 44 - Image: BLOXBASE - Frames: 218,219,238,239 + Image: BLOXBASE.R8 + Frames: 218, 219, 238, 239 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition + 1: Transition 2: Transition 3: Sand - 1: Transition Template@45: Id: 45 - Image: BLOXBASE - Frames: 258,259,278,279 + Image: BLOXBASE.R8 + Frames: 258, 259, 278, 279 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: - 1: Transition 0: Sand + 1: Transition 2: Transition 3: Transition Template@46: Id: 46 - Image: BLOXBASE - Frames: 256,257,276,277 + Image: BLOXBASE.R8 + Frames: 256, 257, 276, 277 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: - 3: Transition - 2: Transition 0: Transition 1: Transition + 2: Transition + 3: Transition Template@47: Id: 47 - Image: BLOXBASE - Frames: 216,217,236,237 + Image: BLOXBASE.R8 + Frames: 216, 217, 236, 237 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@48: Id: 48 - Image: BLOXBASE - Frames: 214,215,234,235 + Image: BLOXBASE.R8 + Frames: 214, 215, 234, 235 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@49: Id: 49 - Image: BLOXBASE - Frames: 211,212,213,231,232,233 + Image: BLOXBASE.R8 + Frames: 211, 212, 213, 231, 232, 233 Size: 3,2 Category: Sand-Cliff - PickAny: False Tiles: - 2: Cliff - 1: Cliff 0: Sand + 1: Cliff + 2: Cliff 3: Cliff 4: Cliff 5: Cliff Template@50: Id: 50 - Image: BLOXBASE - Frames: 251,252,253,271,272,273 + Image: BLOXBASE.R8 + Frames: 251, 252, 253, 271, 272, 273 Size: 3,2 Category: Sand-Cliff - PickAny: False Tiles: - 2: Cliff - 1: Cliff 0: Sand + 1: Cliff + 2: Cliff 3: Sand 4: Cliff 5: Cliff Template@51: Id: 51 - Image: BLOXBASE - Frames: 248,249,250,268,269,270 + Image: BLOXBASE.R8 + Frames: 248, 249, 250, 268, 269, 270 Size: 3,2 Category: Sand-Cliff - PickAny: False Tiles: - 5: Sand - 4: Cliff - 3: Cliff 0: Cliff 1: Cliff 2: Cliff + 3: Cliff + 4: Cliff + 5: Sand Template@52: Id: 52 - Image: BLOXBASE - Frames: 208,209,210,228,229,230 + Image: BLOXBASE.R8 + Frames: 208, 209, 210, 228, 229, 230 Size: 3,2 Category: Sand-Cliff - PickAny: False Tiles: - 5: Cliff - 4: Cliff - 3: Cliff 0: Cliff 1: Cliff 2: Cliff + 3: Cliff + 4: Cliff + 5: Cliff Template@53: Id: 53 - Image: BLOXBASE - Frames: 266,267,286,287 + Image: BLOXBASE.R8 + Frames: 266, 267, 286, 287 Size: 2,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Sand 1: Transition - 3: Transition 2: Transition + 3: Transition Template@58: Id: 58 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 322 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff Template@59: Id: 59 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 302 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@60: Id: 60 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 288 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Sand Template@61: Id: 61 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 308 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@62: Id: 62 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 328 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@63: Id: 63 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 329 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@64: Id: 64 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 330 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@65: Id: 65 - Image: BLOXBASE - Frames: 289,290,309,310 + Image: BLOXBASE.R8 + Frames: 289, 290, 309, 310 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: - 3: Rough - 2: Rough 0: Rough 1: Rough + 2: Rough + 3: Rough Template@66: Id: 66 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 331 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@67: Id: 67 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 332 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@68: Id: 68 - Image: BLOXBASE - Frames: 298,299 + Image: BLOXBASE.R8 + Frames: 298, 299 Size: 2,1 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff Template@69: Id: 69 - Image: BLOXBASE - Frames: 317,318 + Image: BLOXBASE.R8 + Frames: 317, 318 Size: 2,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition 1: Transition Template@70: Id: 70 - Image: BLOXBASE - Frames: 338,339,358,359 + Image: BLOXBASE.R8 + Frames: 338, 339, 358, 359 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@71: Id: 71 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 337 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@72: Id: 72 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 336 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@73: Id: 73 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 335 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@74: Id: 74 - Image: BLOXBASE - Frames: 313,333 + Image: BLOXBASE.R8 + Frames: 313, 333 Size: 1,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition 1: Transition Template@75: Id: 75 - Image: BLOXBASE - Frames: 314,334 + Image: BLOXBASE.R8 + Frames: 314, 334 Size: 1,2 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition 1: Transition Template@76: Id: 76 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 315 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@77: Id: 77 - Image: BLOXBASE - Frames: 291,292 + Image: BLOXBASE.R8 + Frames: 291, 292 Size: 2,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition 1: Transition Template@78: Id: 78 - Image: BLOXBASE - Frames: 293,294 + Image: BLOXBASE.R8 + Frames: 293, 294 Size: 2,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition 1: Transition Template@79: Id: 79 - Image: BLOXBASE - Frames: 295,296 + Image: BLOXBASE.R8 + Frames: 295, 296 Size: 2,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition 1: Transition Template@80: Id: 80 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 719 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@81: Id: 81 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 718 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@82: Id: 82 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 738 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@83: Id: 83 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 739 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@84: Id: 84 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 737 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@85: Id: 85 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 717 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@86: Id: 86 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 716 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@87: Id: 87 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 736 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@88: Id: 88 - Image: BLOXBASE - Frames: 657,658,659,691 + Image: BLOXBASE.R8 + Frames: 657, 658, 659, 691 Size: 1,1 - Category: Brick PickAny: True + Category: Brick Tiles: 0: Concrete 1: Concrete @@ -1037,1297 +938,1182 @@ Templates: 3: Concrete Template@92: Id: 92 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 685 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@94: Id: 94 - Image: BLOXBASE - Frames: 661,662,681,682 + Image: BLOXBASE.R8 + Frames: 661, 662, 681, 682 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: - 1: Rock - 3: Rough - 2: Rough 0: Rough + 1: Rock + 2: Rough + 3: Rough Template@95: Id: 95 - Image: BLOXBASE - Frames: 660,680 + Image: BLOXBASE.R8 + Frames: 660, 680 Size: 1,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough 1: Rock Template@98: Id: 98 - Image: BLOXBASE - Frames: 619,639 + Image: BLOXBASE.R8 + Frames: 619, 639 Size: 1,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock Template@99: Id: 99 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 538 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@100: Id: 100 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 539 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@101: Id: 101 - Image: BLOXBASE - Frames: 557,558,559,577,578,579,597,598,599 + Image: BLOXBASE.R8 + Frames: 557, 558, 559, 577, 578, 579, 597, 598, 599 Size: 3,3 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough + 2: Rough 3: Rough + 4: Rough + 5: Rough 6: Rough 7: Rough 8: Rough - 5: Rough - 2: Rough - 1: Rough - 4: Rough Template@103: Id: 103 - Image: BLOXBASE - Frames: 652,653,672,673 + Image: BLOXBASE.R8 + Frames: 652, 653, 672, 673 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@104: Id: 104 - Image: BLOXBASE - Frames: 692,693 + Image: BLOXBASE.R8 + Frames: 692, 693 Size: 2,1 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Sand Template@105: Id: 105 - Image: BLOXBASE - Frames: 689,690 + Image: BLOXBASE.R8 + Frames: 689, 690 Size: 2,1 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff Template@106: Id: 106 - Image: BLOXBASE - Frames: 674,694 + Image: BLOXBASE.R8 + Frames: 674, 694 Size: 1,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff Template@107: Id: 107 - Image: BLOXBASE - Frames: 675,695 + Image: BLOXBASE.R8 + Frames: 675, 695 Size: 1,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Sand Template@108: Id: 108 - Image: BLOXBASE - Frames: 677,697 + Image: BLOXBASE.R8 + Frames: 677, 697 Size: 1,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Rock Template@109: Id: 109 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 697 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@110: Id: 110 - Image: BLOXBASE - Frames: 678,679 + Image: BLOXBASE.R8 + Frames: 678, 679 Size: 2,1 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff Template@111: Id: 111 - Image: BLOXBASE - Frames: 698,699 + Image: BLOXBASE.R8 + Frames: 698, 699 Size: 2,1 Category: Sand-Cliff - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@112: Id: 112 - Image: BLOXBASE - Frames: 715,735 + Image: BLOXBASE.R8 + Frames: 715, 735 Size: 1,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@113: Id: 113 - Image: BLOXBASE - Frames: 711,712,713,714,731,732,733,734 + Image: BLOXBASE.R8 + Frames: 711, 712, 713, 714, 731, 732, 733, 734 Size: 4,2 Category: Rock-Detail - PickAny: False Tiles: - 3: Rough - 7: Rough - 6: Rough - 2: Rough - 1: Rock - 5: Rough - 4: Rough 0: Rough + 1: Rock + 2: Rough + 3: Rough + 4: Rough + 5: Rough + 6: Rough + 7: Rough Template@114: Id: 114 - Image: BLOXBASE - Frames: 709,710,729,730 + Image: BLOXBASE.R8 + Frames: 709, 710, 729, 730 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: - 1: Rough - 3: Rough - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough Template@115: Id: 115 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 708 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@116: Id: 116 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 728 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@117: Id: 117 - Image: BLOXBASE - Frames: 706,707,726,727 + Image: BLOXBASE.R8 + Frames: 706, 707, 726, 727 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Sand 2: Rough 3: Rough - 1: Sand Template@118: Id: 118 - Image: BLOXBASE - Frames: 700,701,702,720,721,722 + Image: BLOXBASE.R8 + Frames: 700, 701, 702, 720, 721, 722 Size: 3,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough 2: Rough - 5: Rough - 4: Rough 3: Rough + 4: Rough + 5: Rough Template@119: Id: 119 - Image: BLOXBASE - Frames: 703,704,723,724 + Image: BLOXBASE.R8 + Frames: 703, 704, 723, 724 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@120: Id: 120 - Image: BLOXBASE - Frames: 705,725 + Image: BLOXBASE.R8 + Frames: 705, 725 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@121: Id: 121 - Image: BLOXBASE - Frames: 746,747 + Image: BLOXBASE.R8 + Frames: 746, 747 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@122: Id: 122 - Image: BLOXBASE - Frames: 744,745 + Image: BLOXBASE.R8 + Frames: 744, 745 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@123: Id: 123 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 743 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@124: Id: 124 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 742 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@125: Id: 125 - Image: BLOXBASE - Frames: 740,741 + Image: BLOXBASE.R8 + Frames: 740, 741 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@176: Id: 176 - Image: BLOXBASE - Frames: 600,601,602,620,621,622,640,641,642 + Image: BLOXBASE.R8 + Frames: 600, 601, 602, 620, 621, 622, 640, 641, 642 Size: 3,3 Category: Rock-Cliff - PickAny: False Tiles: 0: Rock 1: Rock 2: Rock - 5: Cliff - 8: Cliff - 7: Rough - 6: Cliff 3: Cliff 4: Rough + 5: Cliff + 6: Cliff + 7: Rough + 8: Cliff Template@177: Id: 177 - Image: BLOXBASE - Frames: 603,604,623,624 + Image: BLOXBASE.R8 + Frames: 603, 604, 623, 624 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@178: Id: 178 - Image: BLOXBASE - Frames: 605,606,625,626 + Image: BLOXBASE.R8 + Frames: 605, 606, 625, 626 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@179: Id: 179 - Image: BLOXBASE - Frames: 564,565,584,585 + Image: BLOXBASE.R8 + Frames: 564, 565, 584, 585 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@180: Id: 180 - Image: BLOXBASE - Frames: 566,567,586,587 + Image: BLOXBASE.R8 + Frames: 566, 567, 586, 587 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@181: Id: 181 - Image: BLOXBASE - Frames: 562,563,582,583 + Image: BLOXBASE.R8 + Frames: 562, 563, 582, 583 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Transition - 2: Rock 0: Cliff + 1: Cliff + 2: Rock + 3: Transition Template@182: Id: 182 - Image: BLOXBASE - Frames: 560,561,580,581 + Image: BLOXBASE.R8 + Frames: 560, 561, 580, 581 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Rock 3: Rock Template@183: Id: 183 - Image: BLOXBASE - Frames: 607,608,627,628 + Image: BLOXBASE.R8 + Frames: 607, 608, 627, 628 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@184: Id: 184 - Image: BLOXBASE - Frames: 609,610,629,630 + Image: BLOXBASE.R8 + Frames: 609, 610, 629, 630 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Cliff + 1: Sand 2: Cliff 3: Cliff - 1: Sand Template@185: Id: 185 - Image: BLOXBASE - Frames: 568,569,588,589 + Image: BLOXBASE.R8 + Frames: 568, 569, 588, 589 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@186: Id: 186 - Image: BLOXBASE - Frames: 570,571,590,591 + Image: BLOXBASE.R8 + Frames: 570, 571, 590, 591 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@187: Id: 187 - Image: BLOXBASE - Frames: 529,530,549,550 + Image: BLOXBASE.R8 + Frames: 529, 530, 549, 550 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Rock - 1: Cliff 0: Cliff + 1: Cliff 2: Rock + 3: Rock Template@188: Id: 188 - Image: BLOXBASE - Frames: 527,528,547,548 + Image: BLOXBASE.R8 + Frames: 527, 528, 547, 548 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Rock - 1: Cliff 0: Cliff + 1: Cliff 2: Rock + 3: Rock Template@189: Id: 189 - Image: BLOXBASE - Frames: 525,526,545,546 + Image: BLOXBASE.R8 + Frames: 525, 526, 545, 546 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Rock - 1: Cliff 0: Cliff + 1: Cliff 2: Rock + 3: Rock Template@190: Id: 190 - Image: BLOXBASE - Frames: 523,524,543,544 + Image: BLOXBASE.R8 + Frames: 523, 524, 543, 544 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Sand - 1: Cliff 0: Cliff + 1: Cliff 2: Sand + 3: Sand Template@191: Id: 191 - Image: BLOXBASE - Frames: 520,521,522,540,541,542 + Image: BLOXBASE.R8 + Frames: 520, 521, 522, 540, 541, 542 Size: 3,2 Category: Rock-Cliff - PickAny: False Tiles: - 5: Cliff - 2: Cliff - 1: Cliff 0: Sand + 1: Cliff + 2: Cliff 3: Cliff 4: Cliff + 5: Cliff Template@192: Id: 192 - Image: BLOXBASE - Frames: 480,481,482,500,501,502 + Image: BLOXBASE.R8 + Frames: 480, 481, 482, 500, 501, 502 Size: 3,2 Category: Rock-Cliff - PickAny: False Tiles: - 2: Cliff - 1: Cliff 0: Cliff + 1: Cliff + 2: Cliff 3: Sand 4: Cliff 5: Cliff Template@193: Id: 193 - Image: BLOXBASE - Frames: 440,441,460,461 + Image: BLOXBASE.R8 + Frames: 440, 441, 460, 461 Size: 2,2 Category: Sand-Smooth - PickAny: False Tiles: - 1: Cliff - 3: Rock - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Rock Template@194: Id: 194 - Image: BLOXBASE - Frames: 402,403,422,423,442,443 + Image: BLOXBASE.R8 + Frames: 402, 403, 422, 423, 442, 443 Size: 2,3 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@195: Id: 195 - Image: BLOXBASE - Frames: 400,401,420,421 + Image: BLOXBASE.R8 + Frames: 400, 401, 420, 421 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@196: Id: 196 - Image: BLOXBASE - Frames: 408,409,428,429 + Image: BLOXBASE.R8 + Frames: 408, 409, 428, 429 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@197: Id: 197 - Image: BLOXBASE - Frames: 410,411,430,431,450,451 + Image: BLOXBASE.R8 + Frames: 410, 411, 430, 431, 450, 451 Size: 2,3 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@198: Id: 198 - Image: BLOXBASE - Frames: 412,413,432,433 + Image: BLOXBASE.R8 + Frames: 412, 413, 432, 433 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Transition 2: Cliff 3: Cliff - 1: Transition Template@199: Id: 199 - Image: BLOXBASE - Frames: 452,453 + Image: BLOXBASE.R8 + Frames: 452, 453 Size: 2,1 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff Template@200: Id: 200 - Image: BLOXBASE - Frames: 454,455,474,475,494,495 + Image: BLOXBASE.R8 + Frames: 454, 455, 474, 475, 494, 495 Size: 2,3 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff - 5: Rock - 4: Rock 2: Cliff + 3: Cliff + 4: Rock + 5: Rock Template@201: Id: 201 - Image: BLOXBASE - Frames: 489,490,509,510 + Image: BLOXBASE.R8 + Frames: 489, 490, 509, 510 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@202: Id: 202 - Image: BLOXBASE - Frames: 448,449,468,469 + Image: BLOXBASE.R8 + Frames: 448, 449, 468, 469 Size: 2,2 Category: Sand-Smooth - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@203: Id: 203 - Image: BLOXBASE - Frames: 487,488,507,508 + Image: BLOXBASE.R8 + Frames: 487, 488, 507, 508 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@204: Id: 204 - Image: BLOXBASE - Frames: 446,447,466,467 + Image: BLOXBASE.R8 + Frames: 446, 447, 466, 467 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@205: Id: 205 - Image: BLOXBASE - Frames: 444,445,464,465 + Image: BLOXBASE.R8 + Frames: 444, 445, 464, 465 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Rock - 3: Rock - 2: Cliff 0: Cliff + 1: Rock + 2: Cliff + 3: Rock Template@206: Id: 206 - Image: BLOXBASE - Frames: 456,457,476,477,496,497 + Image: BLOXBASE.R8 + Frames: 456, 457, 476, 477, 496, 497 Size: 2,3 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 5: Rock - 4: Rock - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff + 4: Rock + 5: Rock Template@207: Id: 207 - Image: BLOXBASE - Frames: 498,499,518,519 + Image: BLOXBASE.R8 + Frames: 498, 499, 518, 519 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Sand 2: Transition + 3: Sand Template@208: Id: 208 - Image: BLOXBASE - Frames: 458,459,478,479 + Image: BLOXBASE.R8 + Frames: 458, 459, 478, 479 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Sand 3: Rock - 1: Cliff Template@209: Id: 209 - Image: BLOXBASE - Frames: 418,419,438,439 + Image: BLOXBASE.R8 + Frames: 418, 419, 438, 439 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@210: Id: 210 - Image: BLOXBASE - Frames: 378,379,398,399 + Image: BLOXBASE.R8 + Frames: 378, 379, 398, 399 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Cliff - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff Template@211: Id: 211 - Image: BLOXBASE - Frames: 416,417,436,437 + Image: BLOXBASE.R8 + Frames: 416, 417, 436, 437 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@212: Id: 212 - Image: BLOXBASE - Frames: 376,377,396,397 + Image: BLOXBASE.R8 + Frames: 376, 377, 396, 397 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Cliff - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff Template@213: Id: 213 - Image: BLOXBASE - Frames: 414,415,434,435 + Image: BLOXBASE.R8 + Frames: 414, 415, 434, 435 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@214: Id: 214 - Image: BLOXBASE - Frames: 354,355,374,375,394,395 + Image: BLOXBASE.R8 + Frames: 354, 355, 374, 375, 394, 395 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: - 4: Rough - 2: Rough 0: Rough 1: Rough + 2: Rough 3: Rough + 4: Rough 5: Rough Template@215: Id: 215 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 356 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@216: Id: 216 - Image: BLOXBASE - Frames: 347,348,367,368,387,388 + Image: BLOXBASE.R8 + Frames: 347, 348, 367, 368, 387, 388 Size: 2,3 Category: Rotten-Base - PickAny: False Tiles: - 1: Sand - 3: Rough - 5: Rough - 4: Rough - 2: Rough 0: Sand + 1: Sand + 2: Rough + 3: Rough + 4: Rough + 5: Rough Template@217: Id: 217 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 386 Size: 1,1 Category: Rotten-Base - PickAny: False Tiles: 0: Rough Template@218: Id: 218 - Image: BLOXBASE - Frames: 345,346,365,366 + Image: BLOXBASE.R8 + Frames: 345, 346, 365, 366 Size: 2,2 Category: Rotten-Base - PickAny: False Tiles: - 1: Rough - 3: Rough - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough Template@219: Id: 219 - Image: BLOXBASE - Frames: 343,344,363,364 + Image: BLOXBASE.R8 + Frames: 343, 344, 363, 364 Size: 2,2 Category: Rotten-Base - PickAny: False Tiles: - 1: Sand - 3: Rough - 2: Rough 0: Sand + 1: Sand + 2: Rough + 3: Rough Template@220: Id: 220 - Image: BLOXBASE - Frames: 340,341,342,360,361,362 + Image: BLOXBASE.R8 + Frames: 340, 341, 342, 360, 361, 362 Size: 3,2 Category: Rotten-Base - PickAny: False Tiles: - 2: Rough - 5: Rough - 4: Rough - 1: Rough 0: Rough + 1: Rough + 2: Rough 3: Rough + 4: Rough + 5: Rough Template@221: Id: 221 - Image: BLOXBASE - Frames: 380,381,382 + Image: BLOXBASE.R8 + Frames: 380, 381, 382 Size: 3,1 Category: Rotten-Base - PickAny: False Tiles: 0: Rough 1: Rough 2: Sand Template@222: Id: 222 - Image: BLOXBASE - Frames: 483,484,503,504 + Image: BLOXBASE.R8 + Frames: 483, 484, 503, 504 Size: 2,2 Category: Sand-Smooth - PickAny: False Tiles: - 1: Transition - 3: Transition - 2: Transition 0: Cliff + 1: Transition + 2: Transition + 3: Transition Template@223: Id: 223 - Image: BLOXBASE - Frames: 485,486,505,506 + Image: BLOXBASE.R8 + Frames: 485, 486, 505, 506 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@224: Id: 224 - Image: BLOXBASE - Frames: 83,84,103,104 + Image: BLOXBASE.R8 + Frames: 83, 84, 103, 104 Size: 2,2 Category: Dune - PickAny: False Tiles: 0: Dune 1: Dune - 3: Dune 2: Dune + 3: Dune Template@225: Id: 225 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 28 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@229: Id: 229 - Image: BLOXBASE - Frames: 26,27,46,47 + Image: BLOXBASE.R8 + Frames: 26, 27, 46, 47 Size: 2,2 Category: Dune - PickAny: False Tiles: - 1: Sand - 3: Dune - 2: Dune 0: Dune + 1: Sand + 2: Dune + 3: Dune Template@230: Id: 230 - Image: BLOXBASE - Frames: 65,66 + Image: BLOXBASE.R8 + Frames: 65, 66 Size: 2,1 Category: Dune - PickAny: False Tiles: - 1: Dune 0: Dune + 1: Dune Template@231: Id: 231 - Image: BLOXBASE - Frames: 63,64 + Image: BLOXBASE.R8 + Frames: 63, 64 Size: 2,1 Category: Dune - PickAny: False Tiles: - 1: Dune 0: Dune + 1: Dune Template@232: Id: 232 - Image: BLOXBASE - Frames: 22,23,42,43 + Image: BLOXBASE.R8 + Frames: 22, 23, 42, 43 Size: 2,2 Category: Dune - PickAny: False Tiles: - 1: Dune - 3: Sand - 2: Dune 0: Dune + 1: Dune + 2: Dune + 3: Sand Template@233: Id: 233 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 60 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@234: Id: 234 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 61 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@235: Id: 235 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 62 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@236: Id: 236 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 82 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@237: Id: 237 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 102 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@238: Id: 238 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 101 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@239: Id: 239 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 100 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@240: Id: 240 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 80 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@241: Id: 241 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 81 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@242: Id: 242 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 21 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@243: Id: 243 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 41 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@244: Id: 244 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 40 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@245: Id: 245 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 20 Size: 1,1 Category: Dune - PickAny: False Tiles: 0: Dune Template@246: Id: 246 - Image: BLOXBASE - Frames: 24,25,44,45 + Image: BLOXBASE.R8 + Frames: 24, 25, 44, 45 Size: 2,2 Category: Dune - PickAny: False Tiles: 0: Dune 1: Dune - 3: Dune 2: Sand + 3: Dune Template@247: Id: 247 - Image: BLOXBASE - Frames: 352,353,372,373 + Image: BLOXBASE.R8 + Frames: 352, 353, 372, 373 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@248: Id: 248 - Image: BLOXBASE - Frames: 392,393 + Image: BLOXBASE.R8 + Frames: 392, 393 Size: 2,1 Category: Rotten-Base - PickAny: False Tiles: - 1: Sand 0: Sand + 1: Sand Template@249: Id: 249 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 390 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@250: Id: 250 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 389 Size: 1,1 Category: Rotten-Base - PickAny: False Tiles: 0: Rough Template@251: Id: 251 - Image: BLOXBASE - Frames: 349,350,369,370 + Image: BLOXBASE.R8 + Frames: 349, 350, 369, 370 Size: 2,2 Category: Rotten-Base - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@252: Id: 252 - Image: BLOXBASE - Frames: 254,255,274,275 + Image: BLOXBASE.R8 + Frames: 254, 255, 274, 275 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Rough 2: Rough + 3: Rough Template@253: Id: 253 - Image: BLOXBASE - Frames: 514,515,534,535 + Image: BLOXBASE.R8 + Frames: 514, 515, 534, 535 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@254: Id: 254 - Image: BLOXBASE - Frames: 516,517,536,537 + Image: BLOXBASE.R8 + Frames: 516, 517, 536, 537 Size: 2,2 Category: Cliff-Type-Changer - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@255: Id: 255 - Image: BLOXBASE - Frames: 404,405,424,425 + Image: BLOXBASE.R8 + Frames: 404, 405, 424, 425 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@256: Id: 256 - Image: BLOXBASE - Frames: 406,407,426,427 + Image: BLOXBASE.R8 + Frames: 406, 407, 426, 427 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: + 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff - 0: Cliff Template@258: Id: 258 - Image: BLOXBASE - Frames: 676,696 + Image: BLOXBASE.R8 + Frames: 676, 696 Size: 1,2 Category: Rock-Cliff - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@259: Id: 259 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 303 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@260: Id: 260 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 304 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@261: Id: 261 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 324 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@262: Id: 262 - Image: BLOXBASE + Image: BLOXBASE.R8 Frames: 323 Size: 1,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: 0: Transition Template@263: Id: 263 - Image: BLOXBASE - Frames: 511,512,513,531,532,533 + Image: BLOXBASE.R8 + Frames: 511, 512, 513, 531, 532, 533 Size: 3,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff 1: Cliff 2: Cliff - 5: Sand - 4: Cliff 3: Cliff + 4: Cliff + 5: Sand Template@264: Id: 264 - Image: BLOXBASE - Frames: 471,472,473,491,492,493 + Image: BLOXBASE.R8 + Frames: 471, 472, 473, 491, 492, 493 Size: 3,2 Category: Rock-Cliff - PickAny: False Tiles: + 0: Cliff + 1: Cliff + 2: Sand 3: Cliff 4: Cliff 5: Cliff - 2: Sand - 1: Cliff - 0: Cliff Template@266: Id: 266 - Image: BLOXBASE - Frames: 306,307,552,553,554,555,556,572,573,574,575,576,592,593,594,595,596 + Image: BLOXBASE.R8 + Frames: 306, 307, 552, 553, 554, 555, 556, 572, 573, 574, 575, 576, 592, 593, 594, 595, 596 Size: 1,1 PickAny: True Category: Basic @@ -2351,1030 +2137,935 @@ Templates: 16: Rock Template@269: Id: 269 - Image: BLOXBASE - Frames: 326,327 + Image: BLOXBASE.R8 + Frames: 326, 327 Size: 2,1 Category: Rock-Sand-Smooth - PickAny: False Tiles: - 1: Transition 0: Transition + 1: Transition Template@271: Id: 271 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 1 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@272: Id: 272 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 2 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@273: Id: 273 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 3 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@274: Id: 274 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 4 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@275: Id: 275 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 5 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@276: Id: 276 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 6 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@277: Id: 277 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 322 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff Template@278: Id: 278 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 165 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@279: Id: 279 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 164 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@280: Id: 280 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 184 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@281: Id: 281 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 305 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@282: Id: 282 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 325 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@283: Id: 283 - Image: BLOXBAT - Frames: 289,290,309,310 + Image: BLOXBAT.R8 + Frames: 289, 290, 309, 310 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@284: Id: 284 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 316 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@285: Id: 285 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 297 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@286: Id: 286 - Image: BLOXBAT - Frames: 338,339,358,359 + Image: BLOXBAT.R8 + Frames: 338, 339, 358, 359 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@287: Id: 287 - Image: BLOXBAT - Frames: 340,341,360,361,380,381 + Image: BLOXBAT.R8 + Frames: 340, 341, 360, 361, 380, 381 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough + 3: Rough 4: Rough 5: Rough - 3: Rough - 1: Rough Template@288: Id: 288 - Image: BLOXBAT - Frames: 342,343,362,363,382,383 + Image: BLOXBAT.R8 + Frames: 342, 343, 362, 363, 382, 383 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough + 3: Rough 4: Rough 5: Rough - 3: Rough - 1: Rough Template@289: Id: 289 - Image: BLOXBAT - Frames: 344,345,364,365,384,385 + Image: BLOXBAT.R8 + Frames: 344, 345, 364, 365, 384, 385 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough + 3: Rough 4: Rough 5: Rough - 3: Rough - 1: Rough Template@290: Id: 290 - Image: BLOXBAT - Frames: 349,350,369,370,389,390 + Image: BLOXBAT.R8 + Frames: 349, 350, 369, 370, 389, 390 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Sand 2: Rough + 3: Rough 4: Rough 5: Rough - 3: Rough - 1: Sand Template@291: Id: 291 - Image: BLOXBAT - Frames: 351,371 + Image: BLOXBAT.R8 + Frames: 351, 371 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@292: Id: 292 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 391 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@293: Id: 293 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 392 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@294: Id: 294 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 393 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@295: Id: 295 - Image: BLOXBAT - Frames: 352,372 + Image: BLOXBAT.R8 + Frames: 352, 372 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: - 1: Sand 0: Sand + 1: Sand Template@296: Id: 296 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 353 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@297: Id: 297 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 354 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@298: Id: 298 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 374 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@299: Id: 299 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 373 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@300: Id: 300 - Image: BLOXBAT - Frames: 394,395,414,415 + Image: BLOXBAT.R8 + Frames: 394, 395, 414, 415 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@301: Id: 301 - Image: BLOXBAT - Frames: 434,435 + Image: BLOXBAT.R8 + Frames: 434, 435 Size: 2,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@302: Id: 302 - Image: BLOXBAT - Frames: 355,375 + Image: BLOXBAT.R8 + Frames: 355, 375 Size: 1,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@303: Id: 303 - Image: BLOXBAT - Frames: 356,357 + Image: BLOXBAT.R8 + Frames: 356, 357 Size: 2,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@304: Id: 304 - Image: BLOXBAT - Frames: 462,463 + Image: BLOXBAT.R8 + Frames: 462, 463 Size: 2,1 Category: Rotten-Base - PickAny: False Tiles: 0: Rough 1: Rough Template@305: Id: 305 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 551 Size: 1,1 Category: Rotten-Base - PickAny: False Tiles: 0: Rough Template@306: Id: 306 - Image: BLOXBAT - Frames: 607,608,627,628 + Image: BLOXBAT.R8 + Frames: 607, 608, 627, 628 Size: 2,2 Category: Rotten-Base - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@307: Id: 307 - Image: BLOXBAT - Frames: 609,610,629,630 + Image: BLOXBAT.R8 + Frames: 609, 610, 629, 630 Size: 2,2 Category: Dead-Worm - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@308: Id: 308 - Image: BLOXBAT - Frames: 652,653,672,673 + Image: BLOXBAT.R8 + Frames: 652, 653, 672, 673 Size: 2,2 Category: Rotten-Base - PickAny: False Tiles: 0: Sand + 1: Rough 2: Rough 3: Rough - 1: Rough Template@309: Id: 309 - Image: BLOXBAT - Frames: 713,714,715,733,734,735 + Image: BLOXBAT.R8 + Frames: 713, 714, 715, 733, 734, 735 Size: 3,2 Category: Rotten-Base - PickAny: False Tiles: 0: Sand + 1: Rough + 2: Rough 3: Rough 4: Rough 5: Sand - 2: Rough - 1: Rough Template@310: Id: 310 - Image: BLOXBAT - Frames: 709,710,711,712,729,730,731,732 + Image: BLOXBAT.R8 + Frames: 709, 710, 711, 712, 729, 730, 731, 732 Size: 4,2 Category: Rotten-Base - PickAny: False Tiles: 0: Rough + 1: Rough + 2: Rough + 3: Sand 4: Rough 5: Rough 6: Rough 7: Transition - 3: Sand - 2: Rough - 1: Rough Template@311: Id: 311 - Image: BLOXBAT - Frames: 661,662,681,682 + Image: BLOXBAT.R8 + Frames: 661, 662, 681, 682 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@312: Id: 312 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 683 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@313: Id: 313 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 684 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@314: Id: 314 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 703 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@315: Id: 315 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 723 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@316: Id: 316 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 722 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@317: Id: 317 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 721 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@318: Id: 318 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 720 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@319: Id: 319 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 700 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@320: Id: 320 - Image: BLOXBAT - Frames: 701,702 + Image: BLOXBAT.R8 + Frames: 701, 702 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@321: Id: 321 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 741 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@322: Id: 322 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 742 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@323: Id: 323 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 743 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@324: Id: 324 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 744 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@325: Id: 325 - Image: BLOXBAT - Frames: 745,746 + Image: BLOXBAT.R8 + Frames: 745, 746 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@326: Id: 326 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 747 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@327: Id: 327 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 728 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@328: Id: 328 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 708 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@329: Id: 329 - Image: BLOXBAT - Frames: 716,717,736,737 + Image: BLOXBAT.R8 + Frames: 716, 717, 736, 737 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@330: Id: 330 - Image: BLOXBAT - Frames: 538,539,558,559 + Image: BLOXBAT.R8 + Frames: 538, 539, 558, 559 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@331: Id: 331 - Image: BLOXBAT - Frames: 578,579,598,599 + Image: BLOXBAT.R8 + Frames: 578, 579, 598, 599 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@332: Id: 332 - Image: BLOXBAT - Frames: 718,719,738,739,758,759 + Image: BLOXBAT.R8 + Frames: 718, 719, 738, 739, 758, 759 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough + 3: Rough 4: Rough 5: Rough - 3: Rough - 1: Rough Template@333: Id: 333 - Image: BLOXBAT - Frames: 704,705,724,725 + Image: BLOXBAT.R8 + Frames: 704, 705, 724, 725 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@334: Id: 334 - Image: BLOXBAT - Frames: 706,707,726,727 + Image: BLOXBAT.R8 + Frames: 706, 707, 726, 727 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@335: Id: 335 - Image: BLOXBAT - Frames: 660,680 + Image: BLOXBAT.R8 + Frames: 660, 680 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@336: Id: 336 - Image: BLOXBAT + Image: BLOXBAT.R8 Frames: 388 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@337: Id: 337 - Image: BLOXBAT - Frames: 346,347,348,366,367,368 + Image: BLOXBAT.R8 + Frames: 346, 347, 348, 366, 367, 368 Size: 3,2 Category: Sand-Detail - PickAny: False Tiles: - 2: Rough - 5: Rough - 4: Rough - 3: Rough 0: Rough 1: Rough + 2: Rough + 3: Rough + 4: Rough + 5: Rough Template@338: Id: 338 - Image: BLOXBAT - Frames: 386,387 + Image: BLOXBAT.R8 + Frames: 386, 387 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@339: Id: 339 - Image: BLOXBGBS - Frames: 164,165,184,185 + Image: BLOXBGBS.R8 + Frames: 164, 165, 184, 185 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@340: Id: 340 - Image: BLOXBGBS - Frames: 289,290,309,310 + Image: BLOXBGBS.R8 + Frames: 289, 290, 309, 310 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@341: Id: 341 - Image: BLOXBGBS - Frames: 338,339,358,359 + Image: BLOXBGBS.R8 + Frames: 338, 339, 358, 359 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@342: Id: 342 - Image: BLOXBGBS - Frames: 349,350,351,352,353,354,369,370,371,372,373,374,389,390,391,392,393,394 + Image: BLOXBGBS.R8 + Frames: 349, 350, 351, 352, 353, 354, 369, 370, 371, 372, 373, 374, 389, 390, 391, 392, 393, 394 Size: 6,3 Category: Rock-Detail - PickAny: False Tiles: - 5: Rock - 11: Rock - 17: Rock - 16: Cliff - 15: Cliff - 14: Cliff - 13: Cliff - 12: Rock - 6: Rock 0: Rock 1: Cliff 2: Cliff 3: Cliff 4: Cliff - 10: Transition - 9: Transition - 8: Transition + 5: Rock + 6: Rock 7: Transition + 8: Transition + 9: Transition + 10: Transition + 11: Rock + 12: Rock + 13: Cliff + 14: Cliff + 15: Cliff + 16: Cliff + 17: Rock Template@343: Id: 343 - Image: BLOXBGBS - Frames: 340,341,342,360,361,362,380,381,382 + Image: BLOXBGBS.R8 + Frames: 340, 341, 342, 360, 361, 362, 380, 381, 382 Size: 3,3 Category: Rock-Detail - PickAny: False Tiles: - 2: Rock - 5: Cliff - 8: Cliff - 7: Rough - 6: Cliff - 3: Cliff 0: Rock 1: Rock + 2: Rock + 3: Cliff 4: Rough + 5: Cliff + 6: Cliff + 7: Rough + 8: Cliff Template@344: Id: 344 - Image: BLOXBGBS - Frames: 363,364,383,384 + Image: BLOXBGBS.R8 + Frames: 363, 364, 383, 384 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@345: Id: 345 - Image: BLOXBGBS - Frames: 343,344 + Image: BLOXBGBS.R8 + Frames: 343, 344 Size: 2,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock Template@346: Id: 346 - Image: BLOXBGBS - Frames: 345,346 + Image: BLOXBGBS.R8 + Frames: 345, 346 Size: 2,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock Template@347: Id: 347 - Image: BLOXBGBS - Frames: 365,366,367,368,385,386,387,388 + Image: BLOXBGBS.R8 + Frames: 365, 366, 367, 368, 385, 386, 387, 388 Size: 4,2 Category: Rock-Detail - PickAny: False Tiles: 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff 4: Cliff 5: Cliff 6: Cliff 7: Rock - 3: Cliff - 2: Cliff - 1: Cliff Template@348: Id: 348 - Image: BLOXBGBS - Frames: 414,415,434,435 + Image: BLOXBGBS.R8 + Frames: 414, 415, 434, 435 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rock 2: Rough 3: Rough - 1: Rock Template@349: Id: 349 - Image: BLOXBGBS - Frames: 607,608,609,627,628,629 + Image: BLOXBGBS.R8 + Frames: 607, 608, 609, 627, 628, 629 Size: 3,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand + 2: Sand 3: Sand 4: Sand 5: Sand - 2: Sand - 1: Sand Template@350: Id: 350 - Image: BLOXBGBS + Image: BLOXBGBS.R8 Frames: 610 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@351: Id: 351 - Image: BLOXBGBS - Frames: 652,653,672,673 + Image: BLOXBGBS.R8 + Frames: 652, 653, 672, 673 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@352: Id: 352 - Image: BLOXBGBS + Image: BLOXBGBS.R8 Frames: 700 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@353: Id: 353 - Image: BLOXBGBS + Image: BLOXBGBS.R8 Frames: 720 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@354: Id: 354 - Image: BLOXBGBS - Frames: 701,702,703,721,722,723,741,742,743 + Image: BLOXBGBS.R8 + Frames: 701, 702, 703, 721, 722, 723, 741, 742, 743 Size: 3,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough + 2: Rough 3: Rough 4: Rough + 5: Rough + 6: Rough 7: Rough 8: Rough - 6: Rough - 5: Rough - 2: Rough - 1: Rough Template@355: Id: 355 - Image: BLOXBGBS - Frames: 724,725,744,745 + Image: BLOXBGBS.R8 + Frames: 724, 725, 744, 745 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@356: Id: 356 - Image: BLOXBGBS - Frames: 726,727,746,747 + Image: BLOXBGBS.R8 + Frames: 726, 727, 746, 747 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@357: Id: 357 - Image: BLOXBGBS - Frames: 734,735 + Image: BLOXBGBS.R8 + Frames: 734, 735 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@358: Id: 358 - Image: BLOXBGBS - Frames: 716,717,736,737 + Image: BLOXBGBS.R8 + Frames: 716, 717, 736, 737 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@359: Id: 359 - Image: BLOXBGBS - Frames: 718,719,738,739 + Image: BLOXBGBS.R8 + Frames: 718, 719, 738, 739 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Sand 2: Rough 3: Rough - 1: Sand Template@360: Id: 360 - Image: BLOXBGBS - Frames: 758,759 + Image: BLOXBGBS.R8 + Frames: 758, 759 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@363: Id: 363 - Image: BLOXICE - Frames: 97,117 + Image: BLOXICE.R8 + Frames: 97, 117 Size: 1,2 Category: Ice - PickAny: False Tiles: 0: Cliff 1: Cliff Template@364: Id: 364 - Image: BLOXICE - Frames: 164,165,184,185 + Image: BLOXICE.R8 + Frames: 164, 165, 184, 185 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@365: Id: 365 - Image: BLOXICE - Frames: 289,290 + Image: BLOXICE.R8 + Frames: 289, 290 Size: 2,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@366: Id: 366 - Image: BLOXICE - Frames: 309,310,311,312,355,356,357,358,1,2,3,4,5,6,7,8 + Image: BLOXICE.R8 + Frames: 309, 310, 311, 312, 355, 356, 357, 358, 1, 2, 3, 4, 5, 6, 7, 8 Size: 4,4 Category: Ice-Detail - PickAny: False Tiles: 0: Cliff 1: Cliff @@ -3394,47 +3085,42 @@ Templates: 15: Sand Template@367: Id: 367 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 322 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@368: Id: 368 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 325 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@369: Id: 369 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 305 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@370: Id: 370 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 297 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@371: Id: 371 - Image: BLOXICE - Frames: 375,395,415,435 + Image: BLOXICE.R8 + Frames: 375, 395, 415, 435 Size: 1,4 Category: Ice-Detail - PickAny: False Tiles: 0: Sand 1: Sand @@ -3442,473 +3128,432 @@ Templates: 3: Sand Template@372: Id: 372 - Image: BLOXICE - Frames: 414,434 + Image: BLOXICE.R8 + Frames: 414, 434 Size: 1,2 Category: Ice-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@373: Id: 373 - Image: BLOXICE - Frames: 340,341,342,343,344,345,360,361,362,363,364,365,380,381,382,383,384,385 + Image: BLOXICE.R8 + Frames: 340, 341, 342, 343, 344, 345, 360, 361, 362, 363, 364, 365, 380, 381, 382, 383, 384, 385 Size: 6,3 Category: Ice-Detail - PickAny: False Tiles: - 5: Sand - 11: Sand - 17: Sand - 16: Sand - 15: Sand - 14: Sand - 13: Sand - 12: Sand - 6: Sand 0: Sand 1: Sand 2: Sand 3: Sand 4: Sand - 10: Sand - 9: Sand - 8: Sand + 5: Sand + 6: Sand 7: Sand + 8: Sand + 9: Sand + 10: Sand + 11: Sand + 12: Sand + 13: Sand + 14: Sand + 15: Sand + 16: Sand + 17: Sand Template@374: Id: 374 - Image: BLOXICE - Frames: 366,367,368,386,387,388 + Image: BLOXICE.R8 + Frames: 366, 367, 368, 386, 387, 388 Size: 3,2 Category: Ice-Detail - PickAny: False Tiles: 0: Sand + 1: Sand + 2: Sand 3: Sand 4: Sand 5: Sand - 2: Sand - 1: Sand Template@375: Id: 375 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 346 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@376: Id: 376 - Image: BLOXICE - Frames: 349,350,351,352,369,370,371,372,389,390,391,392 + Image: BLOXICE.R8 + Frames: 349, 350, 351, 352, 369, 370, 371, 372, 389, 390, 391, 392 Size: 4,3 Category: Ice - PickAny: False Tiles: 0: Cliff + 1: Ice + 2: Ice + 3: Cliff 4: Cliff + 5: Cliff + 6: Cliff + 7: Cliff 8: Cliff 9: Cliff 10: Cliff 11: Sand - 7: Cliff - 3: Cliff - 2: Ice - 1: Ice - 5: Cliff - 6: Cliff Template@378: Id: 378 - Image: BLOXICE - Frames: 353,354,373,374,393,394 + Image: BLOXICE.R8 + Frames: 353, 354, 373, 374, 393, 394 Size: 2,3 Category: Ice-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand + 3: Sand 4: Sand 5: Sand - 3: Sand - 1: Sand Template@379: Id: 379 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 462 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@380: Id: 380 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 463 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@381: Id: 381 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 551 Size: 1,1 Category: Unidentified - PickAny: False Tiles: 0: Sand Template@383: Id: 383 - Image: BLOXICE - Frames: 539,559 + Image: BLOXICE.R8 + Frames: 539, 559 Size: 1,2 Category: Unidentified - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@384: Id: 384 - Image: BLOXICE - Frames: 557,558,577,578,597,598 + Image: BLOXICE.R8 + Frames: 557, 558, 577, 578, 597, 598 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough - 3: Rough - 5: Sand - 4: Sand - 2: Rough 0: Rough + 1: Rough + 2: Rough + 3: Rough + 4: Sand + 5: Sand Template@385: Id: 385 - Image: BLOXICE - Frames: 607,608,627,628 + Image: BLOXICE.R8 + Frames: 607, 608, 627, 628 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@386: Id: 386 - Image: BLOXICE - Frames: 609,610,629,630 + Image: BLOXICE.R8 + Frames: 609, 610, 629, 630 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Sand 2: Rough 3: Rough - 1: Sand Template@387: Id: 387 - Image: BLOXICE - Frames: 700,701,720,721,740,741 + Image: BLOXICE.R8 + Frames: 700, 701, 720, 721, 740, 741 Size: 2,3 Category: Ice - PickAny: False Tiles: 0: Ice + 1: Cliff 2: Ice + 3: Cliff 4: Ice 5: Cliff - 3: Cliff - 1: Cliff Template@388: Id: 388 - Image: BLOXICE - Frames: 702,703,722,723 + Image: BLOXICE.R8 + Frames: 702, 703, 722, 723 Size: 2,2 Category: Ice - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@389: Id: 389 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 742 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@390: Id: 390 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 743 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@391: Id: 391 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 744 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@392: Id: 392 - Image: BLOXICE + Image: BLOXICE.R8 Frames: 745 Size: 1,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand Template@393: Id: 393 - Image: BLOXICE - Frames: 704,705,724,725 + Image: BLOXICE.R8 + Frames: 704, 705, 724, 725 Size: 2,2 Category: Ice - PickAny: False Tiles: + 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff - 0: Cliff Template@394: Id: 394 - Image: BLOXICE - Frames: 706,707,726,727,746,747 + Image: BLOXICE.R8 + Frames: 706, 707, 726, 727, 746, 747 Size: 2,3 Category: Ice - PickAny: False Tiles: 0: Cliff + 1: Ice 2: Cliff + 3: Ice 4: Cliff 5: Cliff - 3: Ice - 1: Ice Template@395: Id: 395 - Image: BLOXICE - Frames: 708,709,728,729 + Image: BLOXICE.R8 + Frames: 708, 709, 728, 729 Size: 2,2 Category: Ice - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@396: Id: 396 - Image: BLOXICE - Frames: 710,711,730,731 + Image: BLOXICE.R8 + Frames: 710, 711, 730, 731 Size: 2,2 Category: Ice - PickAny: False Tiles: 0: Ice + 1: Ice 2: Ice 3: Ice - 1: Ice Template@397: Id: 397 - Image: BLOXICE - Frames: 712,713,732,733 + Image: BLOXICE.R8 + Frames: 712, 713, 732, 733 Size: 2,2 Category: Ice - PickAny: False Tiles: 0: Ice + 1: Cliff 2: Ice 3: Cliff - 1: Cliff Template@398: Id: 398 - Image: BLOXICE - Frames: 714,715,734,735 + Image: BLOXICE.R8 + Frames: 714, 715, 734, 735 Size: 2,2 Category: Ice - PickAny: False Tiles: 0: Ice + 1: Ice 2: Cliff 3: Ice - 1: Ice Template@399: Id: 399 - Image: BLOXICE - Frames: 716,717 + Image: BLOXICE.R8 + Frames: 716, 717 Size: 2,1 Category: Ice-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@400: Id: 400 - Image: BLOXICE - Frames: 736,737 + Image: BLOXICE.R8 + Frames: 736, 737 Size: 2,1 Category: Ice-Detail - PickAny: False Tiles: - 1: Sand 0: Sand + 1: Sand Template@401: Id: 401 - Image: BLOXICE - Frames: 718,719,738,739,758,759 + Image: BLOXICE.R8 + Frames: 718, 719, 738, 739, 758, 759 Size: 2,3 Category: Rock-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand + 3: Sand 4: Sand 5: Sand - 3: Sand - 1: Sand Template@402: Id: 402 - Image: BLOXICE - Frames: 660,661,662 + Image: BLOXICE.R8 + Frames: 660, 661, 662 Size: 3,1 Category: Unidentified - PickAny: False Tiles: 0: Rough 1: Sand 2: Rough Template@403: Id: 403 - Image: BLOXICE - Frames: 680,681 + Image: BLOXICE.R8 + Frames: 680, 681 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@404: Id: 404 - Image: BLOXICE - Frames: 682,683 + Image: BLOXICE.R8 + Frames: 682, 683 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@405: Id: 405 - Image: BLOXICE - Frames: 684,685 + Image: BLOXICE.R8 + Frames: 684, 685 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@406: Id: 406 - Image: BLOXICE - Frames: 652,653 + Image: BLOXICE.R8 + Frames: 652, 653 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@407: Id: 407 - Image: BLOXICE - Frames: 672,673 + Image: BLOXICE.R8 + Frames: 672, 673 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@408: Id: 408 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 6 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@409: Id: 409 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 7 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@410: Id: 410 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 67 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@411: Id: 411 - Image: BLOXTREE - Frames: 97,117 + Image: BLOXTREE.R8 + Frames: 97, 117 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff 1: Cliff Template@412: Id: 412 - Image: BLOXTREE - Frames: 340,341,360,361 + Image: BLOXTREE.R8 + Frames: 340, 341, 360, 361 Size: 2,2 Category: Rotten-Base - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Sand - 1: Rough Template@413: Id: 413 - Image: BLOXTREE - Frames: 342,343,344,362,363,364 + Image: BLOXTREE.R8 + Frames: 342, 343, 344, 362, 363, 364 Size: 3,2 Category: Rotten-Base - PickAny: False Tiles: 0: Rough + 1: Rough + 2: Rough 3: Rough 4: Rough 5: Rough - 2: Rough - 1: Rough Template@414: Id: 414 - Image: BLOXTREE - Frames: 1,2,3,4,5 + Image: BLOXTREE.R8 + Frames: 1, 2, 3, 4, 5 Size: 5,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock @@ -3917,106 +3562,96 @@ Templates: 4: Rock Template@415: Id: 415 - Image: BLOXTREE - Frames: 305,325 + Image: BLOXTREE.R8 + Frames: 305, 325 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@416: Id: 416 - Image: BLOXTREE - Frames: 289,290,309,310 + Image: BLOXTREE.R8 + Frames: 289, 290, 309, 310 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@417: Id: 417 - Image: BLOXTREE - Frames: 311,312 + Image: BLOXTREE.R8 + Frames: 311, 312 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Transition 1: Transition Template@418: Id: 418 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 316 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@419: Id: 419 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 297 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@420: Id: 420 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 319 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@421: Id: 421 - Image: BLOXTREE - Frames: 338,339,358,359 + Image: BLOXTREE.R8 + Frames: 338, 339, 358, 359 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@422: Id: 422 - Image: BLOXTREE - Frames: 374,375,394,395 + Image: BLOXTREE.R8 + Frames: 374, 375, 394, 395 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@423: Id: 423 - Image: BLOXTREE - Frames: 414,415,434,435 + Image: BLOXTREE.R8 + Frames: 414, 415, 434, 435 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@424: Id: 424 - Image: BLOXTREE - Frames: 349,350,351,352,353,354 + Image: BLOXTREE.R8 + Frames: 349, 350, 351, 352, 353, 354 Size: 6,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock @@ -4026,419 +3661,382 @@ Templates: 5: Rock Template@425: Id: 425 - Image: BLOXTREE - Frames: 355,356,357 + Image: BLOXTREE.R8 + Frames: 355, 356, 357 Size: 3,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock 2: Rock Template@426: Id: 426 - Image: BLOXTREE - Frames: 462,463 + Image: BLOXTREE.R8 + Frames: 462, 463 Size: 2,1 Category: Rock-Detail - PickAny: False Tiles: - 1: Rock 0: Rock + 1: Rock Template@427: Id: 427 - Image: BLOXTREE - Frames: 538,539,558,559 + Image: BLOXTREE.R8 + Frames: 538, 539, 558, 559 Size: 2,2 Category: Sand-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@428: Id: 428 - Image: BLOXTREE - Frames: 578,579,598,599 + Image: BLOXTREE.R8 + Frames: 578, 579, 598, 599 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Transition + 1: Transition 2: Transition 3: Transition - 1: Transition Template@429: Id: 429 - Image: BLOXTREE - Frames: 700,701,702,720,721,722,740,741,742 + Image: BLOXTREE.R8 + Frames: 700, 701, 702, 720, 721, 722, 740, 741, 742 Size: 3,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough + 2: Rough 3: Rough + 4: Rough + 5: Rough 6: Rough 7: Rough 8: Rough - 5: Rough - 2: Rough - 1: Rough - 4: Rough Template@430: Id: 430 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 747 Size: 1,1 Category: Unidentified - PickAny: False Tiles: 0: Rough Template@431: Id: 431 - Image: BLOXTREE - Frames: 707,708,727,728 + Image: BLOXTREE.R8 + Frames: 707, 708, 727, 728 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@432: Id: 432 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 709 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@433: Id: 433 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 729 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@434: Id: 434 - Image: BLOXTREE - Frames: 730,731 + Image: BLOXTREE.R8 + Frames: 730, 731 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Rough 0: Rough + 1: Rough Template@435: Id: 435 - Image: BLOXTREE - Frames: 710,711,712 + Image: BLOXTREE.R8 + Frames: 710, 711, 712 Size: 3,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough 2: Rough Template@436: Id: 436 - Image: BLOXTREE - Frames: 718,719,738,739,758,759 + Image: BLOXTREE.R8 + Frames: 718, 719, 738, 739, 758, 759 Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough + 3: Rough 4: Rough 5: Rough - 3: Rough - 1: Rough Template@437: Id: 437 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 732 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@438: Id: 438 - Image: BLOXTREE - Frames: 713,714,733,734 + Image: BLOXTREE.R8 + Frames: 713, 714, 733, 734 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@439: Id: 439 - Image: BLOXTREE - Frames: 715,716,717,735,736,737 + Image: BLOXTREE.R8 + Frames: 715, 716, 717, 735, 736, 737 Size: 3,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock - 3: Rock - 4: Rock 1: Rock 2: Rock + 3: Rock + 4: Rock 5: Rock Template@440: Id: 440 - Image: BLOXTREE - Frames: 652,653,672,673 + Image: BLOXTREE.R8 + Frames: 652, 653, 672, 673 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock + 1: Rock 2: Rock 3: Rock - 1: Rock Template@441: Id: 441 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 610 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@442: Id: 442 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 630 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@443: Id: 443 - Image: BLOXTREE - Frames: 607,608,609,627,628,629 + Image: BLOXTREE.R8 + Frames: 607, 608, 609, 627, 628, 629 Size: 3,2 Category: Rock-Detail - PickAny: False Tiles: - 5: Sand - 2: Cliff - 1: Rough 0: Cliff + 1: Rough + 2: Cliff 3: Cliff 4: Cliff + 5: Sand Template@444: Id: 444 - Image: BLOXTREE + Image: BLOXTREE.R8 Frames: 551 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rock Template@445: Id: 445 - Image: BLOXWAST - Frames: 700,701,702,703,704,705,720,721,722,723,724,725,740,741,742,743,744,745 + Image: BLOXWAST.R8 + Frames: 700, 701, 702, 703, 704, 705, 720, 721, 722, 723, 724, 725, 740, 741, 742, 743, 744, 745 Size: 6,3 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand + 2: Sand + 3: Sand + 4: Sand + 5: Sand 6: Sand + 7: Sand + 8: Sand + 9: Sand + 10: Sand + 11: Sand 12: Sand 13: Sand 14: Sand 15: Sand 16: Sand 17: Sand - 11: Sand - 5: Sand - 4: Sand - 3: Sand - 2: Sand - 1: Sand - 7: Sand - 8: Sand - 9: Sand - 10: Sand Template@446: Id: 446 - Image: BLOXWAST - Frames: 683,684,685 + Image: BLOXWAST.R8 + Frames: 683, 684, 685 Size: 3,1 Category: Sand-Detail - PickAny: False Tiles: 0: Dune 1: Dune 2: Dune Template@447: Id: 447 - Image: BLOXWAST - Frames: 746,747 + Image: BLOXWAST.R8 + Frames: 746, 747 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Dune Template@448: Id: 448 - Image: BLOXWAST - Frames: 708,709,728,729 + Image: BLOXWAST.R8 + Frames: 708, 709, 728, 729 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: + 0: Dune + 1: Dune 2: Dune 3: Dune - 1: Dune - 0: Dune Template@449: Id: 449 - Image: BLOXWAST - Frames: 710,711 + Image: BLOXWAST.R8 + Frames: 710, 711 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Dune Template@450: Id: 450 - Image: BLOXWAST - Frames: 730,731 + Image: BLOXWAST.R8 + Frames: 730, 731 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Sand 0: Sand + 1: Sand Template@451: Id: 451 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 712 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@452: Id: 452 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 732 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@453: Id: 453 - Image: BLOXWAST - Frames: 713,733 + Image: BLOXWAST.R8 + Frames: 713, 733 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Dune 1: Dune Template@454: Id: 454 - Image: BLOXWAST - Frames: 734,735 + Image: BLOXWAST.R8 + Frames: 734, 735 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@455: Id: 455 - Image: BLOXWAST - Frames: 714,715 + Image: BLOXWAST.R8 + Frames: 714, 715 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand 1: Sand Template@456: Id: 456 - Image: BLOXWAST - Frames: 716,717,718,736,737,738 + Image: BLOXWAST.R8 + Frames: 716, 717, 718, 736, 737, 738 Size: 3,2 Category: Sand-Detail - PickAny: False Tiles: - 1: Sand - 4: Sand - 3: Sand 0: Sand + 1: Sand 2: Sand + 3: Sand + 4: Sand 5: Sand Template@457: Id: 457 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 739 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@458: Id: 458 - Image: BLOXWAST - Frames: 758,759 + Image: BLOXWAST.R8 + Frames: 758, 759 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: - 1: Sand 0: Sand + 1: Sand Template@459: Id: 459 - Image: BLOXWAST - Frames: 652,653,672,673 + Image: BLOXWAST.R8 + Frames: 652, 653, 672, 673 Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Sand 2: Sand 3: Sand - 1: Sand Template@460: Id: 460 - Image: BLOXWAST - Frames: 345,346,365,366 + Image: BLOXWAST.R8 + Frames: 345, 346, 365, 366 Size: 2,2 Category: Dead-Worm - PickAny: False Tiles: 0: Rough + 1: Rough 2: Rough 3: Rough - 1: Rough Template@462: Id: 462 - Image: BLOXWAST - Frames: 355,356,357,358,359,373,374,375,338,339 + Image: BLOXWAST.R8 + Frames: 355, 356, 357, 358, 359, 373, 374, 375, 338, 339 Size: 5,2 Category: Rotten-Base - PickAny: False Tiles: 0: Rough 1: Rough @@ -4452,294 +4050,263 @@ Templates: 9: Rough Template@464: Id: 464 - Image: BLOXWAST - Frames: 97,117 + Image: BLOXWAST.R8 + Frames: 97, 117 Size: 1,2 Category: Dead-Worm - PickAny: False Tiles: 0: Cliff 1: Cliff Template@465: Id: 465 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 67 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@466: Id: 466 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 1 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@467: Id: 467 - Image: BLOXWAST - Frames: 2,3 + Image: BLOXWAST.R8 + Frames: 2, 3 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff 1: Sand Template@468: Id: 468 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 4 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff Template@469: Id: 469 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 5 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff Template@470: Id: 470 - Image: BLOXWAST - Frames: 6,7 + Image: BLOXWAST.R8 + Frames: 6, 7 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff 1: Cliff Template@471: Id: 471 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 312 Size: 1,1 Category: Dead-Worm - PickAny: False Tiles: 0: Sand Template@472: Id: 472 - Image: BLOXWAST - Frames: 310,311 + Image: BLOXWAST.R8 + Frames: 310, 311 Size: 2,1 Category: Dead-Worm - PickAny: False Tiles: - 1: Sand 0: Sand + 1: Sand Template@473: Id: 473 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 309 Size: 1,1 Category: Dead-Worm - PickAny: False Tiles: 0: Sand Template@474: Id: 474 - Image: BLOXWAST - Frames: 349,350,351,352,369,370,371,372,389,390,391,392,385,386,387,388 + Image: BLOXWAST.R8 + Frames: 349, 350, 351, 352, 369, 370, 371, 372, 389, 390, 391, 392, 385, 386, 387, 388 Size: 4,4 Category: Sand-Detail - PickAny: False Tiles: 0: Sand + 1: Cliff + 2: Cliff + 3: Sand 4: Cliff + 5: Cliff + 6: Cliff + 7: Sand 8: Rough 9: Cliff 10: Cliff 11: Rough - 7: Sand - 3: Sand - 2: Cliff - 1: Cliff - 5: Cliff - 6: Cliff 12: Sand 13: Cliff 14: Cliff 15: Rough Template@475: Id: 475 - Image: BLOXWAST - Frames: 706,707,726,727 + Image: BLOXWAST.R8 + Frames: 706, 707, 726, 727 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@476: Id: 476 - Image: BLOXWAST - Frames: 557,558,559,577,578,579 + Image: BLOXWAST.R8 + Frames: 557, 558, 559, 577, 578, 579 Size: 3,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff - 3: Sand - 4: Rough 1: Cliff 2: Rough + 3: Sand + 4: Rough 5: Cliff Template@477: Id: 477 - Image: BLOXWAST - Frames: 619,639 + Image: BLOXWAST.R8 + Frames: 619, 639 Size: 1,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@478: Id: 478 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 305 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@479: Id: 479 - Image: BLOXWAST + Image: BLOXWAST.R8 Frames: 325 Size: 1,1 Category: Rock-Detail - PickAny: False Tiles: 0: Rough Template@481: Id: 481 - Image: BLOXWAST - Frames: 414,415,434,435 + Image: BLOXWAST.R8 + Frames: 414, 415, 434, 435 Size: 2,2 Category: Rock-Cliff - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Rock 3: Cliff - 1: Cliff Template@482: Id: 482 - Image: BLOXWAST - Frames: 538,539 + Image: BLOXWAST.R8 + Frames: 538, 539 Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough -# Dune 2000 1.06 patch Template@500: Id: 500 - Image: bloxxmas00 + Image: bloxxmas00.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@501: Id: 501 - Image: bloxxmas01 + Image: bloxxmas01.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@502: Id: 502 - Image: bloxxmas02 + Image: bloxxmas02.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@503: Id: 503 - Image: bloxxmas03 + Image: bloxxmas03.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@504: Id: 504 - Image: bloxxmas04 + Image: bloxxmas04.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@505: Id: 505 - Image: bloxxmas05 + Image: bloxxmas05.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff Template@506: Id: 506 - Image: bloxxmas06 + Image: bloxxmas06.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff Template@507: Id: 507 - Image: bloxxmas07 + Image: bloxxmas07.tmp Size: 2,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough Template@508: Id: 508 - Image: bloxxmas08 + Image: bloxxmas08.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@509: Id: 509 - Image: bloxxmas09 + Image: bloxxmas09.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@510: Id: 510 - Image: bloxxmas10 + Image: bloxxmas10.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@511: Id: 511 - Image: bloxxmas11 + Image: bloxxmas11.tmp Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough @@ -4747,10 +4314,9 @@ Templates: 3: Rough Template@512: Id: 512 - Image: bloxxmas12 + Image: bloxxmas12.tmp Size: 2,3 Category: Sand-Detail - PickAny: False Tiles: 0: Cliff 1: Cliff @@ -4760,10 +4326,9 @@ Templates: 5: Cliff Template@513: Id: 513 - Image: bloxxmas13 + Image: bloxxmas13.tmp Size: 3,3 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock @@ -4776,10 +4341,9 @@ Templates: 8: Cliff Template@514: Id: 514 - Image: bloxxmas14 + Image: bloxxmas14.tmp Size: 3,3 Category: Rock-Detail - PickAny: False Tiles: 0: Sand 1: Rough @@ -4792,10 +4356,9 @@ Templates: 8: Rock Template@515: Id: 515 - Image: bloxxmas15 + Image: bloxxmas15.tmp Size: 4,3 Category: Rock-Detail - PickAny: False Tiles: 0: Cliff 1: Sand @@ -4811,34 +4374,30 @@ Templates: 11: Cliff Template@516: Id: 516 - Image: bloxxmas16 + Image: bloxxmas16.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@517: Id: 517 - Image: bloxxmas17 + Image: bloxxmas17.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@518: Id: 518 - Image: bloxxmas18 + Image: bloxxmas18.tmp Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Rough Template@519: Id: 519 - Image: bloxxmas19 + Image: bloxxmas19.tmp Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough @@ -4846,1270 +4405,1150 @@ Templates: 3: Rough Template@520: Id: 520 - Image: bloxxmas20 + Image: bloxxmas20.tmp Size: 2,2 Category: Sand-Detail - PickAny: False Tiles: 0: Rough 1: Rough 2: Rough 3: Rough -# OpenRA Terrain Expansion Template@600: Id: 600 - Image: t600 + Image: t600.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@601: Id: 601 - Image: t601 + Image: t601.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@602: Id: 602 - Image: t602 + Image: t602.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@603: Id: 603 - Image: t603 + Image: t603.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@604: Id: 604 - Image: t604 + Image: t604.tmp Size: 2,3 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@605: Id: 605 - Image: t605 + Image: t605.tmp Size: 2,3 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@606: Id: 606 - Image: t606 + Image: t606.tmp Size: 2,1 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff 1: Cliff Template@607: Id: 607 - Image: t607 + Image: t607.tmp Size: 2,1 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@608: Id: 608 - Image: t608 + Image: t608.tmp Size: 1,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@609: Id: 609 - Image: t609 + Image: t609.tmp Size: 1,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff 1: Cliff Template@610: Id: 610 - Image: t610 + Image: t610.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@611: Id: 611 - Image: t611 + Image: t611.tmp Size: 2,1 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@612: Id: 612 - Image: t612 + Image: t612.tmp Size: 3,3 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 6: Cliff - 3: Cliff 0: Rock 1: Rock 2: Rock - 5: Cliff - 8: Cliff - 7: Rough + 3: Cliff 4: Rough + 5: Cliff + 6: Cliff + 7: Rough + 8: Cliff Template@613: Id: 613 - Image: t613 + Image: t613.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@614: Id: 614 - Image: t614 + Image: t614.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@615: Id: 615 - Image: t615 + Image: t615.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@616: Id: 616 - Image: t616 + Image: t616.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@617: Id: 617 - Image: t617 + Image: t617.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@618: Id: 618 - Image: t618 + Image: t618.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Transition - 1: Cliff Template@619: Id: 619 - Image: t619 + Image: t619.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@620: Id: 620 - Image: t620 + Image: t620.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@621: Id: 621 - Image: t621 + Image: t621.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@622: Id: 622 - Image: t622 + Image: t622.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@623: Id: 623 - Image: t623 + Image: t623.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@624: Id: 624 - Image: t624 + Image: t624.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@625: Id: 625 - Image: t625 + Image: t625.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@626: Id: 626 - Image: t626 + Image: t626.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@627: Id: 627 - Image: t627 + Image: t627.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@628: Id: 628 - Image: t628 + Image: t628.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@629: Id: 629 - Image: t629 + Image: t629.tmp Size: 2,3 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@630: Id: 630 - Image: t630 + Image: t630.tmp Size: 2,3 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@631: Id: 631 - Image: t631 + Image: t631.tmp Size: 3,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 5: Cliff - 4: Cliff - 3: Cliff 0: Cliff 1: Cliff 2: Cliff + 3: Cliff + 4: Cliff + 5: Cliff Template@632: Id: 632 - Image: t632 + Image: t632.tmp Size: 3,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 5: Cliff - 4: Cliff - 3: Cliff 0: Cliff 1: Cliff 2: Cliff + 3: Cliff + 4: Cliff + 5: Cliff Template@633: Id: 633 - Image: t633 + Image: t633.tmp Size: 3,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff + 2: Cliff 3: Cliff 4: Cliff 5: Cliff - 2: Cliff - 1: Cliff Template@634: Id: 634 - Image: t634 + Image: t634.tmp Size: 3,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 2: Cliff Template@635: Id: 635 - Image: t635 + Image: t635.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@636: Id: 636 - Image: t636 + Image: t636.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@637: Id: 637 - Image: t637 + Image: t637.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@638: Id: 638 - Image: t638 + Image: t638.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@639: Id: 639 - Image: t639 + Image: t639.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@640: Id: 640 - Image: t640 + Image: t640.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 1: Cliff - 3: Cliff - 2: Cliff 0: Cliff + 1: Cliff + 2: Cliff + 3: Cliff Template@800: Id: 800 - Image: t800 + Image: t800.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@801: Id: 801 - Image: t801 + Image: t801.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@802: Id: 802 - Image: t802 + Image: t802.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@803: Id: 803 - Image: t803 + Image: t803.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff - 2: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@804: Id: 804 - Image: t804 + Image: t804.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@805: Id: 805 - Image: t805 + Image: t805.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@806: Id: 806 - Image: t806 + Image: t806.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@807: Id: 807 - Image: t807 + Image: t807.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@808: Id: 808 - Image: t808 + Image: t808.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@809: Id: 809 - Image: t809 + Image: t809.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@810: Id: 810 - Image: t810 + Image: t810.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@811: Id: 811 - Image: t811 + Image: t811.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@812: Id: 812 - Image: t812 + Image: t812.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@813: Id: 813 - Image: t813 + Image: t813.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@814: Id: 814 - Image: t814 + Image: t814.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@815: Id: 815 - Image: t815 + Image: t815.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Transition 0: Cliff 1: Cliff + 2: Transition + 3: Cliff Template@816: Id: 816 - Image: t816 + Image: t816.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@817: Id: 817 - Image: t817 + Image: t817.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@818: Id: 818 - Image: t818 + Image: t818.tmp Size: 2,1 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@819: Id: 819 - Image: t819 + Image: t819.tmp Size: 2,1 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff 1: Cliff Template@820: Id: 820 - Image: t820 + Image: t820.tmp Size: 1,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff Template@821: Id: 821 - Image: t821 + Image: t821.tmp Size: 1,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff 1: Cliff Template@822: Id: 822 - Image: t822 + Image: t822.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@823: Id: 823 - Image: t823 + Image: t823.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@824: Id: 824 - Image: t824 + Image: t824.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@825: Id: 825 - Image: t825 + Image: t825.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@826: Id: 826 - Image: t826 + Image: t826.tmp Size: 2,3 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff - 1: Cliff Template@827: Id: 827 - Image: t827 + Image: t827.tmp Size: 2,3 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff 5: Cliff Template@828: Id: 828 - Image: t828 + Image: t828.tmp Size: 2,3 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Transition 0: Cliff + 1: Transition 2: Cliff + 3: Cliff 4: Cliff 5: Cliff - 3: Cliff Template@829: Id: 829 - Image: t829 + Image: t829.tmp Size: 2,3 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 4: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff + 4: Cliff 5: Cliff Template@830: Id: 830 - Image: t830 + Image: t830.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@831: Id: 831 - Image: t831 + Image: t831.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff 1: Cliff - 3: Cliff 2: Cliff + 3: Cliff Template@832: Id: 832 - Image: t832 + Image: t832.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@833: Id: 833 - Image: t833 + Image: t833.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@834: Id: 834 - Image: t834 + Image: t834.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@835: Id: 835 - Image: t835 + Image: t835.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@836: Id: 836 - Image: t836 + Image: t836.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@837: Id: 837 - Image: t837 + Image: t837.tmp Size: 2,2 Category: Rock-Cliff-Rock - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@838: Id: 838 - Image: t838 + Image: t838.tmp Size: 3,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff + 2: Cliff 3: Cliff 4: Cliff 5: Cliff - 2: Cliff - 1: Cliff Template@839: Id: 839 - Image: t839 + Image: t839.tmp Size: 3,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 4: Cliff - 3: Cliff 0: Cliff 1: Cliff 2: Cliff + 3: Cliff + 4: Cliff 5: Cliff Template@840: Id: 840 - Image: t840 + Image: t840.tmp Size: 3,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 5: Cliff - 4: Cliff - 3: Cliff 0: Cliff 1: Cliff 2: Cliff + 3: Cliff + 4: Cliff + 5: Cliff Template@841: Id: 841 - Image: t841 + Image: t841.tmp Size: 3,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff + 2: Cliff 3: Cliff 4: Cliff 5: Cliff - 2: Cliff Template@842: Id: 842 - Image: t842 + Image: t842.tmp Size: 2,2 Category: Sand-Smooth - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@843: Id: 843 - Image: t843 + Image: t843.tmp Size: 2,2 Category: Sand-Smooth - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@844: Id: 844 - Image: t844 + Image: t844.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@845: Id: 845 - Image: t845 + Image: t845.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@846: Id: 846 - Image: t846 + Image: t846.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@847: Id: 847 - Image: t847 + Image: t847.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@848: Id: 848 - Image: t848 + Image: t848.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@849: Id: 849 - Image: t849 + Image: t849.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@850: Id: 850 - Image: t850 + Image: t850.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@851: Id: 851 - Image: t851 + Image: t851.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff 3: Cliff Template@852: Id: 852 - Image: t852 + Image: t852.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@853: Id: 853 - Image: t853 + Image: t853.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: 0: Cliff + 1: Cliff 2: Cliff 3: Cliff - 1: Cliff Template@854: Id: 854 - Image: t854 + Image: t854.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 1: Cliff 0: Cliff + 1: Cliff 2: Cliff 3: Cliff Template@855: Id: 855 - Image: t855 + Image: t855.tmp Size: 2,2 Category: Rock-Cliff-Sand - PickAny: False Tiles: - 3: Cliff - 2: Cliff 0: Cliff 1: Cliff + 2: Cliff + 3: Cliff Template@1000: Id: 1000 - Image: t1000 + Image: t1000.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1001: Id: 1001 - Image: t1001 + Image: t1001.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1002: Id: 1002 - Image: t1002 + Image: t1002.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1003: Id: 1003 - Image: t1003 + Image: t1003.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1004: Id: 1004 - Image: t1004 + Image: t1004.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1005: Id: 1005 - Image: t1005 + Image: t1005.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1006: Id: 1006 - Image: t1006 + Image: t1006.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1007: Id: 1007 - Image: t1007 + Image: t1007.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1008: Id: 1008 - Image: t1008 + Image: t1008.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1009: Id: 1009 - Image: t1009 + Image: t1009.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1010: Id: 1010 - Image: t1010 + Image: t1010.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1011: Id: 1011 - Image: t1011 + Image: t1011.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1012: Id: 1012 - Image: t1012 + Image: t1012.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1013: Id: 1013 - Image: t1013 + Image: t1013.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1014: Id: 1014 - Image: t1014 + Image: t1014.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1015: Id: 1015 - Image: t1015 + Image: t1015.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Cliff Template@1016: Id: 1016 - Image: t1016 + Image: t1016.tmp Size: 2,1 Category: Sand-Platform - PickAny: False Tiles: 0: Rock 1: Rock Template@1017: Id: 1017 - Image: t1017 + Image: t1017.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Rock Template@1018: Id: 1018 - Image: t1018 + Image: t1018.tmp Size: 1,1 Category: Sand-Platform - PickAny: False Tiles: 0: Rock Template@1019: Id: 1019 - Image: BLOXBGBS + Image: BLOXBGBS.R8 Frames: 29 Size: 1,1 Category: Sand-Detail - PickAny: False Tiles: 0: Sand Template@1020: Id: 1020 - Image: BLOXBGBS - Frames: 617,618,637,638 + Image: BLOXBGBS.R8 + Frames: 617, 618, 637, 638 Size: 2,2 Category: Rock-Detail - PickAny: False Tiles: 0: Rock 1: Rock From 92452271feabbd7086ca040f1bbb2ce218e38f1c Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Thu, 23 Oct 2014 22:13:05 +1300 Subject: [PATCH 6/7] Use per-tile color in minimap. --- OpenRA.Game/Graphics/Minimap.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/OpenRA.Game/Graphics/Minimap.cs b/OpenRA.Game/Graphics/Minimap.cs index afe5aac491..b092b3c1b5 100644 --- a/OpenRA.Game/Graphics/Minimap.cs +++ b/OpenRA.Game/Graphics/Minimap.cs @@ -44,8 +44,10 @@ namespace OpenRA.Graphics { var mapX = x + b.Left; var mapY = y + b.Top; - var type = tileset[tileset.GetTerrainIndex(mapTiles[new MPos(mapX, mapY)])]; - colors[y * stride + x] = type.Color.ToArgb(); + var type = tileset.GetTileInfo(mapTiles[new MPos(mapX, mapY)]); + var color = type != null ? type.LeftColor : Color.Black; + + colors[y * stride + x] = color.ToArgb(); } } } From 52624912fe2925bfe217e03893d1ac9d8e17c993 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 22 Mar 2015 12:35:42 +0000 Subject: [PATCH 7/7] Work around bogus tiles. --- mods/cnc/tilesets/temperat.yaml | 206 -------------------------------- 1 file changed, 206 deletions(-) diff --git a/mods/cnc/tilesets/temperat.yaml b/mods/cnc/tilesets/temperat.yaml index a8f6362ab3..4d0025681d 100644 --- a/mods/cnc/tilesets/temperat.yaml +++ b/mods/cnc/tilesets/temperat.yaml @@ -712,222 +712,16 @@ Templates: Id: 69 Image: p03.tem Size: 1,1 - PickAny: True Category: Debris Tiles: 0: Wall - 1: Clear - 2: Clear - 3: Clear - 4: Clear - 5: Clear - 6: Clear - 7: Clear - 8: Clear - 9: Clear - 10: Clear - 11: Clear - 12: Clear - 13: Clear - 14: Clear - 15: Clear - 16: Clear - 17: Clear - 18: Clear - 19: Clear - 20: Clear - 21: Clear - 22: Clear - 23: Clear - 24: Clear - 25: Clear - 26: Clear - 27: Clear - 28: Clear - 29: Clear - 30: Clear - 31: Clear - 32: Clear - 33: Clear - 34: Clear - 35: Clear - 36: Clear - 37: Clear - 38: Clear - 39: Clear - 40: Clear - 41: Clear - 42: Clear - 43: Clear - 44: Clear - 45: Clear - 46: Clear - 47: Clear - 48: Clear - 49: Clear - 50: Clear - 51: Clear - 52: Clear - 53: Clear - 54: Clear - 55: Clear - 56: Clear - 57: Clear - 58: Clear - 59: Clear - 60: Clear - 61: Clear - 62: Clear - 63: Clear - 64: Clear - 65: Clear - 66: Clear - 67: Clear - 68: Clear - 69: Clear - 70: Clear - 71: Clear - 72: Clear - 73: Clear - 74: Clear - 75: Clear - 76: Clear - 77: Clear - 78: Clear - 79: Clear - 80: Clear - 81: Clear - 82: Clear - 83: Clear - 84: Clear - 85: Clear - 86: Clear - 87: Clear - 88: Clear - 89: Clear - 90: Clear - 91: Clear - 92: Clear - 93: Clear - 94: Clear - 95: Clear - 96: Clear - 97: Clear - 98: Clear - 99: Clear - 100: Clear - 101: Clear - 102: Clear Template@70: Id: 70 Image: p04.tem Size: 1,1 - PickAny: True Category: Debris Tiles: 0: Wall - 1: Clear - 2: Clear - 3: Clear - 4: Clear - 5: Clear - 6: Clear - 7: Clear - 8: Clear - 9: Clear - 10: Clear - 11: Clear - 12: Clear - 13: Clear - 14: Clear - 15: Clear - 16: Clear - 17: Clear - 18: Clear - 19: Clear - 20: Clear - 21: Clear - 22: Clear - 23: Clear - 24: Clear - 25: Clear - 26: Clear - 27: Clear - 28: Clear - 29: Clear - 30: Clear - 31: Clear - 32: Clear - 33: Clear - 34: Clear - 35: Clear - 36: Clear - 37: Clear - 38: Clear - 39: Clear - 40: Clear - 41: Clear - 42: Clear - 43: Clear - 44: Clear - 45: Clear - 46: Clear - 47: Clear - 48: Clear - 49: Clear - 50: Clear - 51: Clear - 52: Clear - 53: Clear - 54: Clear - 55: Clear - 56: Clear - 57: Clear - 58: Clear - 59: Clear - 60: Clear - 61: Clear - 62: Clear - 63: Clear - 64: Clear - 65: Clear - 66: Clear - 67: Clear - 68: Clear - 69: Clear - 70: Clear - 71: Clear - 72: Clear - 73: Clear - 74: Clear - 75: Clear - 76: Clear - 77: Clear - 78: Clear - 79: Clear - 80: Clear - 81: Clear - 82: Clear - 83: Clear - 84: Clear - 85: Clear - 86: Clear - 87: Clear - 88: Clear - 89: Clear - 90: Clear - 91: Clear - 92: Clear - 93: Clear - 94: Clear - 95: Clear - 96: Clear - 97: Clear - 98: Clear - 99: Clear - 100: Clear - 101: Clear - 102: Clear Template@73: Id: 73 Image: p07.tem