Modding Help Tiled completely black?

Discussion in 'Starbound Modding' started by Phantaeon, Dec 20, 2015.

Tags:
  1. Phantaeon

    Phantaeon Scruffy Nerf-Herder

    Whenever I try to open one of the dungeons in the unpacked Starbound files, like examplemission.json it gives a completely black screen. The only exception to this is that some of the challange dungeon maps have yellow circles and lines very akin to how wiring looks ingame.

    Does anybody know why there are no tiles or objects? I've tried add external tileset already.
     
    Anc123 and Apple Juice like this.
  2. Apple Juice

    Apple Juice Pangalactic Porcupine

    Getting this issue, too.
     
  3. Mackinz

    Mackinz The Waste of Time

    Sounds like the tilesets referenced by the map do not correctly point to the assets within the Tiled folder. You'll have to edit your file structure... mind opening one of the referenced tilesets and posting it? Use code brackets, please. Also, I will need to see where you've unpacked your assets, so please provide a screen shot.
     
    Monijir likes this.
  4. Monijir

    Monijir Scruffy Nerf-Herder

    If you've never tried editing the map or tileset files manually, you'll be happy to know that it's a very straight-forward format. Since you haven't mentioned the error pop-up that usually occurs when tile images or tile sets can't be found I'm going to assume none popped up - that was the way things were handled in older versions of the Tiled editor so make sure you're up to date (that wouldn't solve the problem but it would make it easier to identify). If you're running version 0.14.2 or later you should get a huge list of missing files asking you where to find them (the files can be whole tile sets or the individual PNG images for each tile). The map file (somewhere in Starbound/assets/packed/dungeons/) points to the tile set files (in Starbound/assets/packed/tilesets/packed/) and the tile set files point to the tile image files (Starbound/tiled/packed/). The best solution is to open the tile set files in a text editor and do a replace-all on them. Based on the last time I checked in with Nighty / Cheerful Giraffe there was a change in the way paths were written - a couple of the slashes were replaced with double-back-slashes. it was easy to fix; just had to replace every '\\' with a '/' in a text editor. I would love to see someone automate this and perhaps other sanitizing processes with a .BAT - the easiest solution for the most users.
     
  5. Phantaeon

    Phantaeon Scruffy Nerf-Herder

    http://imgur.com/gallery/ywptL5t/new
    This screenshot should suffice. If you need anything translated, the language on my computer is Netherlands. Also I'm not entirely sure what you mean by referenced tilesets. Or what code brackets even are.

    As for the question if any errors popped up. No, none did.

    Edit: I couldn't get the image to work so I linked an imgur link.
     
  6. lazarus78

    lazarus78 The Waste of Time

    Probably shouldnt have published it. Downvotes away.
     
  7. Mackinz

    Mackinz The Waste of Time

    They shouldn't have separated the tilesets and packed images, so that tilesets get screwed up by attempting to access them.

    Also... downvotes? Pretty sure I'm not browsing reddit or imgur, here.
     
  8. Phantaeon

    Phantaeon Scruffy Nerf-Herder

    So I have to reorganize the folder?[DOUBLEPOST=1450732783][/DOUBLEPOST]
    Mind giving me a reason? As Tiled is a tool usable for starbound modding. Which is exactly what I'm planning to use it for.
     
  9. Mackinz

    Mackinz The Waste of Time

    No, you have to open the tileset json files and change the file pathways manually within them. Like I said before.
     
  10. lazarus78

    lazarus78 The Waste of Time

    I was refering to the image. You published it to Usersub. Unless you don't give a hoot about fake internet points, then continue as you will.
     
  11. Monijir

    Monijir Scruffy Nerf-Herder

    Also, I uploaded a .zip that you can extract into your Starbound/assets/packed/tilesets/ folder to overwrite the existing files (back up the originals, of course), but it is probably best to read the rest of this and understand how this works. Again, please check your version of Tiled, I know they say you only need 0.14, but I would recommend at least 0.14.2.

    If you have a problem translating anything. I can try to rewrite it with Basic English. Referenced tile sets meaning the tile set files for all the tile sets the map has. They're referenced because they are not included inside the map file - the map file just keeps paths of where to find them.
    Open the map file in a text editor. You can use notepad but there are better text editors for this. Somewhere in the file (usually the end) you will find something like this :
    Code:
    "tilesets":[
      {
      "firstgid":1,
      "source":"..\/tilesets\/packed\/materials.json"
      },
      {
      "firstgid":179,
      "source":"..\/tilesets\/packed\/supports.json"
      },
      {
      "firstgid":213,
      "source":"..\/tilesets\/packed\/miscellaneous.json"
      },
      {
      "firstgid":231,
      "source":"..\/tilesets\/packed\/liquids.json"
      },
      {
      "firstgid":257,
      "source":"..\/tilesets\/packed\/objects-by-race\/generic.json"
      },
      {
      "firstgid":1556,
      "source":"..\/tilesets\/packed\/objects-by-race\/ancient.json"
      },
      {
      "firstgid":1659,
      "source":"..\/tilesets\/packed\/objects-by-race\/apex.json"
      },
      {
      "firstgid":1996,
      "source":"..\/tilesets\/packed\/objects-by-race\/avian.json"
      },
      {
      "firstgid":2273,
      "source":"..\/tilesets\/packed\/objects-by-race\/floran.json"
      },
      {
      "firstgid":2444,
      "source":"..\/tilesets\/packed\/objects-by-race\/glitch.json"
      },
      {
      "firstgid":2636,
      "source":"..\/tilesets\/packed\/objects-by-race\/human.json"
      },
      {
      "firstgid":2896,
      "source":"..\/tilesets\/packed\/objects-by-race\/hylotl.json"
      },
      {
      "firstgid":3098,
      "source":"..\/tilesets\/packed\/objects-by-race\/novakid.json"
      },
      {
      "firstgid":3123,
      "source":"..\/tilesets\/packed\/objects-by-category\/crafting.json"
      },
      {
      "firstgid":3183,
      "source":"..\/tilesets\/packed\/objects-by-category\/decorative.json"
      },
      {
      "firstgid":4181,
      "source":"..\/tilesets\/packed\/objects-by-category\/door.json"
      },
      {
      "firstgid":4274,
      "source":"..\/tilesets\/packed\/objects-by-category\/farmable.json"
      },
      {
      "firstgid":4346,
      "source":"..\/tilesets\/packed\/objects-by-category\/furniture.json"
      },
      {
      "firstgid":4627,
      "source":"..\/tilesets\/packed\/objects-by-category\/light.json"
      },
      {
      "firstgid":4998,
      "source":"..\/tilesets\/packed\/objects-by-category\/other.json"
      },
      {
      "firstgid":5192,
      "source":"..\/tilesets\/packed\/objects-by-category\/pot.json"
      },
      {
      "firstgid":5452,
      "source":"..\/tilesets\/packed\/objects-by-category\/sapling.json"
      },
      {
      "firstgid":5453,
      "source":"..\/tilesets\/packed\/objects-by-category\/spawner.json"
      },
      {
      "firstgid":5468,
      "source":"..\/tilesets\/packed\/objects-by-category\/storage.json"
      },
      {
      "firstgid":5663,
      "source":"..\/tilesets\/packed\/objects-by-category\/teleporter.json"
      },
      {
      "firstgid":5687,
      "source":"..\/tilesets\/packed\/objects-by-category\/tools.json"
      },
      {
      "firstgid":5692,
      "source":"..\/tilesets\/packed\/objects-by-category\/trap.json"
      },
      {
      "firstgid":5867,
      "source":"..\/tilesets\/packed\/objects-by-category\/wire.json"
      },
      {
      "firstgid":6013,
      "source":"..\/tilesets\/packed\/objects-by-type\/container.json"
      },
      {
      "firstgid":6251,
      "source":"..\/tilesets\/packed\/objects-by-type\/farmable.json"
      },
      {
      "firstgid":6324,
      "source":"..\/tilesets\/packed\/objects-by-type\/loungeable.json"
      },
      {
      "firstgid":6535,
      "source":"..\/tilesets\/packed\/objects-by-type\/noisy.json"
      },
      {
      "firstgid":6576,
      "source":"..\/tilesets\/packed\/objects-by-type\/teleporter.json"
      },
      {
      "firstgid":6599,
      "source":"..\/tilesets\/packed\/huge-objects.json"
      }],
    The " ..\/ " means go up one folder from the map file (I think in windows " ..\ " also works and for mac or linux or " ../ " works too). The path is different for different map files because some map files are deeper in the /dungeons/ folder than others. For this example I used /packed/dungeons/blanktemplate.json so the tile sets would be in /packed/tilesets/packed/

    If tiled shows you tile sets but doesn't show the images then we have to fix all these files above.

    This is a general example The stuff in the blue text will different for different computers,

    Based on the screen shot you posted, all the files image should be here :
    Code:
    C:\Program Files(x86)\Steam\steamapps\common\Starbound\assets\packed\tilesets\packed\materials.json
    
    Look through it and you will find something like this :
    Code:
    "tiles":
      {
      "1":
      {
      "image":"..\/..\/..\/..\/Starbound\/tiled\/packed\/materials\/aztec.png"
      },
    
    So the path to the file aztec.png is ..\/..\/..\/..\/Starbound\/tiled\/packed\/materials\/ . Every " ..\/ " means go up one folder from the tile set file. So go up four times from materials.json then add Starbound\/tiled\/packed\/materials\/aztec.png to whatever folder you're in. This will show you where the editor is looking for that image. This time it would be :

    C:\Program Files(x86)\Steam\steamapps\common\Starbound\Starbound\/tiled\/packed\/materials\/aztec.png

    Do you see the problem? The tile set is saying to look for the aztec.png file in a folder that does not exist. This is why your maps are all blank, and all the tiles in the tile set view have a little missing image icon. We can fix this by finding the spot for the real aztec.png file. It should be here :

    C:\Program Files(x86)\Steam\steamapps\common\Starbound\tiled\packed\materials\aztec.png

    Now you have all you need to know to fix the problem. Just open the materials.json file in notepad and use search and replace (CTRL+F I think). Then replace "image":"..\/..\/..\/..\/ with "image":"C:\Program Files(x86)\Steam\steamapps\common\ or with "image":"..\/..\/..\/..\/..\/ . Now we should have a working materials.json tile set file and your map should start being visible. This is only the start though, every tile set needs the right paths.

    Yeah, I always give people the benefit of the doubt when I see stuff like this, there could always be something I'm not aware of that guided their decision making. Based on just what we can see from here though, there do seem to be many superior solutions. FWIW They seem to be changing the way this is all handled based on format changes I saw in the last Nightly build I checked out. Also, I suspect Tiled editor itself will have it handled before too long as well. It is often the case that all missing files in the same non-existent directory will belong to the same real directory - so a slight improvement in the missing file error dialogue would trivialize these particular problems. I should probably start working on a way to automate this - since whenever I hack together a solution the official fix is always released two days later.
     

    Attached Files:

    Last edited: Dec 22, 2015
  12. Phantaeon

    Phantaeon Scruffy Nerf-Herder

    I've found that my png files for all the blocks are in C:\Program Files(x86)\Steam\steamapps\common\Starbound\assets\packed\tiles\materials. The only ones that are seperated from them are skyrails and platforms. So if I understand your explanation correctly I have to replace a part of what the .json file for materials is trying to look for (C:\Program Files(x86)\Steam\steamapps\common\Starbound\Starbound\tiled\packed\materials\aztec.png) To (C:\Program Files(x86)\Steam\steamapps\common\Starbound\assets\packed\/tiles\materials\aztec.png) and respectively for all other block types? I'm just asking to be ensured since I'm not great at coding.

    Also for that translation stuff. I just put that there incase any of the text needed translation. I put most of my text in english naturally.
     
  13. Monijir

    Monijir Scruffy Nerf-Herder

    The C:\Program Files(x86)\Steam\steamapps\common\Starbound\assets\packed\tiles\materials files are for something else ignore them. Start looking at the .json files in C:\Program Files(x86)\Steam\steamapps\common\Starbound\assets\packed\tilesets\ .You have to replace parts of those files. You replace the parts that say where the image files are. These images should be in C:\Program Files(x86)\Steam\steamapps\common\Starbound\tiled\packed\ somewhere. If they aren't there then that is why you have the problem.

    Can you post a screen shot of what it looks like when you try to open the map? It does not have to be in English. Since it could be a different problem. If you share your C:\Program Files(x86)\Steam\steamapps\common\Starbound\assets\packed\tilesets\materials.json file that would help a lot too. Also, did you use my old mod SBTileD? That causes problems with this too.
     
  14. Phantaeon

    Phantaeon Scruffy Nerf-Herder

    I'm not using SBTileD. Also I don't have a tiled folder in steamapps\common\Starbound.

    Code:
    {
      "margin" : 0,
      "name" : "materials",
      "properties" : {
      },
      "spacing" : 0,
      "tilecount" : 178,
      "tileheight" : 16,
      "tileproperties" : {
          "0" : {
              "//description" : "A strange crystal that makes FTL travel possible.",
              "//name" : "supermatter",
              "//shortdescription" : "Erchius Crystal Block",
              "material" : "supermatter"
          },
          "1" : {
              "//description" : "A light metallic tile, perfect for a research laboratory.",
              "//name" : "lightmetal",
              "//shortdescription" : "Light Metal",
              "material" : "lightmetal"
          },
          "10" : {
              "//description" : "Dirt, dried solid in the sun.",
              "//name" : "drydirt",
              "//shortdescription" : "Dry Dirt",
              "material" : "drydirt"
          },
          "100" : {
              "//description" : "Hard, cracked sand that shatters underfoot.",
              "//name" : "drysand",
              "//shortdescription" : "Dry Sand",
              "material" : "drysand"
          },
          "101" : {
              "//description" : "A smooth panel made of titanium.",
              "//name" : "composite01",
              "//shortdescription" : "Titanium Panel",
              "material" : "composite01"
          },
          "102" : {
              "//description" : "Blue neon symbol.",
              "//name" : "blueneonsymbolblock",
              "//shortdescription" : "Blue Neon Symbol",
              "material" : "blueneonsymbolblock"
          },
          "103" : {
              "//description" : "Wiring hides beneath this reinforced hi-tech plated material.",
              "//name" : "techhull1",
              "//shortdescription" : "Reinforced Tech Block",
              "material" : "techhull1"
          },
          "104" : {
              "//description" : "A thick coil of vines. They look strong.",
              "//name" : "vine",
              "//shortdescription" : "Vine",
              "material" : "vine"
          },
          "105" : {
              "//description" : "Fancy stone tiles for the fancy person in us all.",
              "//name" : "stonetiles",
              "//shortdescription" : "Stone Tiles",
              "material" : "stonetiles"
          },
          "106" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock15",
              "//shortdescription" : "Rock Block",
              "material" : "rock15"
          },
          "107" : {
              "//description" : "It's not quite mud, it's not quite dirt.. it's wet dirt!",
              "//name" : "wetdirt",
              "//shortdescription" : "Wet Dirt",
              "material" : "wetdirt"
          },
          "108" : {
              "//description" : "A thin gravel.",
              "//name" : "gravel",
              "//shortdescription" : "Gravel",
              "material" : "gravel"
          },
          "109" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock04",
              "//shortdescription" : "Rock Block",
              "material" : "rock04"
          },
          "11" : {
              "//description" : "Reeds block",
              "//name" : "reedsmaterial",
              "//shortdescription" : "Reed Block",
              "material" : "reedsmaterial"
          },
          "110" : {
              "//description" : "A pressurised beam.",
              "//name" : "pressurizedbeam",
              "//shortdescription" : "Pressurised Beam",
              "material" : "pressurizedbeam"
          },
          "111" : {
              "//description" : "Ancient stones with intricate carvings of creatures scratched into the surface.",
              "//name" : "temple1",
              "//shortdescription" : "Temple Block",
              "material" : "temple1"
          },
          "112" : {
              "//description" : "A block of matter.",
              "//name" : "matterblock",
              "//shortdescription" : "Matter Block",
              "material" : "matterblock"
          },
          "113" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock01",
              "//shortdescription" : "Rock Block",
              "material" : "rock01"
          },
          "114" : {
              "//description" : "A dark-tinted glass material.",
              "//name" : "blackglass",
              "//shortdescription" : "Black Glass",
              "material" : "blackglass"
          },
          "115" : {
              "//description" : "A metal wall panel.",
              "//name" : "outpostwall2",
              "//shortdescription" : "Wall Panel",
              "material" : "outpostwall2"
          },
          "116" : {
              "//description" : "Thick metal bars. Still strong, though decaying with rust.",
              "//name" : "heavyironbars",
              "//shortdescription" : "Heavy Iron Bars",
              "material" : "heavyironbars"
          },
          "117" : {
              "//description" : "Simply fabulous.",
              "//name" : "rainbowwoodblock",
              "//shortdescription" : "Rainbow Wood Planks",
              "material" : "rainbowwoodblock"
          },
          "118" : {
              "//description" : "Solid ice, tingly to the touch.",
              "//name" : "ice",
              "//shortdescription" : "Ice",
              "material" : "ice"
          },
          "119" : {
              "//description" : "Delightful ornate roofing.",
              "//name" : "ornateroofing",
              "//shortdescription" : "Ornate Roof Block",
              "material" : "ornateroofing"
          },
          "12" : {
              "//description" : "Old bricks polished to perfection.",
              "//name" : "tombbrick5",
              "//shortdescription" : "Smooth Tomb Brick",
              "material" : "tombbrick5"
          },
          "120" : {
              "//description" : "Steel chains, and not the fun kind.",
              "//name" : "chain",
              "//shortdescription" : "Steel Chain",
              "material" : "chain"
          },
          "121" : {
              "//description" : "A block made of plant matter.",
              "//name" : "plantblock",
              "//shortdescription" : "Plant Block",
              "material" : "plantblock"
          },
          "122" : {
              "//description" : "Some packed dirt.",
              "//name" : "packeddirt",
              "//shortdescription" : "Packed Dirt",
              "material" : "packeddirt"
          },
          "123" : {
              "//description" : "Sumptuous ornate wood.",
              "//name" : "ornatewood",
              "//shortdescription" : "Ornate Wood",
              "material" : "ornatewood"
          },
          "124" : {
              "//description" : "Thick and sticky mud.",
              "//name" : "mud",
              "//shortdescription" : "Mud",
              "material" : "mud"
          },
          "125" : {
              "//description" : "Tough, gritty moon rock.",
              "//name" : "moonrock",
              "//shortdescription" : "Moonrock",
              "material" : "moonrock"
          },
          "126" : {
              "//description" : "An extremely hard rock found just outside the atmosphere.",
              "//name" : "meteoriterock",
              "//shortdescription" : "Meteorite Rock",
              "material" : "meteoriterock"
          },
          "127" : {
              "//description" : "The wood is very old and creaks in the wind.",
              "//name" : "woodbridge",
              "//shortdescription" : "Wooden Bridge Block",
              "material" : "woodbridge"
          },
          "128" : {
              "//description" : "Old metal encrusted with rust.",
              "//name" : "rustymetal",
              "//shortdescription" : "Rusty Metal",
              "material" : "rustymetal"
          },
          "129" : {
              "//description" : "A block made of vibrantly flowering plant matter.",
              "//name" : "petalblock",
              "//shortdescription" : "Petal Matter Block",
              "material" : "petalblock"
          },
          "13" : {
              "//description" : "Dusty and ancient, these blocks are at home in the darkest of tombs.",
              "//name" : "tombbrick",
              "//shortdescription" : "Tomb Brick",
              "material" : "tombbrick"
          },
          "130" : {
              "//description" : "Useless scrap metal, mostly remnants of outmoded technology.",
              "//name" : "junktech",
              "//shortdescription" : "Junk Tech",
              "material" : "junktech"
          },
          "131" : {
              "//name" : "invisible",
              "invalid" : "true"
          },
          "132" : {
              "//description" : "This alloy looks incredibly durable.",
              "//name" : "lunarbaseblock",
              "//shortdescription" : "Lunar Base Block",
              "material" : "lunarbaseblock"
          },
          "133" : {
              "//description" : "Eww, a fleshy looking material!",
              "//name" : "hellstone",
              "//shortdescription" : "Block of Flesh",
              "material" : "hellstone"
          },
          "134" : {
              "//description" : "Rough and unrefined, this wood looks freshly chopped.",
              "//name" : "fullwood1",
              "//shortdescription" : "Unrefined Wood",
              "material" : "fullwood1"
          },
          "135" : {
              "//description" : "A mouldy lattice made of wood.",
              "//name" : "crosshatch",
              "//shortdescription" : "Window Lattice",
              "material" : "crosshatch"
          },
          "136" : {
              "//description" : "A hideous, foul-smelling block made of some kind of flesh.",
              "//name" : "fleshblock",
              "//shortdescription" : "Flesh Block",
              "material" : "fleshblock"
          },
          "137" : {
              "//description" : "A shining blue block of made of crystals.",
              "//name" : "crystalblock",
              "//shortdescription" : "Crystal Block",
              "material" : "crystalblock"
          },
          "138" : {
              "//description" : "Ick. Corrupted dirt.",
              "//name" : "corruptdirt",
              "//shortdescription" : "Corrupt Dirt Block",
              "material" : "corruptdirt"
          },
          "139" : {
              "//description" : "A sturdy wooden fence.",
              "//name" : "fence",
              "//shortdescription" : "Wooden Fence",
              "material" : "fence"
          },
          "14" : {
              "//description" : "The superdense core of a dead planet. Nearly unbreakable.",
              "//name" : "deadcore",
              "//shortdescription" : "Dead Core Block",
              "material" : "deadcore"
          },
          "140" : {
              "//description" : "Moondust, the thing dreams are made of.",
              "//name" : "moondust",
              "//shortdescription" : "Moondust",
              "material" : "moondust"
          },
          "141" : {
              "//description" : "A colourful wall panel.",
              "//name" : "apexshipwall",
              "//shortdescription" : "Wall Panel",
              "material" : "apexshipwall"
          },
          "142" : {
              "//description" : "Tough sandstone.",
              "//name" : "sandstone01",
              "//shortdescription" : "Sandstone",
              "material" : "sandstone01"
          },
          "143" : {
              "//description" : "Somewhat solid clouds! You can even walk on them!",
              "//name" : "cloudblock",
              "//shortdescription" : "Cloud Block",
              "material" : "cloudblock"
          },
          "144" : {
              "//description" : "These bricks look ancient. Intricate words are scratched into their surface that even my translator can't read.",
              "//name" : "temple2",
              "//shortdescription" : "Temple Bricks",
              "material" : "temple2"
          },
          "145" : {
              "//description" : "A block made of plant matter.",
              "//name" : "plantmatter",
              "//shortdescription" : "Plant Matter Block",
              "material" : "plantmatter"
          },
          "146" : {
              "//description" : "A non-functioning mirror block!",
              "//name" : "mirror",
              "//shortdescription" : "Mirror Block",
              "material" : "mirror"
          },
          "147" : {
              "//description" : "A tumbling heap of squishy eyeballs.",
              "//name" : "eyepiles",
              "//shortdescription" : "Clump of Eyes",
              "material" : "eyepiles"
          },
          "148" : {
              "//description" : "I think I see alien woodworm.",
              "//name" : "darkwood",
              "//shortdescription" : "Wood Planks",
              "material" : "darkwood"
          },
          "149" : {
              "//description" : "Cold, hard, concrete.",
              "//name" : "concrete",
              "//shortdescription" : "Concrete Block",
              "material" : "concrete"
          },
          "15" : {
              "//description" : "A solid ice block.",
              "//name" : "iceblock",
              "//shortdescription" : "Ice Block",
              "material" : "iceblock"
          },
          "150" : {
              "//description" : "Small bricks made of cobblestone.",
              "//name" : "cobblestonebrick",
              "//shortdescription" : "Cobblestone Brick",
              "material" : "cobblestonebrick"
          },
          "151" : {
              "//description" : "Stone rubble that is obviously debris from an old structure.",
              "//name" : "stonerubble",
              "//shortdescription" : "Stone Rubble",
              "material" : "stonerubble"
          },
          "152" : {
              "//description" : "A pillar style wall.",
              "//name" : "pillarblock",
              "//shortdescription" : "Pillar Block",
              "material" : "pillarblock"
          },
          "153" : {
              "//description" : "Simple roofing for a cabin.",
              "//name" : "cabinroofing",
              "//shortdescription" : "Cabin Roof Block",
              "material" : "cabinroofing"
          },
          "154" : {
              "//description" : "A log for building simple buildings.",
              "//name" : "logblock",
              "//shortdescription" : "Log Block",
              "material" : "logblock"
          },
          "155" : {
              "//description" : "Sod block.",
              "//name" : "grassy",
              "//shortdescription" : "Sod Block",
              "material" : "grassy"
          },
          "156" : {
              "//description" : "Rough, grassy stone.",
              "//name" : "grassyrock",
              "//shortdescription" : "Grassy Rock",
              "material" : "grassyrock"
          },
          "157" : {
              "//description" : "A frozen dirt block.",
              "//name" : "frozendirt",
              "//shortdescription" : "Frozen Dirt Block",
              "material" : "frozendirt"
          },
          "158" : {
              "//description" : "This rock is glowing with bioluminescence.",
              "//name" : "biorock",
              "//shortdescription" : "Bioluminescent Rock",
              "material" : "biorock"
          },
          "159" : {
              "//description" : "This rock is glowing with bioluminescence.",
              "//name" : "biorock2",
              "//shortdescription" : "Bioluminescent Blue Rock",
              "material" : "biorock2"
          },
          "16" : {
              "//description" : "Melting ice makes a thick slush.",
              "//name" : "slush",
              "//shortdescription" : "Slush",
              "material" : "slush"
          },
          "160" : {
              "//description" : "A roughly woven wicker supports.",
              "//name" : "wickersupport",
              "//shortdescription" : "Wicker Support Block",
              "material" : "wickersupport"
          },
          "161" : {
              "//description" : "Rough and unrefined, this wood has a colourful center.",
              "//name" : "rainbowwood",
              "//shortdescription" : "Unrefined Rainbow Wood",
              "material" : "rainbowwood"
          },
          "162" : {
              "//description" : "Disgusting chunky toxic waste. Lovely.",
              "//name" : "waste",
              "//shortdescription" : "Toxic Waste Block",
              "material" : "waste"
          },
          "163" : {
              "//description" : "A solid copper window frame.",
              "//name" : "copperwindow",
              "//shortdescription" : "Copper Window",
              "material" : "copperwindow"
          },
          "164" : {
              "//description" : "This copper block has a distinct gear-like imprint.",
              "//name" : "copperblock",
              "//shortdescription" : "Copper Gear Block",
              "material" : "copperblock"
          },
          "165" : {
              "//description" : "Copper Roofing",
              "//name" : "copperroofing",
              "//shortdescription" : "Copper Roofing",
              "material" : "copperroofing"
          },
          "166" : {
              "//description" : "A silver screw.",
              "//name" : "silverscrew",
              "//shortdescription" : "Silver Screw",
              "material" : "silverscrew"
          },
          "167" : {
              "//description" : "A pressurised girder.",
              "//name" : "pressurizedgirder",
              "//shortdescription" : "Pressurised Girder Block",
              "material" : "pressurizedgirder"
          },
          "168" : {
              "//description" : "A sewer pipe.",
              "//name" : "sewerpipe",
              "//shortdescription" : "Sewer Pipe",
              "material" : "sewerpipe"
          },
          "169" : {
              "//description" : "A strong looking metal girder.",
              "//name" : "girder",
              "//shortdescription" : "Girder Block",
              "material" : "girder"
          },
          "17" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock12",
              "//shortdescription" : "Rock Block",
              "material" : "rock12"
          },
          "170" : {
              "//description" : "A sturdy copper fence.",
              "//name" : "copperfence",
              "//shortdescription" : "Copper Fence",
              "material" : "copperfence"
          },
          "171" : {
              "//description" : "A colourful support block.",
              "//name" : "apexshipsupport",
              "//shortdescription" : "Ship Support Block",
              "material" : "apexshipsupport"
          },
          "172" : {
              "//description" : "A heavy pipe, commonly used in waste systems.",
              "//name" : "heavypipe",
              "//shortdescription" : "Heavy Pipe",
              "material" : "heavypipe"
          },
          "173" : {
              "//description" : "A colourful wall panel.",
              "//name" : "outpostsupport",
              "//shortdescription" : "Outpost Girder Block",
              "material" : "outpostsupport"
          },
          "174" : {
              "//description" : "A block made of vibrantly flowering plant matter.",
              "//name" : "floweryblock",
              "//shortdescription" : "Flowery Matter Block",
              "material" : "floweryblock"
          },
          "175" : {
              "//description" : "A block as pitch as shadow.",
              "//name" : "shadowwallblock",
              "//shortdescription" : "Shadow Wall Block",
              "material" : "shadowwallblock"
          },
          "176" : {
              "//description" : "A block as pitch as shadow.",
              "//name" : "shadowblock",
              "//shortdescription" : "Shadow Block",
              "material" : "shadowblock"
          },
          "177" : {
              "//description" : "Shadowy and spikey block.",
              "//name" : "shadowspikeblock",
              "//shortdescription" : "Shadow Spike Block",
              "material" : "shadowspikeblock"
          },
          "18" : {
              "//description" : "...",
              "//name" : "blackblock",
              "//shortdescription" : "...",
              "material" : "blackblock"
          },
          "19" : {
              "//description" : "Bamboo",
              "//name" : "bamboo",
              "//shortdescription" : "Bamboo",
              "material" : "bamboo"
          },
          "2" : {
              "//description" : "Nicely painted brickwork.",
              "//name" : "homewalls1",
              "//shortdescription" : "Painted Brick",
              "material" : "homewalls1"
          },
          "20" : {
              "//description" : "A block made up of treasure!",
              "//name" : "treasurehoard",
              "//shortdescription" : "Tresaure Hoard Block",
              "material" : "treasurehoard"
          },
          "21" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock17",
              "//shortdescription" : "Rock Block",
              "material" : "rock17"
          },
          "22" : {
              "//description" : "Beautiful, smooth moonstone.",
              "//name" : "moonstone",
              "//shortdescription" : "Moonstone",
              "material" : "moonstone"
          },
          "23" : {
              "//description" : "A solid iron block.",
              "//name" : "ironblock",
              "//shortdescription" : "Iron Block",
              "material" : "ironblock"
          },
          "24" : {
              "//description" : "This looks hi-tech!",
              "//name" : "metallic",
              "//shortdescription" : "Hi-tech Block",
              "material" : "metallic"
          },
          "25" : {
              "//description" : "Thick metal bars. Still strong, though decaying with rust.",
              "//name" : "bars",
              "//shortdescription" : "Metal Bars",
              "material" : "bars"
          },
          "26" : {
              "//description" : "Rough and unrefined, this wood looks freshly chopped.",
              "//name" : "fullwood2",
              "//shortdescription" : "Unrefined Wood",
              "material" : "fullwood2"
          },
          "27" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock02",
              "//shortdescription" : "Rock Block",
              "material" : "rock02"
          },
          "28" : {
              "//description" : "Old wooden blinds that don't let much light through.",
              "//name" : "woodenwindow2",
              "//shortdescription" : "Wooden Blinds",
              "material" : "woodenwindow2"
          },
          "29" : {
              "//description" : "Small stone slabs, perfect for the finer details.",
              "//name" : "castlewalls2",
              "//shortdescription" : "Small Stone Brick",
              "material" : "castlewalls2"
          },
          "3" : {
              "//description" : "Polished bone made into a building material.",
              "//name" : "bonematerial",
              "//shortdescription" : "Bone Block",
              "material" : "bonematerial"
          },
          "30" : {
              "//description" : "Light seems to twist inside the crystals.",
              "//name" : "purplecrystal",
              "//shortdescription" : "Crystal Block",
              "material" : "purplecrystal"
          },
          "31" : {
              "//description" : "An outpost wall.",
              "//name" : "outpost",
              "//shortdescription" : "Outpost Wall",
              "material" : "outpost"
          },
          "32" : {
              "//description" : "Pressurised steel.",
              "//name" : "pressurizedsteel",
              "//shortdescription" : "Pressurised Steel",
              "material" : "pressurizedsteel"
          },
          "33" : {
              "//description" : "These old bricks are unmarked.",
              "//name" : "tombbrick2",
              "//shortdescription" : "Unmarked Tomb Brick",
              "material" : "tombbrick2"
          },
          "34" : {
              "//description" : "A whole block of solid platinum.",
              "//name" : "platinumblock",
              "//shortdescription" : "Platinum Block",
              "material" : "platinumblock"
          },
          "35" : {
              "//description" : "A solid material made from the remains of fallen creatures... I think I see an eyeball.",
              "//name" : "hive",
              "//shortdescription" : "Hivestone",
              "material" : "hive"
          },
          "36" : {
              "//description" : "Hard stones, smooth to the touch.",
              "//name" : "cobblestone",
              "//shortdescription" : "Cobblestone",
              "material" : "cobblestone"
          },
          "37" : {
              "//description" : "Thick, rancid tar. It reminds me of my mothers home-made jello.",
              "//name" : "tar",
              "//shortdescription" : "Tar",
              "material" : "tar"
          },
          "38" : {
              "//description" : "This rock come from an Alien world.",
              "//name" : "alienrock",
              "//shortdescription" : "Alien Rock Block",
              "material" : "alienrock"
          },
          "39" : {
              "//description" : "An ancient block.",
              "//name" : "ancientblock",
              "//shortdescription" : "Ancient Block",
              "material" : "ancientblock"
          },
          "4" : {
              "//description" : "A traditional screen panel.",
              "//name" : "shojiscreenpanel",
              "//shortdescription" : "Shoji Screen Panel",
              "material" : "shojiscreenpanel"
          },
          "40" : {
              "//description" : "A little bit of metal.",
              "//name" : "apexshipdetails",
              "//shortdescription" : "Metal Railing",
              "material" : "apexshipdetails"
          },
          "41" : {
              "//description" : "Ash packed tight into a solid block.",
              "//name" : "ash",
              "//shortdescription" : "Ash Block",
              "material" : "ash"
          },
          "42" : {
              "//description" : "-todo-",
              "//name" : "asphalt",
              "//shortdescription" : "Asphalt",
              "material" : "asphalt"
          },
          "43" : {
              "//description" : "Cheap, tacky wallpaper.",
              "//name" : "cheapwallpaper",
              "//shortdescription" : "Tacky Wallpaper",
              "material" : "cheapwallpaper"
          },
          "44" : {
              "//description" : "Small glyphs cover the stone.",
              "//name" : "aztec",
              "//shortdescription" : "Glyph Block",
              "material" : "aztec"
          },
          "45" : {
              "//description" : "An advanced synthetic Avian material. Its markings are printed on.",
              "//name" : "aztectech",
              "//shortdescription" : "Avian Tech Block",
              "material" : "aztectech"
          },
          "46" : {
              "//description" : "A classy baseboard for the bottom of all your walls!",
              "//name" : "baseboard",
              "//shortdescription" : "Classic Baseboard",
              "material" : "baseboard"
          },
          "47" : {
              "//description" : "An ancient brick.",
              "//name" : "ancientbrick",
              "//shortdescription" : "Ancient Brick",
              "material" : "ancientbrick"
          },
          "48" : {
              "//description" : "Pulsating brain matter.. I wonder what it's thinking.",
              "//name" : "brains",
              "//shortdescription" : "Brains",
              "material" : "brains"
          },
          "49" : {
              "//description" : "Soft faded brick.",
              "//name" : "fadedblocks",
              "//shortdescription" : "Soft Brick Block",
              "material" : "fadedblocks"
          },
          "5" : {
              "//description" : "Thatched roofing.",
              "//name" : "thatch",
              "//shortdescription" : "Thatch Block",
              "material" : "thatch"
          },
          "50" : {
              "//description" : "Strong stone slabs, perfect for building a castle.",
              "//name" : "castlewalls1",
              "//shortdescription" : "Heavy Stone Brick",
              "material" : "castlewalls1"
          },
          "51" : {
              "//description" : "Weathered roof tiles. Their shape makes me feel uneasy.",
              "//name" : "rooftiles",
              "//shortdescription" : "Medieval Roof Tiles",
              "material" : "rooftiles"
          },
          "52" : {
              "//description" : "Stacked granite.",
              "//name" : "rock14",
              "//shortdescription" : "Granite Block",
              "material" : "rock14"
          },
          "53" : {
              "//description" : "Delightful ornate flooring.",
              "//name" : "ornateflooring",
              "//shortdescription" : "Ornate Flooring",
              "material" : "ornateflooring"
          },
          "54" : {
              "//description" : "Esquisite ornate tiles.",
              "//name" : "ornatetiles",
              "//shortdescription" : "Ornate Tiles",
              "material" : "ornatetiles"
          },
          "55" : {
              "//description" : "Little wormlike forms wriggle beneath the surface of this glassy stone.",
              "//name" : "direstone",
              "//shortdescription" : "Dire Stone",
              "material" : "direstone"
          },
          "56" : {
              "//description" : "A crudely produced set of rock bricks.",
              "//name" : "rockbrick",
              "//shortdescription" : "Rock Bricks",
              "material" : "rockbrick"
          },
          "57" : {
              "//description" : "A rusty old block.",
              "//name" : "rustyblock",
              "//shortdescription" : "Rusty Block",
              "material" : "rustyblock"
          },
          "58" : {
              "//description" : "Sharp rocks produced by blasts of enormous heat.",
              "//name" : "blaststone",
              "//shortdescription" : "Blaststone Block",
              "material" : "blaststone"
          },
          "59" : {
              "//description" : "A whole block of silver.",
              "//name" : "silverblock",
              "//shortdescription" : "Silver Block",
              "material" : "silverblock"
          },
          "6" : {
              "//description" : "A dark, smooth stone block. Mysterious.",
              "//name" : "darksmoothstone",
              "//shortdescription" : "Dark Smooth Stone",
              "material" : "darksmoothstone"
          },
          "60" : {
              "//description" : "Rough, unrefined limestone.",
              "//name" : "limestone",
              "//shortdescription" : "Limestone",
              "material" : "limestone"
          },
          "61" : {
              "//description" : "A block made of soft fungus.",
              "//name" : "shroomblock",
              "//shortdescription" : "Mushroom Block",
              "material" : "shroomblock"
          },
          "62" : {
              "//description" : "Magmarock. Hot stuff.",
              "//name" : "magmarock",
              "//shortdescription" : "Magmarock",
              "material" : "magmarock"
          },
          "63" : {
              "//description" : "Dark and cold to the touch, these bricks seem to suck the heat from the room.",
              "//name" : "tombbrick4",
              "//shortdescription" : "Dark Tomb Brick",
              "material" : "tombbrick4"
          },
          "64" : {
              "//description" : "Bricks made from smooth sandstone.",
              "//name" : "sandstoneblock",
              "//shortdescription" : "Sandstone Bricks",
              "material" : "sandstoneblock"
          },
          "65" : {
              "//description" : "A strange alien wood, with stripes.",
              "//name" : "alienstripedblock",
              "//shortdescription" : "Alien Striped Wood Block",
              "material" : "alienstripedblock"
          },
          "66" : {
              "//description" : "Small dusty bricks packed with dirt.",
              "//name" : "tombbrick3",
              "//shortdescription" : "Small Tomb Brick",
              "material" : "tombbrick3"
          },
          "67" : {
              "//description" : "Dusty but finely crafted bricks.",
              "//name" : "temple3",
              "//shortdescription" : "Small Temple Bricks",
              "material" : "temple3"
          },
          "68" : {
              "//description" : "Reminds me of the inside of the medical centre back home.",
              "//name" : "plate",
              "//shortdescription" : "Smooth Plated Block",
              "material" : "plate"
          },
          "69" : {
              "//description" : "Neon Block",
              "//name" : "neonblock",
              "//shortdescription" : "Neon Block",
              "material" : "neonblock"
          },
          "7" : {
              "//description" : "Small but perfectly formed bricks. Quaint.",
              "//name" : "brick",
              "//shortdescription" : "Clay Brick Block",
              "material" : "brick"
          },
          "70" : {
              "//description" : "A solid steel block.",
              "//name" : "mediummetal",
              "//shortdescription" : "Steel Block",
              "material" : "mediummetal"
          },
          "71" : {
              "//description" : "This wood panelling is the bad kind of retro.",
              "//name" : "woodpanelling",
              "//shortdescription" : "Wood Panelling",
              "material" : "woodpanelling"
          },
          "72" : {
              "//description" : "Sweet-smelling rock candy!",
              "//name" : "candyblock",
              "//shortdescription" : "Candy Block",
              "material" : "candyblock"
          },
          "73" : {
              "//description" : "A roughly woven wicker material.",
              "//name" : "wicker",
              "//shortdescription" : "Wicker Block",
              "material" : "wicker"
          },
          "74" : {
              "//description" : "Disgusting sewage. Lovely.",
              "//name" : "sewage",
              "//shortdescription" : "Sewage Block",
              "material" : "sewage"
          },
          "75" : {
              "//description" : "Dirty looking dirt.",
              "//name" : "dirt",
              "//shortdescription" : "Dirt Block",
              "material" : "dirt"
          },
          "76" : {
              "//description" : "Dry and dusty clay.",
              "//name" : "clay",
              "//shortdescription" : "Clay",
              "material" : "clay"
          },
          "77" : {
              "//description" : "Solid obsidian. It reflects the light.",
              "//name" : "obsidian",
              "//shortdescription" : "Obsidian",
              "material" : "obsidian"
          },
          "78" : {
              "//description" : "Packed dirt, covered in moss.",
              "//name" : "mossypackeddirt",
              "//shortdescription" : "Packed Dirt",
              "material" : "mossypackeddirt"
          },
          "79" : {
              "//description" : "A wall panel marking a potential hazard. Keep clear.",
              "//name" : "hazard",
              "//shortdescription" : "Hazard Block",
              "material" : "hazard"
          },
          "8" : {
              "//description" : "A small block.",
              "//name" : "throwingblock",
              "//shortdescription" : "Throwing Block",
              "material" : "throwingblock"
          },
          "80" : {
              "//description" : "A thick mucus. It's tempting to poke it.",
              "//name" : "slime",
              "//shortdescription" : "Slime Block",
              "material" : "slime"
          },
          "81" : {
              "//description" : "Old wooden window frame.",
              "//name" : "woodenwindow1",
              "//shortdescription" : "Wooden Window",
              "material" : "woodenwindow1"
          },
          "82" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock03",
              "//shortdescription" : "Rock Block",
              "material" : "rock03"
          },
          "83" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock20",
              "//shortdescription" : "Rock Block",
              "material" : "rock20"
          },
          "84" : {
              "//description" : "Just a block made of coconut.",
              "//name" : "coconutblock",
              "//shortdescription" : "Coconut Block",
              "material" : "coconutblock"
          },
          "85" : {
              "//description" : "I can see my reflection... it's hideous!",
              "//name" : "glass",
              "//shortdescription" : "Glass Block",
              "material" : "glass"
          },
          "86" : {
              "//description" : "Old and poorly crafted blocks, crude drawings are scratched into the stone.",
              "//name" : "temple4",
              "//shortdescription" : "Simple Temple Blocks",
              "material" : "temple4"
          },
          "87" : {
              "//description" : "A fine glittering sand. Could probably be made into glass!",
              "//name" : "sand",
              "//shortdescription" : "Fine Sand",
              "material" : "sand"
          },
          "88" : {
              "//description" : "Soft and fluffy snow.",
              "//name" : "snow",
              "//shortdescription" : "Snow",
              "material" : "snow"
          },
          "89" : {
              "//description" : "Some classy wallpaper for the classy frog in us all.",
              "//name" : "wallpaper",
              "//shortdescription" : "Classic Wallpaper",
              "material" : "wallpaper"
          },
          "9" : {
              "//description" : "A whole block of solid gold.",
              "//name" : "goldblock",
              "//shortdescription" : "Gold Block",
              "material" : "goldblock"
          },
          "90" : {
              "//description" : "A remarkably ornate wall.",
              "//name" : "ornatewall",
              "//shortdescription" : "Ornate Wall",
              "material" : "ornatewall"
          },
          "91" : {
              "//description" : "A metal wall panel.",
              "//name" : "outpostwall1",
              "//shortdescription" : "Wall Panel",
              "material" : "outpostwall1"
          },
          "92" : {
              "//description" : "The water appears to have frozen.",
              "//name" : "frozenwater",
              "//shortdescription" : "Frozen Water",
              "material" : "frozenwater"
          },
          "93" : {
              "//description" : "A pile of dusty old books, they're full of tales of dragons and knights.",
              "//name" : "bookpiles",
              "//shortdescription" : "Pile of Books",
              "material" : "bookpiles"
          },
          "94" : {
              "//description" : "Smooth metal, cold to the touch.",
              "//name" : "smoothmetal",
              "//shortdescription" : "Smooth Metal",
              "material" : "smoothmetal"
          },
          "95" : {
              "//description" : "Soft and warm sand.",
              "//name" : "sand2",
              "//shortdescription" : "Sand",
              "material" : "sand2"
          },
          "96" : {
              "//description" : "-todo-.",
              "//name" : "cactiblock",
              "//shortdescription" : "Cacti Block",
              "material" : "cactiblock"
          },
          "97" : {
              "//description" : "Spider silk.",
              "//name" : "spidersilkblock",
              "//shortdescription" : "Spider Silk Block",
              "material" : "spidersilkblock"
          },
          "98" : {
              "//description" : "A plastic toy block.",
              "//name" : "redtoyblock",
              "//shortdescription" : "Red Toy Block",
              "material" : "redtoyblock"
          },
          "99" : {
              "//description" : "Rough, unrefined stone.",
              "//name" : "rock19",
              "//shortdescription" : "Rock Block",
              "material" : "rock19"
          }
      },
      "tiles" : {
          "0" : {
              "image" : "./../../../../tiled/packed/materials/supermatter.png"
          },
          "1" : {
              "image" : "./../../../../tiled/packed/materials/lightmetal.png"
          },
          "10" : {
              "image" : "./../../../../tiled/packed/materials/drydirt.png"
          },
          "100" : {
              "image" : "./../../../../tiled/packed/materials/drysand.png"
          },
          "101" : {
              "image" : "./../../../../tiled/packed/materials/composite01.png"
          },
          "102" : {
              "image" : "./../../../../tiled/packed/materials/blueneonsymbolblock.png"
          },
          "103" : {
              "image" : "./../../../../tiled/packed/materials/techhull1.png"
          },
          "104" : {
              "image" : "./../../../../tiled/packed/materials/vine.png"
          },
          "105" : {
              "image" : "./../../../../tiled/packed/materials/stonetiles.png"
          },
          "106" : {
              "image" : "./../../../../tiled/packed/materials/rock15.png"
          },
          "107" : {
              "image" : "./../../../../tiled/packed/materials/wetdirt.png"
          },
          "108" : {
              "image" : "./../../../../tiled/packed/materials/gravel.png"
          },
          "109" : {
              "image" : "./../../../../tiled/packed/materials/rock04.png"
          },
          "11" : {
              "image" : "./../../../../tiled/packed/materials/reedsmaterial.png"
          },
          "110" : {
              "image" : "./../../../../tiled/packed/materials/pressurizedbeam.png"
          },
          "111" : {
              "image" : "./../../../../tiled/packed/materials/temple1.png"
          },
          "112" : {
              "image" : "./../../../../tiled/packed/materials/matterblock.png"
          },
          "113" : {
              "image" : "./../../../../tiled/packed/materials/rock01.png"
          },
          "114" : {
              "image" : "./../../../../tiled/packed/materials/blackglass.png"
          },
          "115" : {
              "image" : "./../../../../tiled/packed/materials/outpostwall2.png"
          },
          "116" : {
              "image" : "./../../../../tiled/packed/materials/heavyironbars.png"
          },
          "117" : {
              "image" : "./../../../../tiled/packed/materials/rainbowwoodblock.png"
          },
          "118" : {
              "image" : "./../../../../tiled/packed/materials/ice.png"
          },
          "119" : {
              "image" : "./../../../../tiled/packed/materials/ornateroofing.png"
          },
          "12" : {
              "image" : "./../../../../tiled/packed/materials/tombbrick5.png"
          },
          "120" : {
              "image" : "./../../../../tiled/packed/materials/chain.png"
          },
          "121" : {
              "image" : "./../../../../tiled/packed/materials/plantblock.png"
          },
          "122" : {
              "image" : "./../../../../tiled/packed/materials/packeddirt.png"
          },
          "123" : {
              "image" : "./../../../../tiled/packed/materials/ornatewood.png"
          },
          "124" : {
              "image" : "./../../../../tiled/packed/materials/mud.png"
          },
          "125" : {
              "image" : "./../../../../tiled/packed/materials/moonrock.png"
          },
          "126" : {
              "image" : "./../../../../tiled/packed/materials/meteoriterock.png"
          },
          "127" : {
              "image" : "./../../../../tiled/packed/materials/woodbridge.png"
          },
          "128" : {
              "image" : "./../../../../tiled/packed/materials/rustymetal.png"
          },
          "129" : {
              "image" : "./../../../../tiled/packed/materials/petalblock.png"
          },
          "13" : {
              "image" : "./../../../../tiled/packed/materials/tombbrick.png"
          },
          "130" : {
              "image" : "./../../../../tiled/packed/materials/junktech.png"
          },
          "131" : {
              "image" : "./../../../../tiled/packed/../packed/invalid.png"
          },
          "132" : {
              "image" : "./../../../../tiled/packed/materials/lunarbaseblock.png"
          },
          "133" : {
              "image" : "./../../../../tiled/packed/materials/hellstone.png"
          },
          "134" : {
              "image" : "./../../../../tiled/packed/materials/fullwood1.png"
          },
          "135" : {
              "image" : "./../../../../tiled/packed/materials/crosshatch.png"
          },
          "136" : {
              "image" : "./../../../../tiled/packed/materials/fleshblock.png"
          },
          "137" : {
              "image" : "./../../../../tiled/packed/materials/crystalblock.png"
          },
          "138" : {
              "image" : "./../../../../tiled/packed/materials/corruptdirt.png"
          },
          "139" : {
              "image" : "./../../../../tiled/packed/materials/fence.png"
          },
          "14" : {
              "image" : "./../../../../tiled/packed/materials/deadcore.png"
          },
          "140" : {
              "image" : "./../../../../tiled/packed/materials/moondust.png"
          },
          "141" : {
              "image" : "./../../../../tiled/packed/materials/apexshipwall.png"
          },
          "142" : {
              "image" : "./../../../../tiled/packed/materials/sandstone01.png"
          },
          "143" : {
              "image" : "./../../../../tiled/packed/materials/cloudblock.png"
          },
          "144" : {
              "image" : "./../../../../tiled/packed/materials/temple2.png"
          },
          "145" : {
              "image" : "./../../../../tiled/packed/materials/plantmatter.png"
          },
          "146" : {
              "image" : "./../../../../tiled/packed/materials/mirror.png"
          },
          "147" : {
              "image" : "./../../../../tiled/packed/materials/eyepiles.png"
          },
          "148" : {
              "image" : "./../../../../tiled/packed/materials/darkwood.png"
          },
          "149" : {
              "image" : "./../../../../tiled/packed/materials/concrete.png"
          },
          "15" : {
              "image" : "./../../../../tiled/packed/materials/iceblock.png"
          },
          "150" : {
              "image" : "./../../../../tiled/packed/materials/cobblestonebrick.png"
          },
          "151" : {
              "image" : "./../../../../tiled/packed/materials/stonerubble.png"
          },
          "152" : {
              "image" : "./../../../../tiled/packed/materials/pillarblock.png"
          },
          "153" : {
              "image" : "./../../../../tiled/packed/materials/cabinroofing.png"
          },
          "154" : {
              "image" : "./../../../../tiled/packed/materials/logblock.png"
          },
          "155" : {
              "image" : "./../../../../tiled/packed/materials/grassy.png"
          },
          "156" : {
              "image" : "./../../../../tiled/packed/materials/grassyrock.png"
          },
          "157" : {
              "image" : "./../../../../tiled/packed/materials/frozendirt.png"
          },
          "158" : {
              "image" : "./../../../../tiled/packed/materials/biorock.png"
          },
          "159" : {
              "image" : "./../../../../tiled/packed/materials/biorock2.png"
          },
          "16" : {
              "image" : "./../../../../tiled/packed/materials/slush.png"
          },
          "160" : {
              "image" : "./../../../../tiled/packed/materials/wickersupport.png"
          },
          "161" : {
              "image" : "./../../../../tiled/packed/materials/rainbowwood.png"
          },
          "162" : {
              "image" : "./../../../../tiled/packed/materials/waste.png"
          },
          "163" : {
              "image" : "./../../../../tiled/packed/materials/copperwindow.png"
          },
          "164" : {
              "image" : "./../../../../tiled/packed/materials/copperblock.png"
          },
          "165" : {
              "image" : "./../../../../tiled/packed/materials/copperroofing.png"
          },
          "166" : {
              "image" : "./../../../../tiled/packed/materials/silverscrew.png"
          },
          "167" : {
              "image" : "./../../../../tiled/packed/materials/pressurizedgirder.png"
          },
          "168" : {
              "image" : "./../../../../tiled/packed/materials/sewerpipe.png"
          },
          "169" : {
              "image" : "./../../../../tiled/packed/materials/girder.png"
          },
          "17" : {
              "image" : "./../../../../tiled/packed/materials/rock12.png"
          },
          "170" : {
              "image" : "./../../../../tiled/packed/materials/copperfence.png"
          },
          "171" : {
              "image" : "./../../../../tiled/packed/materials/apexshipsupport.png"
          },
          "172" : {
              "image" : "./../../../../tiled/packed/materials/heavypipe.png"
          },
          "173" : {
              "image" : "./../../../../tiled/packed/materials/outpostsupport.png"
          },
          "174" : {
              "image" : "./../../../../tiled/packed/materials/floweryblock.png"
          },
          "175" : {
              "image" : "./../../../../tiled/packed/materials/shadowwallblock.png"
          },
          "176" : {
              "image" : "./../../../../tiled/packed/materials/shadowblock.png"
          },
          "177" : {
              "image" : "./../../../../tiled/packed/materials/shadowspikeblock.png"
          },
          "18" : {
              "image" : "./../../../../tiled/packed/materials/blackblock.png"
          },
          "19" : {
              "image" : "./../../../../tiled/packed/materials/bamboo.png"
          },
          "2" : {
              "image" : "./../../../../tiled/packed/materials/homewalls1.png"
          },
          "20" : {
              "image" : "./../../../../tiled/packed/materials/treasurehoard.png"
          },
          "21" : {
              "image" : "./../../../../tiled/packed/materials/rock17.png"
          },
          "22" : {
              "image" : "./../../../../tiled/packed/materials/moonstone.png"
          },
          "23" : {
              "image" : "./../../../../tiled/packed/materials/ironblock.png"
          },
          "24" : {
              "image" : "./../../../../tiled/packed/materials/metallic.png"
          },
          "25" : {
              "image" : "./../../../../tiled/packed/materials/bars.png"
          },
          "26" : {
              "image" : "./../../../../tiled/packed/materials/fullwood2.png"
          },
          "27" : {
              "image" : "./../../../../tiled/packed/materials/rock02.png"
          },
          "28" : {
              "image" : "./../../../../tiled/packed/materials/woodenwindow2.png"
          },
          "29" : {
              "image" : "./../../../../tiled/packed/materials/castlewalls2.png"
          },
          "3" : {
              "image" : "./../../../../tiled/packed/materials/bonematerial.png"
          },
          "30" : {
              "image" : "./../../../../tiled/packed/materials/purplecrystal.png"
          },
          "31" : {
              "image" : "./../../../../tiled/packed/materials/outpost.png"
          },
          "32" : {
              "image" : "./../../../../tiled/packed/materials/pressurizedsteel.png"
          },
          "33" : {
              "image" : "./../../../../tiled/packed/materials/tombbrick2.png"
          },
          "34" : {
              "image" : "./../../../../tiled/packed/materials/platinumblock.png"
          },
          "35" : {
              "image" : "./../../../../tiled/packed/materials/hive.png"
          },
          "36" : {
              "image" : "./../../../../tiled/packed/materials/cobblestone.png"
          },
          "37" : {
              "image" : "./../../../../tiled/packed/materials/tar.png"
          },
          "38" : {
              "image" : "./../../../../tiled/packed/materials/alienrock.png"
          },
          "39" : {
              "image" : "./../../../../tiled/packed/materials/ancientblock.png"
          },
          "4" : {
              "image" : "./../../../../tiled/packed/materials/shojiscreenpanel.png"
          },
          "40" : {
              "image" : "./../../../../tiled/packed/materials/apexshipdetails.png"
          },
          "41" : {
              "image" : "./../../../../tiled/packed/materials/ash.png"
          },
          "42" : {
              "image" : "./../../../../tiled/packed/materials/asphalt.png"
          },
          "43" : {
              "image" : "./../../../../tiled/packed/materials/cheapwallpaper.png"
          },
          "44" : {
              "image" : "./../../../../tiled/packed/materials/aztec.png"
          },
          "45" : {
              "image" : "./../../../../tiled/packed/materials/aztectech.png"
          },
          "46" : {
              "image" : "./../../../../tiled/packed/materials/baseboard.png"
          },
          "47" : {
              "image" : "./../../../../tiled/packed/materials/ancientbrick.png"
          },
          "48" : {
              "image" : "./../../../../tiled/packed/materials/brains.png"
          },
          "49" : {
              "image" : "./../../../../tiled/packed/materials/fadedblocks.png"
          },
          "5" : {
              "image" : "./../../../../tiled/packed/materials/thatch.png"
          },
          "50" : {
              "image" : "./../../../../tiled/packed/materials/castlewalls1.png"
          },
          "51" : {
              "image" : "./../../../../tiled/packed/materials/rooftiles.png"
          },
          "52" : {
              "image" : "./../../../../tiled/packed/materials/rock14.png"
          },
          "53" : {
              "image" : "./../../../../tiled/packed/materials/ornateflooring.png"
          },
          "54" : {
              "image" : "./../../../../tiled/packed/materials/ornatetiles.png"
          },
          "55" : {
              "image" : "./../../../../tiled/packed/materials/direstone.png"
          },
          "56" : {
              "image" : "./../../../../tiled/packed/materials/rockbrick.png"
          },
          "57" : {
              "image" : "./../../../../tiled/packed/materials/rustyblock.png"
          },
          "58" : {
              "image" : "./../../../../tiled/packed/materials/blaststone.png"
          },
          "59" : {
              "image" : "./../../../../tiled/packed/materials/silverblock.png"
          },
          "6" : {
              "image" : "./../../../../tiled/packed/materials/darksmoothstone.png"
          },
          "60" : {
              "image" : "./../../../../tiled/packed/materials/limestone.png"
          },
          "61" : {
              "image" : "./../../../../tiled/packed/materials/shroomblock.png"
          },
          "62" : {
              "image" : "./../../../../tiled/packed/materials/magmarock.png"
          },
          "63" : {
              "image" : "./../../../../tiled/packed/materials/tombbrick4.png"
          },
          "64" : {
              "image" : "./../../../../tiled/packed/materials/sandstoneblock.png"
          },
          "65" : {
              "image" : "./../../../../tiled/packed/materials/alienstripedblock.png"
          },
          "66" : {
              "image" : "./../../../../tiled/packed/materials/tombbrick3.png"
          },
          "67" : {
              "image" : "./../../../../tiled/packed/materials/temple3.png"
          },
          "68" : {
              "image" : "./../../../../tiled/packed/materials/plate.png"
          },
          "69" : {
              "image" : "./../../../../tiled/packed/materials/neonblock.png"
          },
          "7" : {
              "image" : "./../../../../tiled/packed/materials/brick.png"
          },
          "70" : {
              "image" : "./../../../../tiled/packed/materials/mediummetal.png"
          },
          "71" : {
              "image" : "./../../../../tiled/packed/materials/woodpanelling.png"
          },
          "72" : {
              "image" : "./../../../../tiled/packed/materials/candyblock.png"
          },
          "73" : {
              "image" : "./../../../../tiled/packed/materials/wicker.png"
          },
          "74" : {
              "image" : "./../../../../tiled/packed/materials/sewage.png"
          },
          "75" : {
              "image" : "./../../../../tiled/packed/materials/dirt.png"
          },
          "76" : {
              "image" : "./../../../../tiled/packed/materials/clay.png"
          },
          "77" : {
              "image" : "./../../../../tiled/packed/materials/obsidian.png"
          },
          "78" : {
              "image" : "./../../../../tiled/packed/materials/mossypackeddirt.png"
          },
          "79" : {
              "image" : "./../../../../tiled/packed/materials/hazard.png"
          },
          "8" : {
              "image" : "./../../../../tiled/packed/materials/throwingblock.png"
          },
          "80" : {
              "image" : "./../../../../tiled/packed/materials/slime.png"
          },
          "81" : {
              "image" : "./../../../../tiled/packed/materials/woodenwindow1.png"
          },
          "82" : {
              "image" : "./../../../../tiled/packed/materials/rock03.png"
          },
          "83" : {
              "image" : "./../../../../tiled/packed/materials/rock20.png"
          },
          "84" : {
              "image" : "./../../../../tiled/packed/materials/coconutblock.png"
          },
          "85" : {
              "image" : "./../../../../tiled/packed/materials/glass.png"
          },
          "86" : {
              "image" : "./../../../../tiled/packed/materials/temple4.png"
          },
          "87" : {
              "image" : "./../../../../tiled/packed/materials/sand.png"
          },
          "88" : {
              "image" : "./../../../../tiled/packed/materials/snow.png"
          },
          "89" : {
              "image" : "./../../../../tiled/packed/materials/wallpaper.png"
          },
          "9" : {
              "image" : "./../../../../tiled/packed/materials/goldblock.png"
          },
          "90" : {
              "image" : "./../../../../tiled/packed/materials/ornatewall.png"
          },
          "91" : {
              "image" : "./../../../../tiled/packed/materials/outpostwall1.png"
          },
          "92" : {
              "image" : "./../../../../tiled/packed/materials/frozenwater.png"
          },
          "93" : {
              "image" : "./../../../../tiled/packed/materials/bookpiles.png"
          },
          "94" : {
              "image" : "./../../../../tiled/packed/materials/smoothmetal.png"
          },
          "95" : {
              "image" : "./../../../../tiled/packed/materials/sand2.png"
          },
          "96" : {
              "image" : "./../../../../tiled/packed/materials/cactiblock.png"
          },
          "97" : {
              "image" : "./../../../../tiled/packed/materials/spidersilkblock.png"
          },
          "98" : {
              "image" : "./../../../../tiled/packed/materials/redtoyblock.png"
          },
          "99" : {
              "image" : "./../../../../tiled/packed/materials/rock19.png"
          }
      },
      "tilewidth" : 16
    }
     
  15. Monijir

    Monijir Scruffy Nerf-Herder

    There's your problem friend. That's the folder you need. The tile set file itself looks fine. Update to the latest Stable version from steam. it should be included.
     
  16. Phantaeon

    Phantaeon Scruffy Nerf-Herder

    That fixed it! Thanks Monjir and Mackinz! I really have no idea why I didn't have that folder since my Starbound is on high priority auto-install updates. Anyways it's fixed now :D
     
  17. Monijir

    Monijir Scruffy Nerf-Herder

    Awesome man. I guess we didn't need that huge troubleshooting post. Oh well somebody needs to start writing some more help posts for Tiled anyway.
     

Share This Page