diff --git a/README.md b/README.md index 6fb8079b2..bd888eaec 100644 --- a/README.md +++ b/README.md @@ -69,18 +69,18 @@ To improve this, add `namespace/atlas/biome/path.json` with `{ "parent": "minecr Structures can be similarly [tiled](https://github.com/sisby-folk/antique-atlas/blob/1.20/src/main/resources/assets/minecraft/atlas/structure/piece/jigsaw/single/pillager_outpost/watchtower.json) or [marked](https://github.com/sisby-folk/antique-atlas/blob/1.20/src/main/resources/assets/minecraft/atlas/structure/type/ocean_monument.json) - provided you're familiar with each type of structure identifier. -Tile textures are loaded from `textures/atlas/tiles` and use an _autotile_-like format.
-You can also add an [mcmeta file](https://github.com/sisby-folk/antique-atlas/blob/1.20/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_crossing.png.mcmeta) to adjust which other textures should "connect" and vice-versa. +Tile textures are loaded from `textures/atlas/tile` and use an _autotile_-like format.
+You can also add an [mcmeta file](https://github.com/sisby-folk/antique-atlas/blob/1.20/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_crossing.png.mcmeta) to adjust which other textures should "connect" and vice-versa. #### Markers -Marker textures are loaded from `textures/atlas/markers` and are 32x32 by default.
-You can similarly add an [mcmceta file](https://github.com/sisby-folk/antique-atlas/blob/1.20/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/end_city.png.mcmeta) to adjust size, offsets, and any custom mip levels.
+Marker textures are loaded from `textures/atlas/marker` and are 32x32 by default.
+You can similarly add an [mcmceta file](https://github.com/sisby-folk/antique-atlas/blob/1.20/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/end_city.png.mcmeta) to adjust size, offsets, and any custom mip levels.
To add a player-placeable marker, put the texture in the `custom/` subfolder. To automatically mark a new non-structure point of interest, use Surveyor's [Landmark API](https://modrinth.com/mod/surveyor). -Textures for landmark types will be used automatically when named `namespace/textures/atlas/markers/landmark/type/path.png`. +Textures for landmark types will be used automatically when named `namespace/textures/atlas/marker/landmark/type/path.png`. --- diff --git a/gradle.properties b/gradle.properties index 7cdc149e8..ff9611aaf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,6 +7,6 @@ org.gradle.configureondemand=true # Enable advanced multi-module optimizations (share tiny-remaper instance between projects) fabric.loom.multiProjectOptimisation=true # Mod Properties -baseVersion = 2.0.0-beta.8 +baseVersion = 2.0.0-beta.9 defaultBranch = 1.20 branch = 1.20 diff --git a/libs.versions.toml b/libs.versions.toml index 1c735f6f8..a48f71c23 100644 --- a/libs.versions.toml +++ b/libs.versions.toml @@ -8,7 +8,7 @@ fl = "0.15.0" yarn = "1.20.1+build.10" fapi = "0.83.0+1.20.1" kaleidoConfig = "0.1.1+1.1.0-beta.3" -surveyor = "0.1.0-beta.30+1.20" +surveyor = "0.1.0-beta.32+1.20" [plugins] loom = { id = "fabric-loom", version.ref = "loom" } diff --git a/src/main/java/folk/sisby/antique_atlas/MarkerTexture.java b/src/main/java/folk/sisby/antique_atlas/MarkerTexture.java index ca68ca289..198ce71d3 100644 --- a/src/main/java/folk/sisby/antique_atlas/MarkerTexture.java +++ b/src/main/java/folk/sisby/antique_atlas/MarkerTexture.java @@ -5,7 +5,7 @@ public record MarkerTexture(Identifier id, int offsetX, int offsetY, int textureWidth, int textureHeight, int mipLevels) { public static MarkerTexture ofId(Identifier id, int offsetX, int offsetY, int width, int height, int mipLevels) { - return new MarkerTexture(new Identifier(id.getNamespace(), "textures/atlas/markers/%s.png".formatted(id.getPath())), offsetX, offsetY, width, height, mipLevels); + return new MarkerTexture(new Identifier(id.getNamespace(), "textures/atlas/marker/%s.png".formatted(id.getPath())), offsetX, offsetY, width, height, mipLevels); } public static MarkerTexture centered(Identifier id, int width, int height, int mipLevels) { @@ -15,7 +15,7 @@ public static MarkerTexture centered(Identifier id, int width, int height, int m public static final MarkerTexture DEFAULT = centered(AntiqueAtlas.id("unknown"), 32, 32, 0); public Identifier keyId() { - return new Identifier(id.getNamespace(), id.getPath().substring("textures/atlas/markers/".length(), id.getPath().length() - 4)); + return new Identifier(id.getNamespace(), id.getPath().substring("textures/atlas/marker/".length(), id.getPath().length() - 4)); } public String displayId() { diff --git a/src/main/java/folk/sisby/antique_atlas/TileTexture.java b/src/main/java/folk/sisby/antique_atlas/TileTexture.java index 0d5025862..4d47baf00 100644 --- a/src/main/java/folk/sisby/antique_atlas/TileTexture.java +++ b/src/main/java/folk/sisby/antique_atlas/TileTexture.java @@ -9,7 +9,7 @@ public final class TileTexture { public static TileTexture empty(Identifier id, boolean innerBorder) { - return new TileTexture(new Identifier(id.getNamespace(), "textures/atlas/tiles/%s.png".formatted(id.getPath())), innerBorder, new ReferenceOpenHashSet<>(), new ReferenceOpenHashSet<>(), new ReferenceOpenHashSet<>()); + return new TileTexture(new Identifier(id.getNamespace(), "textures/atlas/tile/%s.png".formatted(id.getPath())), innerBorder, new ReferenceOpenHashSet<>(), new ReferenceOpenHashSet<>(), new ReferenceOpenHashSet<>()); } public static final TileTexture DEFAULT = empty(AntiqueAtlas.id("test"), false); @@ -28,7 +28,7 @@ public TileTexture(Identifier id, boolean innerBorder, Set tilesTo, } public String displayId() { - String trimmedPath = id.getPath().substring("textures/atlas/tiles/".length(), id.getPath().length() - 4); + String trimmedPath = id.getPath().substring("textures/atlas/tile/".length(), id.getPath().length() - 4); return id.getNamespace().equals(AntiqueAtlas.ID) ? trimmedPath : new Identifier(id.getNamespace(), trimmedPath).toString(); } diff --git a/src/main/java/folk/sisby/antique_atlas/reloader/MarkerTextures.java b/src/main/java/folk/sisby/antique_atlas/reloader/MarkerTextures.java index 5a62ccf9e..cbbfa5108 100644 --- a/src/main/java/folk/sisby/antique_atlas/reloader/MarkerTextures.java +++ b/src/main/java/folk/sisby/antique_atlas/reloader/MarkerTextures.java @@ -57,8 +57,8 @@ public Map asMap() { @Override protected Map prepare(ResourceManager manager, Profiler profiler) { Map textureMeta = new HashMap<>(); - for (Map.Entry e : manager.findResources("textures/atlas/markers", id -> id.getPath().endsWith(".png")).entrySet()) { - Identifier id = new Identifier(e.getKey().getNamespace(), e.getKey().getPath().substring("textures/atlas/markers/".length(), e.getKey().getPath().length() - ".png".length())); + for (Map.Entry e : manager.findResources("textures/atlas/marker", id -> id.getPath().endsWith(".png")).entrySet()) { + Identifier id = new Identifier(e.getKey().getNamespace(), e.getKey().getPath().substring("textures/atlas/marker/".length(), e.getKey().getPath().length() - ".png".length())); try { ResourceMetadata metadata = e.getValue().getMetadata(); textureMeta.put(id, metadata.decode(MarkerTextures.MarkerTextureMeta.METADATA).orElse(MarkerTextureMeta.DEFAULT)); diff --git a/src/main/java/folk/sisby/antique_atlas/reloader/TileTextures.java b/src/main/java/folk/sisby/antique_atlas/reloader/TileTextures.java index b4dae51f2..376a04c2a 100644 --- a/src/main/java/folk/sisby/antique_atlas/reloader/TileTextures.java +++ b/src/main/java/folk/sisby/antique_atlas/reloader/TileTextures.java @@ -41,8 +41,8 @@ public Map getTextures() { @Override protected Map prepare(ResourceManager manager, Profiler profiler) { Map textureMeta = new HashMap<>(); - for (Map.Entry e : manager.findResources("textures/atlas/tiles", id -> id.getPath().endsWith(".png")).entrySet()) { - Identifier id = new Identifier(e.getKey().getNamespace(), e.getKey().getPath().substring("textures/atlas/tiles/".length(), e.getKey().getPath().length() - ".png".length())); + for (Map.Entry e : manager.findResources("textures/atlas/tile", id -> id.getPath().endsWith(".png")).entrySet()) { + Identifier id = new Identifier(e.getKey().getNamespace(), e.getKey().getPath().substring("textures/atlas/tile/".length(), e.getKey().getPath().length() - ".png".length())); try { ResourceMetadata metadata = e.getValue().getMetadata(); metadata.decode(TileTextureMeta.METADATA).ifPresentOrElse(meta -> { diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/bed.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/bed.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/bed.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/bed.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/brush.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/brush.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/brush.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/brush.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/diamond.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/diamond.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/diamond.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/diamond.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/pickaxe.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/pickaxe.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/pickaxe.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/pickaxe.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/red_x_large.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/red_x_large.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/red_x_large.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/red_x_large.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/red_x_small.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/red_x_small.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/red_x_small.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/red_x_small.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/scroll.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/scroll.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/scroll.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/scroll.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/skull.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/skull.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/skull.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/skull.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/stuck_sword.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/stuck_sword.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/stuck_sword.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/stuck_sword.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/sword.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/sword.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/sword.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/sword.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/tower.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/tower.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/custom/tower.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/custom/tower.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/bastion_remnant.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/bastion_remnant.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/bastion_remnant.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/bastion_remnant.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/end_city.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/end_city.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/end_city.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/end_city.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/end_city.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/end_city.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/end_city.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/end_city.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/ocean_monument.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/ocean_monument.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/ocean_monument.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/ocean_monument.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/plains_village.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/plains_village.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/plains_village.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/plains_village.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/woodland_mansion.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/woodland_mansion.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/structure/woodland_mansion.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/structure/woodland_mansion.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/markers/unknown.png b/src/main/resources/assets/antique_atlas/textures/atlas/marker/unknown.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/markers/unknown.png rename to src/main/resources/assets/antique_atlas/textures/atlas/marker/unknown.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cave.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cave.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cave.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cave.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cave.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cave.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cave.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cave.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cliffs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cliffs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cliffs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cliffs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cliffs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cliffs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/cliffs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/cliffs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/flat.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/flat.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/flat.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/flat.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/flat.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/flat.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/flat.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/flat.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/floating_island.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/floating_island.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/floating_island.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/floating_island.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/floating_island.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/floating_island.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/floating_island.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/floating_island.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/grass.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/grass.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/grass.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/grass.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/grass.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/grass.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/grass.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/grass.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/ice_spikes.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/ice_spikes.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/ice_spikes.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/ice_spikes.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/ice_spikes.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/ice_spikes.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/ice_spikes.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/ice_spikes.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/mangrove.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/mangrove.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/mangrove.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/mangrove.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/mangrove.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/mangrove.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/mangrove.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/mangrove.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_square.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_square.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_square.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_square.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_square.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_square.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/plateau_square.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/plateau_square.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sand.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sand.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sand.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sand.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sand.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sand.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sand.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sand.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sky.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sky.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sky.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sky.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sky.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sky.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/sky.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/sky.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/smooth_mountains_edge.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/smooth_mountains_edge.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/smooth_mountains_edge.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/smooth_mountains_edge.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/smooth_mountains_edge.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/smooth_mountains_edge.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/smooth_mountains_edge.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/smooth_mountains_edge.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/snow.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/snow.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/snow.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/snow.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/snow.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/snow.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/snow.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/snow.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/tiered.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/tiered.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/tiered.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/tiered.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/tiered.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/base/tiered.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/base/tiered.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/base/tiered.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_shrubs_terracotta_mixed.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/sand_terracotta_pillar_small.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_fingers_shrubs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_pillars.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_pillars.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_pillars.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_pillars.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_pillars.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_pillars.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/eroded/terracotta_pillars.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/eroded/terracotta_pillars.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/shrubs_plateau_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/shrubs_plateau_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_plateau_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_plateau_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_shrubs_tiered.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_shrubs_tiered.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_shrubs_tiered.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_shrubs_tiered.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_shrubs_tiered.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_shrubs_tiered.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_shrubs_tiered.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_shrubs_tiered.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_rough.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_rough.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_rough.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_rough.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_rough.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_rough.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_rough.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_rough.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_separate.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_separate.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_separate.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_separate.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_separate.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_separate.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/terracotta_tiered_separate.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/terracotta_tiered_separate.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/badlands/wooded/grass_oak_plateau_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/badlands/wooded/grass_oak_plateau_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/cacti_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/cacti_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/cacti_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/cacti_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/cacti_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/cacti_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/cacti_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/cacti_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti_sparse.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti_sparse.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti_sparse.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti_sparse.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti_sparse.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti_sparse.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_cacti_sparse.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_cacti_sparse.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_shrubs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_shrubs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_shrubs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_shrubs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_shrubs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_shrubs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/sand_shrubs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/sand_shrubs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/shrubs_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/shrubs_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/shrubs_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/shrubs_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/shrubs_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/shrubs_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/desert/shrubs_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/desert/shrubs_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/grass_acacia_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/grass_acacia_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_acacia_plateau_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_acacia_plateau_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/plateau/grass_plateau_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/plateau/grass_plateau_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/acacia_cliffs_clouds_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/cliffs_clouds.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/cliffs_clouds.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/cliffs_clouds.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/cliffs_clouds.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/cliffs_clouds.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/cliffs_clouds.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/arid/savanna/windswept/cliffs_clouds.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/arid/savanna/windswept/cliffs_clouds.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_island.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_island.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_island.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_island.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_island.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_island.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_island.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_island.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_sparse_island.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_sparse_island.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_sparse_island.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_sparse_island.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_sparse_island.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_sparse_island.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/highlands/end_chorus_sparse_island.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/highlands/end_chorus_sparse_island.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/end/islands/end_island_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/end/islands/end_island_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_dense.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_dense.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_dense.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_dense.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_dense.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_dense.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_dense.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_dense.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_edge.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_edge.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_edge.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_edge.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_edge.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_edge.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/ice_spikes/snow_ice_spikes_edge.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/ice_spikes/snow_ice_spikes_edge.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_sparse_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_fancy_tall_sparse_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/grass_oak_sparse_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/grass_oak_sparse_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_pine_sparse_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_pine_sparse_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/snowy/snow_spruce_sparse_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/snowy/snow_spruce_sparse_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/flatland/plains/sunflower/sunflowers_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/flatland/plains/sunflower/sunflowers_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/cherry/smooth_cherry_mountains.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/cherry/smooth_cherry_mountains.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/cherry/smooth_cherry_mountains.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/cherry/smooth_cherry_mountains.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/cherry/smooth_cherry_mountains.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/cherry/smooth_cherry_mountains.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/cherry/smooth_cherry_mountains.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/cherry/smooth_cherry_mountains.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/smooth_spruce_mountains.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/smooth_spruce_mountains.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/smooth_spruce_mountains.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/smooth_spruce_mountains.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/smooth_spruce_mountains.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/smooth_spruce_mountains.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/grove/smooth_spruce_mountains.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/grove/smooth_spruce_mountains.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_daisies_plateau.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_daisies_plateau.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_daisies_plateau.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_daisies_plateau.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_daisies_plateau.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_daisies_plateau.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_daisies_plateau.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_daisies_plateau.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_dandelions_plateau.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_dandelions_plateau.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_dandelions_plateau.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_dandelions_plateau.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_dandelions_plateau.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_dandelions_plateau.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/meadow/grass_dandelions_plateau.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/meadow/grass_dandelions_plateau.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/frozen/rough_mountains.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/frozen/rough_mountains.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/frozen/rough_mountains.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/frozen/rough_mountains.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/frozen/rough_mountains.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/frozen/rough_mountains.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/frozen/rough_mountains.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/frozen/rough_mountains.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/jagged/sharp_snow_mountains.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/jagged/sharp_snow_mountains.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/jagged/sharp_snow_mountains.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/jagged/sharp_snow_mountains.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/jagged/sharp_snow_mountains.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/jagged/sharp_snow_mountains.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/jagged/sharp_snow_mountains.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/jagged/sharp_snow_mountains.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/stony/smooth_mountains.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/stony/smooth_mountains.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/stony/smooth_mountains.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/stony/smooth_mountains.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/stony/smooth_mountains.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/stony/smooth_mountains.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/peaks/stony/smooth_mountains.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/peaks/stony/smooth_mountains.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/slopes/snowy/snow_cliffs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/slopes/snowy/snow_cliffs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/slopes/snowy/snow_cliffs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/slopes/snowy/snow_cliffs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/slopes/snowy/snow_cliffs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/slopes/snowy/snow_cliffs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/slopes/snowy/snow_cliffs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/slopes/snowy/snow_cliffs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/forest/rough_oak_mountains.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/forest/rough_oak_mountains.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/forest/rough_oak_mountains.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/forest/rough_oak_mountains.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/forest/rough_oak_mountains.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/forest/rough_oak_mountains.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/forest/rough_oak_mountains.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/forest/rough_oak_mountains.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/grass_cliffs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/grass_cliffs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/grass_cliffs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/grass_cliffs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/grass_cliffs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/grass_cliffs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/grass_cliffs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/grass_cliffs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/gravel_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/gravel_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/gravel_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/gravel_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/gravel_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/gravel_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/gravel_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/gravel_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/stone_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/stone_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/stone_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/stone_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/stone_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/stone_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/highland/windswept/hills/gravelly/stone_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/highland/windswept/hills/gravelly/stone_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_columns_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_columns_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_lava_columns.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_lava_columns.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_lava_columns.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_lava_columns.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_lava_columns.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_lava_columns.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/basalt/basalt_lava_columns.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/basalt/basalt_lava_columns.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nether/wastes/nether_shore_lava_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nether/wastes/nether_shore_lava_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_mixed_dense.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/mushroom/mycelium_mushrooms_huge_red_edge.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/deep/water_ice_spikes_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/ice_ice_spikes.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/ice_ice_spikes.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/ice_ice_spikes.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/ice_ice_spikes.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/ice_ice_spikes.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/ice_ice_spikes.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/nonland/ocean/frozen/ice_ice_spikes.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/nonland/ocean/frozen/ice_ice_spikes.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/void/the_void/empty.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/void/the_void/empty.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/void/the_void/empty.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/void/the_void/empty.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/void/the_void/empty.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/void/the_void/empty.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/void/the_void/empty.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/void/the_void/empty.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/sand_shore_water_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/sand_shore_water_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/beach/snowy/snow_shore_water_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/beach/snowy/snow_shore_water_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/stony_shore/stone_spikes_shore_water.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/stony_shore/stone_spikes_shore_water.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/stony_shore/stone_spikes_shore_water.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/stony_shore/stone_spikes_shore_water.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/stony_shore/stone_spikes_shore_water.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/stony_shore/stone_spikes_shore_water.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/stony_shore/stone_spikes_shore_water.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/stony_shore/stone_spikes_shore_water.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/mangrove/swamp_water_mangrove.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/mangrove/swamp_water_mangrove.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/mangrove/swamp_water_mangrove.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/mangrove/swamp_water_mangrove.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/mangrove/swamp_water_mangrove.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/mangrove/swamp_water_mangrove.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/mangrove/swamp_water_mangrove.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/mangrove/swamp_water_mangrove.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_grass_oak_swamp_hills_4.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_3.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_3.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_3.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_3.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_3.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_3.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_3.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_3.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/wetland/swamp/swamp_water_oak_swamp_sparse_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_dense.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_dense.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_dense.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_dense.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_dense.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_dense.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_dense.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_dense.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/birch_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/birch_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/grass_birch_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/grass_birch_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/birch_tall_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/birch/old_growth/grass_birch_tall_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_dense_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_dense_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/dark/oak_fancy_dense_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/dark/oak_fancy_dense_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/cornflower_oak_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/cornflower_oak_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/cornflower_oak_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/cornflower_oak_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/cornflower_oak_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/cornflower_oak_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/cornflower_oak_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/cornflower_oak_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/daisies_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/daisies_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/daisies_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/daisies_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/daisies_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/daisies_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/daisies_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/daisies_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/flower/dandelion_oak_sparse_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/grass_oak_mixed_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/grass_oak_mixed_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_fancy_mixed_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_fancy_mixed_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/forest/oak_mixed_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/forest/oak_mixed_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bamboo/grass_bamboo_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_cliffs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_cliffs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_cliffs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_cliffs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_cliffs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_cliffs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_cliffs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_cliffs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_jungle_mega_cliffs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_jungle_mega_cliffs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_jungle_mega_cliffs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_jungle_mega_cliffs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_jungle_mega_cliffs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_jungle_mega_cliffs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_jungle_mega_cliffs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_jungle_mega_cliffs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_oak_swamp_cliffs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_oak_swamp_cliffs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_oak_swamp_cliffs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_oak_swamp_cliffs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_oak_swamp_cliffs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_oak_swamp_cliffs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/bushes_oak_swamp_cliffs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/bushes_oak_swamp_cliffs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/jungle_mega_palm_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/jungle_mega_palm_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_oak_swamp_hills_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/jungle/sparse/grass_palm_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/jungle/sparse/grass_palm_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_mega_spruce_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_mega_pine_spruce_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_pine/podzol_pine_mega_pine.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/pine_mega_spruce_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_mega_spruce_spruce.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/podzol_spruce_mega_spruce.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/old_growth_spruce/spruce_mega_spruce_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_hills_low.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_hills_low.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_hills_low.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_hills_low.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_hills_low.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_hills_low.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_hills_low.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_hills_low.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/pine_spruce_hills_low_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/pine_spruce_hills_low_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_pine_spruce_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/biome/woodland/taiga/snowy/snow_spruce_pine_hills.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ice/ice.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ice/ice.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ice/ice.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ice/ice.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ice/ice.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ice/ice.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ice/ice.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ice/ice.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/lava/crater_lava_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/lava/crater_lava_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/andesite_ravine.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/andesite_ravine.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/andesite_ravine.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/andesite_ravine.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/andesite_ravine.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/andesite_ravine.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/andesite_ravine.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/andesite_ravine.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/stone_ravine.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/stone_ravine.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/stone_ravine.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/stone_ravine.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/stone_ravine.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/stone_ravine.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/ravine/stone_ravine.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/ravine/stone_ravine.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/void/static_void.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/void/static_void.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/void/static_void.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/void/static_void.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/void/static_void.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/void/static_void.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/void/static_void.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/void/static_void.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_1.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_1.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_1.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_1.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_1.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_1.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_1.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_1.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_2.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_2.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_2.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_2.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_2.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_2.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/feature/water/water_2.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/feature/water/water_2.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_crossing.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_crossing.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_crossing.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_crossing.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_crossing.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_crossing.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_crossing.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_crossing.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_horizontal.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_vertical.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_vertical.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_vertical.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_vertical.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_vertical.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_vertical.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_end_vertical.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_end_vertical.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_horizontal.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_horizontal.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_horizontal.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_horizontal.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_horizontal.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_horizontal.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_horizontal.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_horizontal.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_platform.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_platform.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_platform.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_platform.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_platform.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_platform.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_platform.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_platform.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_small_crossing.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_small_crossing.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_small_crossing.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_small_crossing.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_small_crossing.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_small_crossing.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_small_crossing.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_small_crossing.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_stairs.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_stairs.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_stairs.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_stairs.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_stairs.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_stairs.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_stairs.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_stairs.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_vertical.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_vertical.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_vertical.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_vertical.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_vertical.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_vertical.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_bridge_vertical.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_bridge_vertical.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_exit.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_exit.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_exit.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_exit.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_exit.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_exit.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_exit.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_exit.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/fortress/nether/nether_fortress_corridor_nether_warts_room.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/igloo/igloo.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/igloo/igloo.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/igloo/igloo.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/igloo/igloo.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/igloo/igloo.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/igloo/igloo.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/igloo/igloo.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/igloo/igloo.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/cage.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/cage.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/cage.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/cage.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/cage.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/cage.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/cage.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/cage.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/tent.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/tent.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/tent.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/tent.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/tent.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/tent.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/tent.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/tent.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/watchtower.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/watchtower.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/watchtower.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/watchtower.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/watchtower.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/watchtower.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/outpost/watchtower.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/outpost/watchtower.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/pyramid/desert/desert_pyramid.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/pyramid/desert/desert_pyramid.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/pyramid/desert/desert_pyramid.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/pyramid/desert/desert_pyramid.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/pyramid/desert/desert_pyramid.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/pyramid/desert/desert_pyramid.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/pyramid/desert/desert_pyramid.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/pyramid/desert/desert_pyramid.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/ruined_portal/ruined_portal.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/ruined_portal/ruined_portal.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/ruined_portal/ruined_portal.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/ruined_portal/ruined_portal.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/ruined_portal/ruined_portal.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/ruined_portal/ruined_portal.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/ruined_portal/ruined_portal.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/ruined_portal/ruined_portal.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/shipwreck/beached/shipwreck_beached.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/shipwreck/beached/shipwreck_beached.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/shipwreck/beached/shipwreck_beached.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/shipwreck/beached/shipwreck_beached.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/shipwreck/beached/shipwreck_beached.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/shipwreck/beached/shipwreck_beached.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/shipwreck/beached/shipwreck_beached.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/shipwreck/beached/shipwreck_beached.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/temple/jungle/jungle_temple.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/temple/jungle/jungle_temple.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/temple/jungle/jungle_temple.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/temple/jungle/jungle_temple.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/temple/jungle/jungle_temple.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/temple/jungle/jungle_temple.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/temple/jungle/jungle_temple.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/temple/jungle/jungle_temple.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/small_house.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/small_house.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/small_house.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/small_house.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/small_house.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/small_house.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/small_house.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/small_house.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/weaponsmith.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/weaponsmith.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/weaponsmith.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/weaponsmith.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/weaponsmith.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/weaponsmith.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/desert/weaponsmith.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/desert/weaponsmith.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_crossroad.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_crossroad.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_crossroad.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_crossroad.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_crossroad.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_crossroad.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_crossroad.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_crossroad.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_horizontal.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_horizontal.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_horizontal.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_horizontal.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_horizontal.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_horizontal.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_horizontal.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_horizontal.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_vertical.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_vertical.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_vertical.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_vertical.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_vertical.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_vertical.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/path_vertical.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/path_vertical.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/animal_pen.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/animal_pen.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/animal_pen.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/animal_pen.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/animal_pen.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/animal_pen.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/animal_pen.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/animal_pen.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/butcher_shop.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/butcher_shop.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/butcher_shop.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/butcher_shop.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/butcher_shop.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/butcher_shop.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/butcher_shop.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/butcher_shop.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/lamp.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/lamp.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/lamp.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/lamp.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/lamp.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/lamp.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/lamp.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/lamp.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/large_farm.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/large_farm.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/large_farm.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/large_farm.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/large_farm.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/large_farm.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/large_farm.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/large_farm.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house_t.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house_t.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house_t.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house_t.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house_t.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house_t.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/medium_house_t.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/medium_house_t.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/meeting_point.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/meeting_point.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/meeting_point.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/meeting_point.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/meeting_point.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/meeting_point.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/meeting_point.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/meeting_point.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_farm.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_farm.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_farm.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_farm.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_farm.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_farm.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_farm.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_farm.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_house.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_house.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_house.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_house.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_house.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_house.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/small_house.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/small_house.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/temple.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/temple.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/temple.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/temple.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/temple.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/temple.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/plains/temple.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/plains/temple.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/savanna/small_house.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/savanna/small_house.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/savanna/small_house.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/savanna/small_house.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/savanna/small_house.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/savanna/small_house.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/village/savanna/small_house.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/village/savanna/small_house.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/witch_hut/swamp/swamp_hut.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/witch_hut/swamp/swamp_hut.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/witch_hut/swamp/swamp_hut.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/witch_hut/swamp/swamp_hut.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/witch_hut/swamp/swamp_hut.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/witch_hut/swamp/swamp_hut.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/structure/witch_hut/swamp/swamp_hut.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/structure/witch_hut/swamp/swamp_hut.png.mcmeta diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/test.png b/src/main/resources/assets/antique_atlas/textures/atlas/tile/test.png similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/test.png rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/test.png diff --git a/src/main/resources/assets/antique_atlas/textures/atlas/tiles/test.png.mcmeta b/src/main/resources/assets/antique_atlas/textures/atlas/tile/test.png.mcmeta similarity index 100% rename from src/main/resources/assets/antique_atlas/textures/atlas/tiles/test.png.mcmeta rename to src/main/resources/assets/antique_atlas/textures/atlas/tile/test.png.mcmeta diff --git a/src/main/resources/assets/surveyor/textures/atlas/markers/landmark/type/player_death.png b/src/main/resources/assets/surveyor/textures/atlas/marker/landmark/type/player_death.png similarity index 100% rename from src/main/resources/assets/surveyor/textures/atlas/markers/landmark/type/player_death.png rename to src/main/resources/assets/surveyor/textures/atlas/marker/landmark/type/player_death.png diff --git a/src/main/resources/assets/surveyor/textures/atlas/markers/landmark/type/player_death/items.png b/src/main/resources/assets/surveyor/textures/atlas/marker/landmark/type/player_death/items.png similarity index 100% rename from src/main/resources/assets/surveyor/textures/atlas/markers/landmark/type/player_death/items.png rename to src/main/resources/assets/surveyor/textures/atlas/marker/landmark/type/player_death/items.png diff --git a/src/main/resources/assets/surveyor/textures/atlas/markers/landmark/type/poi/nether_portal.png b/src/main/resources/assets/surveyor/textures/atlas/marker/landmark/type/poi/nether_portal.png similarity index 100% rename from src/main/resources/assets/surveyor/textures/atlas/markers/landmark/type/poi/nether_portal.png rename to src/main/resources/assets/surveyor/textures/atlas/marker/landmark/type/poi/nether_portal.png